:root {
    --teal: #2cb9b0;
    --teal-deep: #1f9e96;
    --teal-ink: #145954;
    --cream: #fffdf4;
    --sand: #f7edc8;
    --ink: #1f2d2b;
    --muted: #697a77;
    --line: rgba(44, 185, 176, 0.18);
    --card-shadow: 0 28px 80px rgba(14, 67, 63, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--cream);
}

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

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

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--teal);
    color: #fff;
    box-shadow: 0 10px 30px rgba(44, 185, 176, 0.22);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.85rem;
    letter-spacing: 0.02em;
}

.site-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.site-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-logo-fallback {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 1rem;
    font-weight: 600;
}

.main-nav a {
    opacity: 0.85;
    position: relative;
}

.main-nav a.is-active,
.main-nav a:hover {
    opacity: 1;
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: #fff;
    transform: translateX(-50%);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 999px;
}

.hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(247, 237, 200, 0.75), transparent 26%),
        linear-gradient(135deg, rgba(44, 185, 176, 0.14), rgba(44, 185, 176, 0.02)),
        #f8fcfb;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45) 55%, rgba(255, 255, 255, 0.08));
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 480px);
    align-items: center;
    gap: 48px;
    padding: 48px 0 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(44, 185, 176, 0.1);
    color: var(--teal-ink);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.page-hero h1 {
    margin: 18px 0 0;
    font-family: 'DM Serif Display', serif;
    line-height: 1.04;
}

.hero-copy h1 {
    font-size: clamp(2.7rem, 5vw, 4.3rem);
    color: var(--teal-ink);
}

.hero-subtitle {
    margin: 14px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    color: #2b3f3c;
}

.hero-description,
.section-copy p,
.page-hero p,
.policy-content p,
.policy-content li {
    color: var(--muted);
    line-height: 1.8;
}

.hero-description {
    margin: 22px 0 0;
    font-size: 1.02rem;
    max-width: 630px;
}

.cta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cta-button {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    background: #fff;
    color: #243735;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(24, 71, 67, 0.09);
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--teal);
    color: #fff;
}

.cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 185, 176, 0.15);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-device-wrap {
    width: min(100%, 470px);
    position: relative;
}

.hero-device {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-orb,
.hero-orb-secondary {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
}

.hero-orb {
    width: 160px;
    height: 160px;
    top: 0;
    right: -30px;
    background: rgba(44, 185, 176, 0.12);
}

.hero-orb-secondary {
    width: 110px;
    height: 110px;
    bottom: 24px;
    left: -22px;
    background: rgba(247, 237, 200, 0.85);
    box-shadow: 0 18px 36px rgba(44, 185, 176, 0.18);
}

.scroll-chip {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 90;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 20px 45px rgba(12, 53, 50, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.content-band {
    padding: 62px 0 84px;
    background: #fff;
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 32px;
    padding: 34px 0;
}

.feature-row.is-reverse {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.feature-row.is-reverse .feature-art {
    order: 1;
}

.feature-row.is-reverse .section-copy {
    order: 2;
}

.section-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #243735;
}

.section-copy p {
    margin-top: 22px;
    max-width: 660px;
    font-size: 1rem;
}

.feature-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.feature-art::before {
    content: '';
    position: absolute;
    width: min(100%, 430px);
    aspect-ratio: 1.18;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 42px;
    background: linear-gradient(180deg, #fbf3cf, #f5e79f);
}

.feature-art img {
    position: relative;
    z-index: 1;
    width: min(100%, 300px);
    border-radius: 26px;
    box-shadow: var(--card-shadow);
}

.page-hero {
    position: relative;
    padding: 94px 0 48px;
    background: linear-gradient(180deg, rgba(44, 185, 176, 0.12), rgba(255, 255, 255, 0));
}

.page-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: var(--teal-ink);
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.policy-content h2 {
    margin: 28px 0 0;
    font-size: 1.3rem;
    color: #243735;
}

.policy-content a {
    color: var(--teal-deep);
    text-decoration: underline;
}

.delete-panel {
    max-width: 760px;
    margin: 0 auto 80px;
}

.warning-box {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(247, 237, 200, 0.66);
    border: 1px solid rgba(224, 194, 79, 0.4);
    color: #685c25;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #29403d;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(44, 185, 176, 0.26);
    background: #fbfffe;
    font: inherit;
    color: #20312f;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(44, 185, 176, 0.1);
}

.form-row textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.submit-button {
    border: 0;
    border-radius: 18px;
    padding: 15px 18px;
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(44, 185, 176, 0.26);
}

.submit-button:disabled {
    opacity: 0.66;
    transform: none;
    cursor: not-allowed;
}

.form-alert {
    display: none;
    margin-bottom: 18px;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 600;
}

.form-alert.is-success {
    display: block;
    background: rgba(44, 185, 176, 0.12);
    color: var(--teal-ink);
}

.form-alert.is-error {
    display: block;
    background: rgba(229, 90, 90, 0.12);
    color: #9a3434;
}

.site-footer {
    padding: 38px 0 46px;
    background: #091714;
    color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    font-weight: 600;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 140;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 12px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 18px 36px rgba(10, 64, 36, 0.28);
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(10, 64, 36, 0.34);
    background: #1fb95a;
}

.whatsapp-float__icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    flex: 0 0 auto;
}

.whatsapp-float__icon svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float__label {
    white-space: nowrap;
}

@media (max-width: 960px) {
    .mobile-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 12px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        color: #20312f;
        border-radius: 20px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
        overflow: hidden;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 16px 18px;
        opacity: 1;
    }

    .main-nav a + a {
        border-top: 1px solid rgba(44, 185, 176, 0.12);
    }

    .main-nav a.is-active::after,
    .main-nav a:hover::after {
        display: none;
    }

    .hero-inner,
    .feature-row,
    .feature-row.is-reverse {
        grid-template-columns: 1fr;
    }

    .feature-row.is-reverse .feature-art,
    .feature-row.is-reverse .section-copy {
        order: initial;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 44px 0 84px;
    }

    .hero-copy,
    .section-copy,
    .feature-art {
        text-align: center;
    }

    .hero-description,
    .section-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-grid {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 24px, 1180px);
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding-right: 14px;
    }

    .whatsapp-float__label {
        display: none;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 22px;
        border-radius: 24px;
    }

    .feature-art::before {
        width: min(100%, 340px);
    }

    .scroll-chip {
        width: 48px;
        height: 48px;
        bottom: 18px;
    }
}
