:root {
    --nana-turquoise: #46bfc1;
    --nana-turquoise-dark: #218d92;
    --nana-yellow: #ffc23f;
    --nana-coral: #ff6978;
    --nana-violet: #a98bd1;
    --nana-green: #98ca4b;
    --nana-ink: #3f4046;
    --nana-muted: #6b7076;
    --nana-cream: #fffaf0;
    --nana-line: #d9eeee;
    --accent-color: var(--nana-turquoise-dark);
    --nana-shadow: 0 18px 48px rgba(49, 100, 105, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--nana-ink);
    background:
        radial-gradient(circle at 5% 10%, rgba(255, 194, 63, 0.14), transparent 25rem),
        radial-gradient(circle at 96% 34%, rgba(70, 191, 193, 0.11), transparent 29rem),
        #fffdf9;
    font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: var(--nana-turquoise-dark);
    text-decoration: none;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(100% - 40px, 1200px);
    max-width: none;
    margin-inline: auto;
    padding: 0;
}

/* Header keeps legacy classes as a safe fallback, while nana-* classes own the new layout. */
.nana-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(70, 191, 193, 0.2);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 34px rgba(62, 87, 90, 0.08);
    backdrop-filter: blur(16px);
}

.nana-header-inner {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 106px;
}

.nana-logo {
    display: inline-flex;
    align-items: center;
    width: 120px;
    height: 100px;
    color: inherit;
}

.nana-logo:hover {
    text-decoration: none;
}

.nana-logo-image {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.nana-primary-nav {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 14px;
    padding: 8px 9px;
    color: var(--nana-ink);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #176e72;
    background: #eaf8f8;
    text-decoration: none;
    transform: translateY(-1px);
}

.nana-header-actions,
.nana-auth-actions,
.auth-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nana-header-actions {
    justify-content: flex-end;
}

.auth-form {
    margin: 0;
}

.auth-button,
.cta-button,
.btn,
.btn-primary,
.submit-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 750;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.auth-button:hover,
.cta-button:hover,
.btn:hover,
.btn-primary:hover,
.submit-row button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.auth-button-ghost {
    border: 1px solid rgba(70, 191, 193, 0.5);
    color: var(--nana-turquoise-dark);
    background: #fff;
}

.auth-button-ghost:hover {
    color: #176e72;
    background: #ebf9f8;
    box-shadow: 0 8px 19px rgba(70, 191, 193, 0.16);
}

.auth-button-primary,
.btn,
.btn-primary,
.submit-row button {
    color: #fff;
    background: linear-gradient(135deg, var(--nana-turquoise), var(--nana-turquoise-dark));
    box-shadow: 0 9px 22px rgba(33, 141, 146, 0.21);
}

.auth-button-primary:hover,
.btn:hover,
.btn-primary:hover,
.submit-row button:hover {
    color: #fff;
    box-shadow: 0 13px 26px rgba(33, 141, 146, 0.28);
}

.cta-button {
    color: #5c4300;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffdb71, var(--nana-yellow));
    box-shadow: 0 9px 22px rgba(255, 194, 63, 0.25);
}

.cta-button:hover {
    color: #4d3800;
    box-shadow: 0 13px 26px rgba(255, 194, 63, 0.32);
}

.nana-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(70, 191, 193, 0.38);
    border-radius: 16px;
    padding: 0;
    color: var(--nana-turquoise-dark);
    background: #effafa;
    cursor: pointer;
}

.nana-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nana-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nana-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nana-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nana-services-nav {
    width: 100%;
    max-width: none;
    border-top: 1px solid var(--nana-line);
    padding: 8px max(20px, calc((100% - 1200px) / 2));
    background: linear-gradient(90deg, #f4fbfb, #fffaf0 55%, #fff4f5);
}

.nana-services-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.nana-services-list .nav-link {
    min-height: 35px;
    padding: 6px 10px;
    color: #596064;
    font-size: 13px;
    font-weight: 600;
}

.site-main {
    min-height: 58vh;
    padding: clamp(34px, 5vw, 68px) 0 clamp(62px, 7vw, 96px);
}

.page-body,
.hero,
.lead-form,
.contact-form,
.stats-card,
.card,
.person-card {
    border: 1px solid rgba(70, 191, 193, 0.17);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--nana-shadow);
}

.page-body {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    overflow-wrap: anywhere;
    border-radius: 28px;
    padding: clamp(26px, 5vw, 50px);
}

.page-body > :first-child {
    margin-top: 0;
}

.page-body > :last-child {
    margin-bottom: 0;
}

.page-body h1,
.hero h1 {
    margin-top: 0;
    color: #36373d;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.032em;
}

.page-body h1 {
    margin-bottom: 25px;
}

.page-body h2 {
    margin: 38px 0 14px;
    color: #3d3e43;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.25;
}

.page-body h3 {
    margin: 28px 0 11px;
    font-size: clamp(20px, 2.4vw, 25px);
    line-height: 1.3;
}

.page-body p,
.page-body li {
    color: #53575d;
}

.page-body p {
    margin: 14px 0;
    line-height: 1.7;
}

.page-body ul,
.page-body ol {
    margin: 18px 0;
    padding-left: 25px;
}

.page-body li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.page-body li::marker {
    color: var(--nana-turquoise);
}

.page-body blockquote {
    margin: 24px 0;
    border-left: 5px solid var(--nana-yellow);
    border-radius: 0 16px 16px 0;
    padding: 16px 20px;
    background: #fff9e6;
}

.page-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch;
}

.page-body th,
.page-body td {
    min-width: 130px;
    border-bottom: 1px solid var(--nana-line);
    padding: 12px 14px;
    text-align: left;
}

.page-body th {
    color: #286f73;
    background: #effafa;
}

.hero {
    position: relative;
    isolation: isolate;
    width: min(100% - 40px, 1200px);
    margin: 0 auto clamp(40px, 6vw, 68px);
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(42px, 8vw, 86px) clamp(24px, 6vw, 68px);
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 194, 63, 0.45) 0 8%, transparent 8.5%),
        radial-gradient(circle at 94% 48%, rgba(255, 105, 120, 0.15) 0 12%, transparent 12.5%),
        linear-gradient(135deg, #effafa 0%, #fffdf4 58%, #fff3f5 100%);
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 22px;
}

.hero p {
    max-width: 760px;
    font-size: clamp(17px, 2vw, 20px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 6px 13px;
    color: #805e00;
    background: #fff4cb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.section {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding: clamp(34px, 5vw, 62px) 0;
}

.section-title {
    margin: 0 0 14px;
    color: #3c3d42;
    font-size: clamp(28px, 4vw, 39px);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    max-width: 780px;
    margin: 0 0 30px;
    color: var(--nana-muted);
    font-size: 18px;
}

.stats,
.cards-grid,
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 22px;
}

.stats-card,
.card,
.person-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(22px, 3vw, 30px);
}

.stats-card::before,
.card::before,
.person-card::before {
    display: block;
    width: 48px;
    height: 6px;
    margin-bottom: 20px;
    border-radius: 99px;
    background: var(--nana-turquoise);
    content: "";
}

.stats-card:nth-child(4n + 2)::before,
.card:nth-child(4n + 2)::before,
.person-card:nth-child(4n + 2)::before {
    background: var(--nana-yellow);
}

.stats-card:nth-child(4n + 3)::before,
.card:nth-child(4n + 3)::before,
.person-card:nth-child(4n + 3)::before {
    background: var(--nana-coral);
}

.stats-card:nth-child(4n + 4)::before,
.card:nth-child(4n + 4)::before,
.person-card:nth-child(4n + 4)::before {
    background: var(--nana-violet);
}

.stats-card h2,
.stats-card h3,
.card h2,
.card h3,
.person-card h2,
.person-card h3 {
    margin: 0 0 11px;
    color: #3d3e43;
    line-height: 1.3;
}

.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    margin: 0 auto 18px;
    border: 6px solid #effafa;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(140deg, var(--nana-turquoise), var(--nana-violet));
    font-weight: 750;
}

.card-price {
    margin-top: auto;
    color: var(--nana-turquoise-dark);
    font-size: 19px;
    font-weight: 800;
}

.job-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 194, 63, 0.3);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
    background: linear-gradient(125deg, #fff7d9, #f0fbfa 65%, #fff1f3);
    box-shadow: var(--nana-shadow);
}

.job-callout h2 {
    margin: 0 0 10px;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.25;
}

.lead-form,
.contact-form {
    border-radius: 24px;
    padding: clamp(24px, 5vw, 46px);
}

.lead-form h3,
.contact-form h3 {
    margin: 0 0 18px;
    font-size: clamp(23px, 3vw, 30px);
    line-height: 1.3;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 18px;
}

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.form-field label,
label {
    color: #484c50;
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #c9dcdd;
    border-radius: 14px;
    padding: 12px 15px;
    color: var(--nana-ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea,
textarea {
    min-height: 126px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--nana-turquoise);
    box-shadow: 0 0 0 4px rgba(70, 191, 193, 0.16);
}

.submit-row {
    margin-top: 22px;
}

.link,
.btn-link {
    color: var(--nana-turquoise-dark);
    font-weight: 750;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--nana-line);
    padding: 44px 0 34px;
    background: linear-gradient(145deg, #fff 0%, #f2fbfa 55%, #fff8e8 100%);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(180px, 1fr));
    gap: 36px;
    color: #5d6266;
    font-size: 14px;
}

.nana-footer-logo {
    display: inline-flex;
    width: 176px;
}

.nana-footer-logo img {
    display: block;
    width: 176px;
    max-width: 100%;
    height: auto;
}

.footer-about p {
    max-width: 430px;
    margin-bottom: 0;
}

.footer-label {
    margin: 0 0 3px;
    color: var(--nana-ink);
    font-weight: 750;
}

.footer-contacts a {
    display: inline-flex;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-meta p {
    margin: 0 0 12px;
}

/* Fast contacts shared by public and dating pages. */
.nana-contact-strip {
    border-bottom: 1px solid rgba(70, 191, 193, 0.2);
    background: linear-gradient(90deg, #effafa, #fffaf0 55%, #fff1f3);
}

.nana-contact-strip-inner {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 7px;
}

.nana-contact-caption {
    color: #5b6266;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nana-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.nana-contact-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(70, 191, 193, 0.2);
    border-radius: 999px;
    padding: 4px 11px 4px 5px;
    color: #404448;
    background: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 5px 14px rgba(60, 103, 106, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nana-contact-link:hover {
    border-color: rgba(70, 191, 193, 0.48);
    color: #2f3336;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(60, 103, 106, 0.13);
}

.nana-contact-icon {
    display: inline-flex;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--nana-turquoise);
}

.nana-contact-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.nana-max-icon {
    background: linear-gradient(140deg, #7759ee, #ad74ef);
    font-size: 13px;
    font-weight: 900;
}

.nana-contact-link-whatsapp .nana-contact-icon { background: #25a96b; }
.nana-contact-link-telegram .nana-contact-icon { background: #269ed8; }
.nana-contact-link-phone .nana-contact-icon { background: var(--nana-coral); }

/* Marketing home page. */
.nana-home {
    padding-bottom: 20px;
}

.nana-home-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    width: min(100% - 40px, 1200px);
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: clamp(30px, 6vw, 72px);
    margin: 0 auto clamp(24px, 4vw, 48px);
    overflow: hidden;
    border: 1px solid rgba(70, 191, 193, 0.18);
    border-radius: 36px;
    padding: clamp(36px, 7vw, 78px);
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 194, 63, 0.62) 0 5.5rem, transparent 5.6rem),
        radial-gradient(circle at 2% 98%, rgba(70, 191, 193, 0.2) 0 10rem, transparent 10.1rem),
        linear-gradient(130deg, #f0fbfa 0%, #fffdf4 54%, #fff1f4 100%);
    box-shadow: var(--nana-shadow);
}

.nana-home-hero::after {
    position: absolute;
    z-index: -1;
    right: 22%;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border: 30px solid rgba(169, 139, 209, 0.08);
    border-radius: 50%;
    content: "";
}

.nana-home-hero-copy h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #34363b;
    font-size: clamp(38px, 5.6vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.nana-home-lead {
    max-width: 700px;
    margin: 0;
    color: #565c60;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.6;
}

.nana-home-primary {
    min-height: 50px;
    padding-inline: 25px;
}

.nana-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 17px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.nana-trust-list li {
    position: relative;
    padding-left: 23px;
    color: #495055;
    font-size: 14px;
    font-weight: 700;
}

.nana-trust-list li::before {
    position: absolute;
    top: 0.32em;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: #fff;
    background: var(--nana-green);
    content: "✓";
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}

.nana-home-hero-card {
    border: 1px solid rgba(70, 191, 193, 0.2);
    border-radius: 27px;
    padding: clamp(22px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 22px 45px rgba(56, 98, 102, 0.14);
}

.nana-home-hero-card > img {
    display: block;
    width: 180px;
    max-height: 124px;
    margin: -8px auto 11px;
    object-fit: contain;
}

.nana-home-hero-card-title {
    margin: 0 0 16px;
    color: #3d4044;
    font-size: 20px;
    font-weight: 850;
    text-align: center;
}

.nana-home-hero-card ol {
    display: grid;
    gap: 11px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.nana-home-hero-card li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #555b60;
    font-size: 14px;
    font-weight: 650;
}

.nana-home-hero-card li span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #176e72;
    background: #e9f8f7;
    font-weight: 850;
}

.nana-text-link,
.nana-card-link {
    color: var(--nana-turquoise-dark);
    font-weight: 800;
}

.nana-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 30px;
}

.nana-section-heading .section-subtitle {
    max-width: 480px;
    margin-bottom: 2px;
}

.nana-section-kicker {
    display: block;
    margin-bottom: 9px;
    color: #218d92;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nana-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nana-service-card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    border: 1px solid rgba(70, 191, 193, 0.14);
    border-radius: 25px;
    padding: 25px;
    color: #454a4e;
    box-shadow: 0 16px 35px rgba(63, 91, 95, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nana-service-card:hover {
    color: #454a4e;
    text-decoration: none;
    transform: translateY(-7px);
    box-shadow: 0 23px 42px rgba(63, 91, 95, 0.15);
}

.nana-service-card-yellow { background: linear-gradient(155deg, #fff7d8, #fff); }
.nana-service-card-coral { background: linear-gradient(155deg, #fff0f1, #fff); }
.nana-service-card-violet { background: linear-gradient(155deg, #f5effd, #fff); }
.nana-service-card-green { background: linear-gradient(155deg, #f2f9e7, #fff); }

.nana-service-icon {
    display: inline-flex;
    width: 53px;
    height: 53px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 17px;
    color: #fff;
    background: var(--nana-yellow);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(90, 91, 95, 0.11);
}

.nana-service-card-coral .nana-service-icon { background: var(--nana-coral); }
.nana-service-card-violet .nana-service-icon { background: var(--nana-violet); }
.nana-service-card-green .nana-service-icon { background: var(--nana-green); }

.nana-service-card h3 {
    margin: 0 0 10px;
    color: #383b40;
    font-size: 21px;
    line-height: 1.25;
}

.nana-service-card p {
    margin: 0 0 20px;
    color: #62676b;
    font-size: 15px;
}

.nana-service-card .nana-card-link {
    margin-top: auto;
}

.nana-benefits {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(35px, 7vw, 85px);
    border-radius: 32px;
    padding: clamp(32px, 6vw, 68px);
    color: #fff;
    background:
        radial-gradient(circle at 8% 100%, rgba(255, 194, 63, 0.19), transparent 17rem),
        linear-gradient(135deg, #206f74, #18575d);
    box-shadow: 0 24px 50px rgba(27, 86, 92, 0.2);
}

.nana-benefits .nana-section-kicker { color: #bceeed; }
.nana-benefits .section-title,
.nana-benefits-copy p,
.nana-benefits .nana-text-link { color: #fff; }
.nana-benefits-copy p { opacity: 0.86; }

.nana-benefit-list {
    display: grid;
    gap: 13px;
}

.nana-benefit-list article {
    display: flex;
    gap: 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 19px;
    padding: 19px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.nana-benefit-list article > span {
    color: #ffe29b;
    font-size: 13px;
    font-weight: 900;
}

.nana-benefit-list h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 18px;
}

.nana-benefit-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.nana-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.nana-audience-card {
    display: flex;
    min-height: 350px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(70, 191, 193, 0.16);
    border-radius: 29px;
    padding: clamp(28px, 5vw, 48px);
    box-shadow: var(--nana-shadow);
}

.nana-audience-family { background: linear-gradient(145deg, #effafa, #fff); }
.nana-audience-work { background: linear-gradient(145deg, #fff7dc, #fff2f4); }

.nana-audience-card h2 {
    margin: 0 0 14px;
    color: #3c3e43;
    font-size: clamp(25px, 3.2vw, 36px);
    line-height: 1.2;
}

.nana-audience-card p {
    margin: 0 0 25px;
    color: #5d6367;
}

.nana-audience-card > a {
    margin-top: auto;
}

.nana-callback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border: 1px solid rgba(255, 194, 63, 0.3);
    border-radius: 29px;
    padding: clamp(28px, 5vw, 50px);
    background:
        radial-gradient(circle at 95% 5%, rgba(255, 105, 120, 0.16), transparent 12rem),
        linear-gradient(125deg, #fff8df, #f0fbfa);
    box-shadow: var(--nana-shadow);
}

.nana-callback h2 {
    margin: 0 0 8px;
    color: #3d4044;
    font-size: clamp(27px, 3.7vw, 40px);
}

.nana-callback p {
    max-width: 650px;
    margin: 0;
    color: #5d6367;
}

.nana-callback-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.nana-seo-section {
    padding-top: 10px;
}

.nana-seo-details {
    border: 1px solid var(--nana-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
}

.nana-seo-details > summary {
    position: relative;
    padding: 20px 56px 20px 24px;
    color: #4d5458;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.nana-seo-details > summary::-webkit-details-marker { display: none; }
.nana-seo-details > summary::after {
    position: absolute;
    top: 50%;
    right: 23px;
    color: var(--nana-turquoise-dark);
    content: "+";
    font-size: 25px;
    line-height: 1;
    transform: translateY(-50%);
}
.nana-seo-details[open] > summary::after { content: "−"; }

.nana-seo-content {
    border-top: 1px solid var(--nana-line);
    padding: 0;
}

.nana-seo-content .page-body {
    width: 100%;
    border: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: none;
}

.nana-footer-legal {
    border-top: 1px solid rgba(70, 191, 193, 0.18);
    padding: 25px 0 30px;
    background: #eaf7f6;
}

.nana-footer-legal-inner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 25px;
}

.nana-footer-legal-title {
    margin: 0;
    color: #3e474a;
    font-size: 14px;
    font-weight: 850;
}

.nana-footer-legal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 26px;
}

.nana-footer-legal-links a {
    color: #526064;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 980px) {
    .nana-home-hero {
        grid-template-columns: 1fr;
    }

    .nana-home-hero-card {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 0 22px;
        align-items: center;
    }

    .nana-home-hero-card > img {
        grid-row: 1 / 4;
        width: 150px;
        margin: 0;
    }

    .nana-home-hero-card-title { text-align: left; }
    .nana-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nana-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .nana-contact-strip-inner,
    .nana-section-heading,
    .nana-callback {
        align-items: flex-start;
        flex-direction: column;
    }

    .nana-contact-caption { display: none; }
    .nana-contact-links { width: 100%; justify-content: center; }
    .nana-section-heading .section-subtitle { max-width: 100%; }
    .nana-audience-grid { grid-template-columns: 1fr; }
    .nana-audience-card { min-height: 310px; }
    .nana-callback-actions { width: 100%; }
    .nana-footer-legal-inner { grid-template-columns: 1fr; gap: 13px; }
}

@media (max-width: 540px) {
    .nana-contact-strip-inner { width: min(100% - 16px, 1200px); }
    .nana-contact-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
    .nana-contact-link { min-width: 0; justify-content: center; padding: 4px; }
    .nana-contact-link > span:last-child { display: none; }
    .nana-contact-icon { width: 32px; height: 32px; flex-basis: 32px; }
    .nana-home-hero { width: min(100% - 24px, 1200px); border-radius: 25px; padding: 31px 20px; }
    .nana-home-hero-copy h1 { font-size: 37px; }
    .nana-home-hero-card { display: block; }
    .nana-home-hero-card > img { width: 150px; margin: -5px auto 10px; }
    .nana-home-hero-card-title { text-align: center; }
    .nana-service-grid { grid-template-columns: 1fr; }
    .nana-service-card { min-height: 250px; }
    .nana-benefits { border-radius: 24px; padding: 28px 21px; }
    .nana-audience-card { min-height: 0; border-radius: 23px; }
    .nana-callback-actions > * { width: 100%; }
    .nana-footer-legal-links { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
    .nana-header-inner {
        grid-template-columns: 138px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .nana-logo {
        width: 112px;
        height: 93px;
    }

    .nana-logo-image {
        width: 100%;
        height: 100%;
    }

    .nav-link {
        padding-inline: 7px;
        font-size: 13px;
    }

    .auth-button,
    .cta-button {
        padding-inline: 13px;
        font-size: 14px;
    }
}

@media (max-width: 1080px) {
    html {
        scroll-padding-top: 88px;
    }

    .container,
    .page-body,
    .hero,
    .section {
        width: min(100% - 32px, 1200px);
    }

    .nana-header-inner {
        grid-template-columns: 1fr auto;
        gap: 0 18px;
        min-height: 82px;
    }

    .nana-logo {
        width: 104px;
        height: 87px;
    }

    .nana-logo-image {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .nana-menu-toggle {
        display: block;
    }

    .nana-primary-nav,
    .nana-header-actions,
    .nana-services-nav {
        display: none;
    }

    .nana-header.menu-open .nana-primary-nav {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        padding: 10px 0 12px;
    }

    .nana-header.menu-open .nana-primary-nav .nav-link {
        justify-content: flex-start;
        min-height: 45px;
        padding: 10px 13px;
        font-size: 15px;
        text-align: left;
    }

    .nana-header.menu-open .nana-header-actions {
        display: flex;
        grid-column: 1 / -1;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        padding: 3px 0 17px;
    }

    .nana-header.menu-open .nana-services-nav {
        display: block;
        max-height: calc(100vh - 330px);
        overflow-y: auto;
        padding: 12px 16px 18px;
        overscroll-behavior: contain;
    }

    .nana-header.menu-open .nana-services-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .nana-header.menu-open .nana-services-list .nav-link {
        justify-content: flex-start;
        padding: 9px 12px;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .site-main {
        padding-top: 28px;
    }

    .page-body,
    .hero {
        border-radius: 22px;
    }

    .job-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .container,
    .page-body,
    .hero,
    .section {
        width: min(100% - 24px, 1200px);
    }

    .nana-header-inner {
        min-height: 74px;
    }

    .nana-logo {
        width: 90px;
        height: 75px;
    }

    .nana-logo-image {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .nana-menu-toggle {
        width: 43px;
        height: 43px;
        border-radius: 14px;
    }

    .nana-header.menu-open .nana-primary-nav,
    .nana-header.menu-open .nana-services-list {
        grid-template-columns: 1fr;
    }

    .nana-auth-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .auth-form,
    .auth-form .auth-button,
    .auth-button,
    .nana-header-actions > .cta-button {
        width: 100%;
    }

    .nana-header-actions > .cta-button {
        flex-basis: 100%;
    }

    .page-body {
        padding: 23px 18px;
    }

    .page-body h1,
    .hero h1 {
        font-size: 30px;
    }

    .hero-actions,
    .hero-actions > *,
    .btn,
    .btn-primary,
    .submit-row button {
        width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* --------------------------------------------------------------------------
   {domain} 2026 editorial home
   This block intentionally comes last: it is the visual system for the new
   home page and the compact messenger group in the header.
   -------------------------------------------------------------------------- */

:root {
    --nana-v2-forest: #177f84;
    --nana-v2-forest-deep: #263f45;
    --nana-v2-cream: #f4fbfb;
    --nana-v2-paper: #ffffff;
    --nana-v2-yellow: #ffd65a;
    --nana-v2-coral: #ff6978;
    --nana-v2-blue: #dff7f7;
    --nana-v2-lilac: #eee5fb;
}

body {
    color: var(--nana-v2-forest-deep);
    background: #fff;
}

.nana-header {
    border-bottom-color: rgba(18, 63, 66, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(72, 190, 193, 0.1);
}

.nana-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #48bec1 0 28%, #ffd65a 28% 46%, #ff6978 46% 64%, #a98bd1 64% 82%, #99cc4b 82% 100%);
    content: "";
    opacity: 0.9;
}

.nana-header-inner {
    min-height: 92px;
}

.nana-header-actions > .cta-button {
    display: none;
}

.nana-header-messengers {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    padding-right: 2px;
}

.nana-messenger-mount {
    display: none;
}

.nana-messenger-link {
    position: relative;
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 7px 17px rgba(12, 48, 51, 0.13);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nana-messenger-link:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 11px 22px rgba(12, 48, 51, 0.2);
    filter: saturate(1.08);
}

.nana-messenger-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.nana-messenger-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nana-max-icon {
    width: 34px;
    height: 34px;
    background: transparent;
}

.nana-max-icon svg { width: 34px; height: 34px; }
.nana-messenger-max { border: 0; background: transparent; box-shadow: none; }
.nana-messenger-whatsapp { background: #27b866; }
.nana-messenger-telegram { background: #269ed8; }
.nana-messenger-phone { background: var(--nana-v2-coral); }

.site-main {
    padding-top: clamp(22px, 3vw, 42px);
    background:
        radial-gradient(circle at 95% 8%, rgba(255, 214, 90, 0.2), transparent 25rem),
        radial-gradient(circle at 4% 37%, rgba(72, 190, 193, 0.13), transparent 30rem),
        radial-gradient(circle at 88% 70%, rgba(255, 105, 120, 0.08), transparent 28rem),
        #fff;
}

.nana-home-v2 {
    --home-width: min(100% - 40px, 1240px);
    padding: 0 0 clamp(20px, 4vw, 50px);
}

.nana-home-v2 h1,
.nana-home-v2 h2,
.nana-home-v2 h3,
.nana-home-v2 p {
    overflow-wrap: anywhere;
}

.nana-v2-hero,
.nana-v2-confidence,
.nana-v2-section {
    width: var(--home-width);
    margin-inline: auto;
}

.nana-v2-hero {
    position: relative;
    display: grid;
    min-height: 650px;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: clamp(25px, 5vw, 78px);
    align-items: center;
    overflow: hidden;
    border-radius: 38px;
    padding: clamp(44px, 6vw, 82px);
    border: 1px solid rgba(72, 190, 193, 0.2);
    color: var(--nana-v2-forest-deep);
    background:
        radial-gradient(circle at 88% 7%, rgba(255, 214, 90, 0.55), transparent 16rem),
        radial-gradient(circle at 96% 88%, rgba(255, 105, 120, 0.14), transparent 21rem),
        radial-gradient(circle at 8% 95%, rgba(169, 139, 209, 0.15), transparent 20rem),
        linear-gradient(135deg, #ffffff 0%, #edfbfb 58%, #fff7f8 100%);
    box-shadow: 0 26px 75px rgba(48, 129, 133, 0.13);
    isolation: isolate;
}

.nana-v2-hero::before {
    position: absolute;
    z-index: -1;
    right: -105px;
    bottom: -140px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(72, 190, 193, 0.23);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(72, 190, 193, 0.045), 0 0 0 96px rgba(72, 190, 193, 0.03);
    content: "";
}

.nana-v2-hero-copy {
    position: relative;
    z-index: 3;
}

.nana-v2-eyebrow,
.nana-v2-overline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.nana-v2-eyebrow {
    color: var(--nana-v2-forest);
}

.nana-v2-eyebrow i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nana-v2-yellow);
    box-shadow: 0 0 0 5px rgba(255, 201, 74, 0.13);
}

.nana-v2-hero h1 {
    max-width: 690px;
    margin: 24px 0 24px;
    color: var(--nana-v2-forest-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: clamp(46px, 5.2vw, 76px);
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -0.05em;
}

.nana-v2-hero h1 em {
    display: inline;
    color: transparent;
    background: linear-gradient(90deg, #ff6978, #a98bd1 52%, #48bec1);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.nana-v2-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: #5f7176;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.68;
}

.nana-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 34px;
}

.nana-v2-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 23px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nana-v2-button:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

.nana-v2-button-light {
    color: #fff;
    background: linear-gradient(135deg, #48bec1, #20999e);
    box-shadow: 0 12px 28px rgba(32, 153, 158, 0.22);
}

.nana-v2-button-light:hover { color: #fff; box-shadow: 0 16px 34px rgba(32, 153, 158, 0.3); }

.nana-v2-button-outline {
    border-color: rgba(72, 190, 193, 0.55);
    color: var(--nana-v2-forest);
    background: rgba(255, 255, 255, 0.72);
}

.nana-v2-button-outline:hover { color: #176f74; background: #fff; }

.nana-v2-button-dark {
    color: #fff;
    background: linear-gradient(135deg, #ff6978, #f25267);
    box-shadow: 0 12px 26px rgba(255, 105, 120, 0.22);
}

.nana-v2-button-dark:hover { color: #fff; box-shadow: 0 16px 32px rgba(255, 105, 120, 0.3); }

.nana-v2-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin-top: 40px;
    color: #53676c;
    font-size: 12px;
    font-weight: 650;
}

.nana-v2-hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nana-v2-hero-notes span::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--nana-v2-coral);
    content: "";
}

.nana-v2-hero-visual {
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.nana-v2-sun {
    position: absolute;
    top: 7%;
    right: 4%;
    width: 235px;
    height: 235px;
    border-radius: 50%;
    background: var(--nana-v2-yellow);
    box-shadow: 0 0 0 26px rgba(255, 201, 74, 0.08);
}

.nana-v2-logo-card {
    position: absolute;
    z-index: 2;
    top: 18%;
    right: 3%;
    width: min(91%, 430px);
    border-radius: 28px;
    padding: 28px 26px 21px;
    background: var(--nana-v2-paper);
    box-shadow: 0 30px 55px rgba(4, 25, 27, 0.25);
    transform: rotate(3.5deg);
}

.nana-v2-logo-card img {
    display: block;
    width: 100%;
}

.nana-v2-float-card {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
    width: min(250px, 66%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    padding: 13px 15px;
    color: var(--nana-v2-forest-deep);
    background: rgba(255, 253, 247, 0.94);
    box-shadow: 0 17px 34px rgba(4, 25, 27, 0.2);
    backdrop-filter: blur(9px);
}

.nana-v2-float-card-top { top: 3%; left: -3%; }
.nana-v2-float-card-bottom { right: -3%; bottom: 4%; }

.nana-v2-float-card strong,
.nana-v2-float-card small {
    grid-column: 2;
}

.nana-v2-float-card strong {
    align-self: end;
    font-size: 13px;
    line-height: 1.3;
}

.nana-v2-float-card small {
    margin-top: 3px;
    color: #657173;
    font-size: 10px;
    line-height: 1.35;
}

.nana-v2-float-icon {
    display: inline-flex;
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 50%;
    color: var(--nana-v2-forest-deep);
    background: var(--nana-v2-yellow);
    font-size: 17px;
    font-weight: 900;
}

.nana-v2-confidence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(72, 190, 193, 0.18);
    border-radius: 24px;
    background: var(--nana-v2-paper);
    box-shadow: 0 14px 38px rgba(48, 129, 133, 0.08);
}

.nana-v2-confidence > div {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 1px 14px;
    padding: 27px clamp(20px, 3vw, 36px);
}

.nana-v2-confidence > div + div { border-left: 1px solid rgba(18, 63, 66, 0.11); }
.nana-v2-confidence strong { grid-row: 1 / 3; color: var(--nana-v2-coral); font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.nana-v2-confidence span { font-size: 14px; font-weight: 850; line-height: 1.35; }
.nana-v2-confidence small { color: #748083; font-size: 11px; line-height: 1.45; }

.nana-v2-section {
    margin-top: clamp(78px, 9vw, 128px);
}

.nana-v2-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 39px;
}

.nana-v2-overline {
    color: #748083;
}

.nana-v2-section h2 {
    margin: 12px 0 0;
    color: var(--nana-v2-forest-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: clamp(37px, 4.25vw, 58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.042em;
}

.nana-v2-section-head > p,
.nana-v2-process-intro > p,
.nana-v2-care-copy > p,
.nana-v2-path > p,
.nana-v2-contact > div > p {
    margin: 0;
    color: #657173;
    line-height: 1.72;
}

.nana-v2-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: 15px;
}

.nana-v2-service {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(25px, 3.1vw, 39px);
    color: var(--nana-v2-forest-deep);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nana-v2-service:hover {
    color: var(--nana-v2-forest-deep);
    text-decoration: none;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(12, 48, 51, 0.13);
}

.nana-v2-service-main {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 520px;
    justify-content: flex-start;
    color: var(--nana-v2-forest-deep);
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.72), transparent 13rem),
        linear-gradient(145deg, #c9f1ef, #eafafa);
}

.nana-v2-service-main:hover { color: var(--nana-v2-forest-deep); }
.nana-v2-service-side { grid-column: span 5; }
.nana-v2-service-warm { background: linear-gradient(145deg, #ffde73, #fff2ba); }
.nana-v2-service-lilac { background: linear-gradient(145deg, #e5d7f6, #f5effc); }
.nana-v2-service-wide {
    grid-column: 1 / -1;
    min-height: 205px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(25px, 5vw, 72px);
    background: linear-gradient(145deg, #dff5c5, #f0fadf);
}
.nana-v2-service-wide .nana-v2-more { min-width: 135px; margin-top: 0; }
.nana-v2-service-number { align-self: flex-start; font-family: Georgia, serif; font-size: 17px; opacity: 0.63; }
.nana-v2-service h3 { max-width: 620px; margin: 0 0 13px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: clamp(26px, 3vw, 43px); font-weight: 800; line-height: 1.08; letter-spacing: -0.035em; }
.nana-v2-service-side h3,
.nana-v2-service-wide h3 { font-size: clamp(23px, 2.2vw, 32px); }
.nana-v2-service p { max-width: 520px; margin: 0; opacity: 0.72; line-height: 1.58; }
.nana-v2-more { display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 25px; font-size: 12px; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.nana-v2-more b { font-size: 20px; }
.nana-v2-service-symbol { position: absolute; right: 8%; bottom: 10%; color: var(--nana-v2-coral); font-size: 120px; line-height: 1; opacity: 0.12; transform: rotate(10deg); }

.nana-v2-service-main-visual {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    gap: 16px;
    margin: clamp(24px, 3vw, 38px) 0 25px;
}

.nana-v2-service-main-visual::after {
    position: absolute;
    z-index: -1;
    top: -58px;
    right: 1%;
    width: 185px;
    height: 185px;
    border: 28px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    content: "";
}

.nana-v2-service-main-kicker {
    color: #487276;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nana-v2-service-age-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.nana-v2-service-age-grid > span {
    display: flex;
    min-height: 102px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 19px;
    padding: 17px 15px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 12px 28px rgba(44, 129, 132, 0.08);
    backdrop-filter: blur(7px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nana-v2-service-main:hover .nana-v2-service-age-grid > span {
    background: rgba(255, 255, 255, 0.68);
    transform: translateY(-3px);
}

.nana-v2-service-age-grid b {
    color: #ec6676;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

.nana-v2-service-age-grid small {
    color: #35595c;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.nana-v2-service-main > div:last-of-type {
    margin-top: 3px;
}

.nana-v2-process {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
    gap: clamp(55px, 8vw, 120px);
    align-items: start;
}

.nana-v2-process-intro {
    position: sticky;
    top: 125px;
}

.nana-v2-process-intro > p { margin-top: 24px; }

.nana-v2-text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
    border-bottom: 1px solid rgba(18, 63, 66, 0.35);
    padding-bottom: 5px;
    color: var(--nana-v2-forest-deep);
    font-size: 14px;
    font-weight: 850;
}

.nana-v2-text-link:hover { color: #175f63; text-decoration: none; }
.nana-v2-text-link span { font-size: 20px; transition: transform 0.2s ease; }
.nana-v2-text-link:hover span { transform: translateX(4px); }

.nana-v2-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nana-v2-steps li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 27px;
    border-top: 1px solid rgba(18, 63, 66, 0.15);
    padding: 32px 0 35px;
}

.nana-v2-steps li:last-child { border-bottom: 1px solid rgba(18, 63, 66, 0.15); }
.nana-v2-steps li > span { display: inline-flex; width: 55px; height: 55px; align-items: center; justify-content: center; border-radius: 50%; color: var(--nana-v2-forest-deep); background: var(--nana-v2-yellow); font-family: Georgia, serif; font-size: 22px; }
.nana-v2-steps h3 { margin: 2px 0 7px; color: var(--nana-v2-forest-deep); font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: 27px; font-weight: 800; }
.nana-v2-steps p { max-width: 570px; margin: 0; color: #6a7678; line-height: 1.65; }

.nana-v2-care {
    display: grid;
    min-height: 590px;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(72, 190, 193, 0.16);
    background: var(--nana-v2-paper);
    box-shadow: 0 22px 60px rgba(48, 129, 133, 0.1);
}

.nana-v2-care-shape {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--nana-v2-forest-deep);
    background:
        radial-gradient(circle at 22% 22%, #fff2ad 0 19%, transparent 19.5%),
        linear-gradient(145deg, #48bec1, #8ddadb);
    isolation: isolate;
}

.nana-v2-care-shape::before,
.nana-v2-care-shape::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
}

.nana-v2-care-shape::before { top: 9%; left: -14%; width: 270px; height: 270px; background: rgba(255, 214, 90, 0.8); }
.nana-v2-care-shape::after { right: -20%; bottom: -12%; width: 330px; height: 330px; border: 55px solid rgba(255, 255, 255, 0.27); }
.nana-v2-care-shape span,
.nana-v2-care-shape i { font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: clamp(59px, 7vw, 94px); font-weight: 800; line-height: 0.87; letter-spacing: -0.07em; }
.nana-v2-care-shape i { margin-left: 25%; color: #fff; font-style: normal; }

.nana-v2-care-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 82px);
}

.nana-v2-care-copy h2 { font-size: clamp(36px, 4vw, 53px); }
.nana-v2-care-copy > p { margin-top: 24px; }
.nana-v2-care-copy ul { display: grid; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.nana-v2-care-copy li { position: relative; padding-left: 27px; color: #405457; font-size: 14px; font-weight: 700; }
.nana-v2-care-copy li::before { position: absolute; top: 0.63em; left: 0; width: 13px; height: 2px; background: var(--nana-v2-coral); content: ""; }

.nana-v2-two-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.nana-v2-path {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-radius: 30px;
    padding: clamp(33px, 5vw, 60px);
}

.nana-v2-path-family { background: linear-gradient(145deg, #ffdd70, #fff3bd); }
.nana-v2-path-work { color: var(--nana-v2-forest-deep); background: linear-gradient(145deg, #ffc7ce, #fff0f2); }
.nana-v2-path-label { margin-bottom: auto; font-size: 12px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.69; }
.nana-v2-path h2 { max-width: 520px; font-size: clamp(38px, 4vw, 54px); }
.nana-v2-path-work h2 { color: var(--nana-v2-forest-deep); }
.nana-v2-path > p { max-width: 520px; margin-top: 18px; }
.nana-v2-path-work > p { color: #66767a; }
.nana-v2-path .nana-v2-button { margin-top: 27px; }

.nana-v2-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 70px;
    align-items: center;
    border-radius: 31px;
    padding: clamp(37px, 6vw, 70px);
    border: 1px solid rgba(72, 190, 193, 0.17);
    background:
        radial-gradient(circle at 94% 14%, rgba(255, 214, 90, 0.5), transparent 13rem),
        linear-gradient(135deg, #e4f9f8, #f8ffff);
}

.nana-v2-contact h2 { max-width: 700px; }
.nana-v2-contact > div > p { max-width: 620px; margin-top: 18px; }
.nana-v2-contact-actions { display: grid; gap: 10px; }
.nana-v2-contact-actions a { display: flex; flex-direction: column; border: 1px solid rgba(18, 63, 66, 0.13); border-radius: 18px; padding: 18px 21px; color: var(--nana-v2-forest-deep); background: rgba(255, 253, 247, 0.68); transition: transform 0.2s ease, background-color 0.2s ease; }
.nana-v2-contact-actions a:hover { text-decoration: none; background: var(--nana-v2-paper); transform: translateX(4px); }
.nana-v2-contact-actions small { color: #657173; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.nana-v2-contact-actions strong { margin-top: 3px; font-size: clamp(16px, 1.6vw, 21px); }

.nana-home-v2 .nana-seo-section {
    margin-top: 52px;
}

.nana-home-v2 .nana-seo-details {
    border-color: rgba(18, 63, 66, 0.12);
    background: rgba(255, 253, 247, 0.63);
    box-shadow: none;
}

.site-footer {
    border-top: 0;
    color: #617277;
    background: linear-gradient(145deg, #f1fbfb, #fff 55%, #fff8e8);
}

.site-footer .footer-inner,
.site-footer .footer-label,
.site-footer a {
    color: inherit;
}

.site-footer .footer-label { color: var(--nana-v2-forest-deep); }

.nana-footer-legal {
    border-top-color: rgba(72, 190, 193, 0.18);
    background: #eaf8f8;
}

.nana-footer-legal-title { color: var(--nana-v2-forest-deep); }
.nana-footer-legal-links a { color: #5b6e72; }
.nana-footer-legal-links a:hover { color: var(--nana-v2-forest); }

@media (max-width: 1120px) {
    .nana-v2-hero {
        min-height: 600px;
        grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
        padding: 55px 45px;
    }

    .nana-v2-hero-visual { min-height: 445px; }
    .nana-v2-float-card-top { left: -6%; }
    .nana-v2-process { gap: 60px; }
}

@media (max-width: 1080px) {
    .nana-header-inner {
        min-height: 78px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0 12px;
    }

    .nana-header-inner > .nana-header-messengers {
        grid-column: 2;
        justify-self: end;
    }

    .nana-header.menu-open .nana-services-nav { display: block; }
    .nana-header.menu-open .nana-header-actions { align-items: center; }
}

@media (max-width: 900px) {
    .nana-home-v2 { --home-width: min(100% - 30px, 1240px); }

    .nana-v2-hero {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 42px 45px;
    }

    .nana-v2-hero-copy { max-width: 720px; }
    .nana-v2-hero-visual { width: min(100%, 560px); min-height: 460px; margin: 0 auto; }
    .nana-v2-confidence { grid-template-columns: 1fr; }
    .nana-v2-confidence > div + div { border-top: 1px solid rgba(18, 63, 66, 0.11); border-left: 0; }
    .nana-v2-section-head { grid-template-columns: 1fr; gap: 20px; }
    .nana-v2-section-head > p { max-width: 670px; }
    .nana-v2-process { grid-template-columns: 1fr; gap: 32px; }
    .nana-v2-process-intro { position: static; max-width: 720px; }
    .nana-v2-care { grid-template-columns: 1fr; }
    .nana-v2-care-shape { min-height: 380px; }
    .nana-v2-two-paths { grid-template-columns: 1fr; }
    .nana-v2-path { min-height: 410px; }
    .nana-v2-contact { grid-template-columns: 1fr; gap: 31px; }
}

@media (max-width: 700px) {
    .site-main { padding-top: 15px; }
    .nana-home-v2 { --home-width: min(100% - 20px, 1240px); }

    .nana-v2-hero {
        min-height: 0;
        border-radius: 25px;
        padding: 39px 22px 24px;
    }

    .nana-v2-hero h1 { margin-top: 19px; font-size: clamp(41px, 12vw, 58px); }
    .nana-v2-hero-copy > p { font-size: 16px; }
    .nana-v2-actions { display: grid; grid-template-columns: 1fr; }
    .nana-v2-button { width: 100%; }
    .nana-v2-hero-notes { display: grid; gap: 7px; margin-top: 28px; }
    .nana-v2-hero-visual { min-height: 370px; }
    .nana-v2-logo-card { top: 19%; right: 4%; width: 88%; padding: 20px 18px 15px; border-radius: 21px; }
    .nana-v2-sun { width: 170px; height: 170px; }
    .nana-v2-float-card { width: min(215px, 72%); padding: 10px 11px; }
    .nana-v2-float-card-top { top: 1%; left: 0; }
    .nana-v2-float-card-bottom { right: 0; bottom: 0; }

    .nana-v2-confidence { border-radius: 20px; }
    .nana-v2-confidence > div { padding: 22px 20px; }
    .nana-v2-section { margin-top: 72px; }
    .nana-v2-section h2 { font-size: clamp(35px, 10vw, 48px); }
    .nana-v2-bento { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
    .nana-v2-service,
    .nana-v2-service-main,
    .nana-v2-service-side,
    .nana-v2-service-wide { grid-column: auto; grid-row: auto; min-height: 295px; border-radius: 23px; }
    .nana-v2-service-wide { display: flex; }
    .nana-v2-service-main { min-height: 365px; }
    .nana-v2-service-main-visual { margin: 28px 0; }
    .nana-v2-service-main-visual::after { width: 135px; height: 135px; border-width: 20px; }
    .nana-v2-service-age-grid > span { min-height: 92px; padding: 13px 11px; }
    .nana-v2-service-age-grid b { font-size: 24px; }
    .nana-v2-service-age-grid small { font-size: 11px; }
    .nana-v2-service h3,
    .nana-v2-service-side h3,
    .nana-v2-service-wide h3 { font-size: 29px; }
    .nana-v2-service-symbol { font-size: 90px; }
    .nana-v2-steps li { grid-template-columns: 49px minmax(0, 1fr); gap: 16px; }
    .nana-v2-steps li > span { width: 45px; height: 45px; }
    .nana-v2-steps h3 { font-size: 24px; }
    .nana-v2-care { min-height: 0; border-radius: 24px; }
    .nana-v2-care-shape { min-height: 280px; }
    .nana-v2-care-shape span,
    .nana-v2-care-shape i { font-size: 61px; }
    .nana-v2-care-copy { padding: 36px 23px 42px; }
    .nana-v2-path { min-height: 380px; border-radius: 24px; padding: 29px 23px; }
    .nana-v2-contact { border-radius: 24px; padding: 34px 22px; }
    .nana-home-v2 .nana-seo-section { margin-top: 35px; }
}

@media (max-width: 520px) {
    .nana-header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0 5px;
    }

    .nana-logo {
        width: 84px;
        height: 70px;
    }

    .nana-logo-image {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .nana-header.menu-open .nana-header-actions {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .nana-header-messengers {
        width: auto;
        gap: 3px;
        justify-content: flex-end;
        padding-right: 0;
    }

    .nana-messenger-link {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .nana-messenger-icon,
    .nana-messenger-icon svg {
        width: 18px;
        height: 18px;
    }

    .nana-max-icon,
    .nana-max-icon svg {
        width: 30px;
        height: 30px;
    }

    .nana-v2-eyebrow,
    .nana-v2-overline { letter-spacing: 0.09em; }
    .nana-v2-hero-visual { min-height: 335px; }
    .nana-v2-float-card { grid-template-columns: 32px minmax(0, 1fr); column-gap: 8px; }
    .nana-v2-float-icon { width: 32px; height: 32px; }
    .nana-v2-float-card small { display: none; }
    .nana-v2-float-card strong { align-self: center; }
    .nana-footer-legal-inner { grid-template-columns: 1fr; }
}

/* Shared inner pages use the same light, friendly visual language. */
.page-body,
.hero,
.lead-form,
.contact-form,
.stats-card,
.card,
.person-card {
    border-color: rgba(72, 190, 193, 0.2);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 52px rgba(48, 129, 133, 0.1);
}

.page-body h1,
.page-body h2,
.page-body h3,
.hero h1,
.hero h2,
.hero h3 {
    color: var(--nana-v2-forest-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #48bec1;
    outline: 3px solid rgba(72, 190, 193, 0.14);
    box-shadow: none;
}

/* Our nannies */
.nana-team-page {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
    padding-bottom: 20px;
    color: var(--nana-v2-forest-deep);
}

.nana-team-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(72, 190, 193, 0.22);
    border-radius: 34px;
    padding: clamp(38px, 6vw, 76px);
    background:
        radial-gradient(circle at 91% 15%, rgba(255, 214, 90, 0.55), transparent 22rem),
        radial-gradient(circle at 3% 105%, rgba(72, 190, 193, 0.2), transparent 25rem),
        linear-gradient(135deg, #f6fdfd, #fffdf5 54%, #fff3f5);
    box-shadow: 0 24px 70px rgba(45, 125, 130, 0.12);
}

.nana-team-hero::after {
    position: absolute;
    right: -68px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border: 42px solid rgba(255, 105, 120, 0.09);
    border-radius: 50%;
    content: "";
}

.nana-team-hero-copy,
.nana-team-promise {
    position: relative;
    z-index: 1;
}

.nana-team-overline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #177f84;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nana-team-overline::before {
    width: 10px;
    height: 10px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--nana-v2-yellow);
    box-shadow: 0 0 0 1px rgba(255, 201, 74, 0.35);
    content: "";
}

.nana-team-hero h1 {
    max-width: 700px;
    margin: 17px 0 19px;
    color: var(--nana-v2-forest-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.nana-team-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: #5e7377;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.nana-team-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.nana-team-promise {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 46px rgba(40, 105, 109, 0.14);
    backdrop-filter: blur(12px);
}

.nana-team-promise strong {
    display: block;
    margin-bottom: 17px;
    font-size: 20px;
    line-height: 1.3;
}

.nana-team-promise ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nana-team-promise li {
    position: relative;
    padding-left: 31px;
    color: #5d6d70;
    line-height: 1.45;
}

.nana-team-promise li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #176f74;
    background: #dcf5f4;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.nana-team-content {
    margin-top: clamp(62px, 8vw, 102px);
}

.nana-team-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.65fr);
    gap: 45px;
    align-items: end;
    margin-bottom: 34px;
}

.nana-team-heading h2,
.nana-team-cta h2 {
    margin: 13px 0 0;
    color: var(--nana-v2-forest-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.nana-team-heading > p {
    margin: 0;
    color: #65777a;
    font-size: 17px;
    line-height: 1.65;
}

.nana-nannies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.nana-nanny-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1.18fr);
    overflow: hidden;
    border: 1px solid rgba(72, 190, 193, 0.18);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 17px 46px rgba(48, 126, 130, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nana-nanny-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(48, 126, 130, 0.16);
}

.nana-nanny-photo {
    min-height: 100%;
    background-color: #f1f1ef;
    background-image: url("/assets/images/9427355a7c1e01964608b5084c22bbfe.png");
    background-repeat: no-repeat;
    background-position: var(--photo-x) var(--photo-y);
    background-size: 500% 200%;
}

.nana-nanny-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 25px 25px 23px;
}

.nana-nanny-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.nana-nanny-title-row h3 {
    margin: 0;
    color: var(--nana-v2-forest-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 27px;
    line-height: 1.1;
}

.nana-nanny-title-row p {
    margin: 6px 0 0;
    color: #ec6676;
    font-size: 13px;
    font-weight: 800;
}

.nana-nanny-title-row > span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #177f84;
    background: #dff7f7;
    font-weight: 900;
}

.nana-nanny-facts {
    display: grid;
    gap: 10px;
    margin: 20px 0 16px;
}

.nana-nanny-facts > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
}

.nana-nanny-facts dt {
    color: #758487;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nana-nanny-facts dd {
    margin: 0;
    color: #485c60;
    font-size: 13px;
    line-height: 1.4;
}

.nana-nanny-about {
    margin: 0 0 18px;
    color: #647579;
    font-size: 14px;
    line-height: 1.55;
}

.nana-nanny-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #177f84;
    font-size: 14px;
    font-weight: 850;
}

.nana-nanny-link:hover {
    color: #ec6676;
    text-decoration: none;
}

.nana-nanny-link span {
    transition: transform 0.2s ease;
}

.nana-nanny-link:hover span {
    transform: translateX(4px);
}

.nana-team-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 70px;
    overflow: hidden;
    border-radius: 32px;
    padding: clamp(35px, 5vw, 62px);
    color: #fff;
    background:
        radial-gradient(circle at 85% 0, rgba(255, 214, 90, 0.3), transparent 18rem),
        linear-gradient(135deg, #177f84, #22565c);
    box-shadow: 0 25px 64px rgba(24, 105, 110, 0.22);
}

.nana-team-cta .nana-team-overline,
.nana-team-cta h2,
.nana-team-cta p {
    color: #fff;
}

.nana-team-cta h2 {
    max-width: 780px;
}

.nana-team-cta p {
    max-width: 760px;
    margin: 15px 0 0;
    opacity: 0.82;
    font-size: 17px;
    line-height: 1.6;
}

.nana-team-cta > a {
    flex: 0 0 auto;
    color: #365052;
    background: #fff;
    box-shadow: none;
}

.nana-team-disclaimer {
    margin: 19px auto 0;
    color: #829093;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 1060px) {
    .nana-team-hero,
    .nana-team-heading {
        grid-template-columns: 1fr;
    }

    .nana-team-promise {
        max-width: 680px;
    }

    .nana-nannies-grid {
        grid-template-columns: 1fr;
    }

    .nana-nanny-card {
        grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    }
}

@media (max-width: 680px) {
    .nana-team-page {
        width: min(100% - 20px, 1240px);
    }

    .nana-team-hero {
        gap: 28px;
        border-radius: 25px;
        padding: 37px 22px 25px;
    }

    .nana-team-hero h1 {
        font-size: clamp(48px, 16vw, 66px);
    }

    .nana-team-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nana-team-hero-actions a {
        width: 100%;
    }

    .nana-team-promise {
        border-radius: 21px;
        padding: 23px 20px;
    }

    .nana-team-heading {
        gap: 15px;
        margin-bottom: 25px;
    }

    .nana-nanny-card {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .nana-nanny-photo {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .nana-nanny-body {
        padding: 23px 20px 24px;
    }

    .nana-nanny-facts > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .nana-team-cta {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 25px;
        padding: 35px 23px;
    }

    .nana-team-cta > a {
        width: 100%;
    }
}
