@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #253038;
    --muted: #71808a;
    --line: #e8dfd5;
    --paper: #fffdf8;
    --cream: #fbf4eb;
    --mint: #88d7bd;
    --mint-dark: #347d6b;
    --sky: #8cc7e8;
    --sun: #f5c86b;
    --coral: #f19b83;
    --violet: #b7a6f5;
    --shadow: 0 24px 70px rgba(58, 74, 76, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 3%, rgba(245, 200, 107, .35), transparent 24%),
        radial-gradient(circle at 90% 8%, rgba(140, 199, 232, .28), transparent 26%),
        linear-gradient(180deg, #fff8ee 0%, #f7f4ee 46%, #f1f7f3 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 12px;
    z-index: 10;
    width: min(1120px, calc(100% - 28px));
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 24px;
    background: rgba(255, 253, 248, .78);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 44px rgba(58, 74, 76, .08);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}
.brand img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
}
.site-header nav {
    display: flex;
    gap: 8px;
}
.site-header nav a,
.header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}
.header-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--mint-dark), #2f6f8f);
}

main {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
}
.hero {
    min-height: calc(100vh - 92px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
    padding: 72px 0 44px;
}
.eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(136, 215, 189, .18);
    color: var(--mint-dark);
    font-size: 13px;
    font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    max-width: 680px;
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .96;
    letter-spacing: 0;
}
h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: 0;
}
h3 { font-size: 20px; margin-bottom: 10px; }
.hero-copy p,
.section-title p,
.split-section p,
.offer-copy p,
.demo-section p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 22px;
}
.primary-btn,
.ghost-btn,
.price-card a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 18px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
}
.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--mint-dark), #2f6f8f);
    box-shadow: 0 16px 34px rgba(52, 125, 107, .22);
}
.ghost-btn {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trust-row span,
.logo-band span {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(232, 223, 213, .74);
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.phone-stage {
    min-height: 610px;
    display: grid;
    place-items: center;
    border-radius: 44px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.16)),
        url("images/kindergarten-hero.jpg") center/cover;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.phone {
    width: min(360px, 88%);
    border: 10px solid rgba(255,255,255,.7);
    border-radius: 42px;
    padding: 18px;
    background: rgba(255,253,248,.92);
    box-shadow: 0 28px 80px rgba(37, 48, 56, .22);
    backdrop-filter: blur(12px);
}
.phone-top {
    display: flex;
    gap: 12px;
    align-items: center;
}
.phone-top img {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    object-fit: cover;
}
.phone-top strong,
.phone-top span {
    display: block;
}
.phone-top span,
.summary-card small,
.feed-card time {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.story-row {
    display: flex;
    gap: 10px;
    margin: 18px 0;
    overflow: hidden;
}
.story-row span {
    flex: 0 0 58px;
    display: grid;
    place-items: end center;
    width: 58px;
    height: 68px;
    padding-bottom: 4px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 28%, #fff 0 18px, transparent 19px),
        linear-gradient(135deg, var(--mint), var(--sky) 52%, var(--sun));
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
}
.summary-card,
.feed-card,
.soft-panel,
.feature-grid article,
.price-card,
.demo-grid article,
.lead-form,
.contact-note {
    border: 1px solid rgba(232, 223, 213, .78);
    border-radius: 28px;
    background: rgba(255,253,248,.88);
    box-shadow: 0 16px 42px rgba(58, 74, 76, .08);
}
.summary-card { padding: 16px; }
.summary-card strong {
    display: block;
    margin: 6px 0 14px;
    line-height: 1.35;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.mini-grid b {
    min-height: 68px;
    display: grid;
    place-items: center;
    padding: 8px 4px;
    border-radius: 18px;
    background: #f4fbf6;
    text-align: center;
    font-size: 12px;
}
.mini-grid em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}
.feed-card {
    margin-top: 10px;
    padding: 13px 14px;
    background: #fff8eb;
}
.feed-card.photo { background: #f4f1ff; }
.feed-card p { margin: 4px 0 0; font-weight: 700; }

.logo-band {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 18px 0 44px;
}
.section,
.pricing-section,
.demo-section,
.offer-section,
.split-section {
    padding: 78px 0;
}
.section-title {
    max-width: 760px;
    margin-bottom: 28px;
}
.section-title h2 {
    margin: 14px 0;
}
.feature-grid,
.pricing-grid,
.demo-grid {
    display: grid;
    gap: 16px;
}
.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}
.feature-grid article {
    min-height: 230px;
    padding: 24px;
}
.feature-grid article span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 15px;
    background: #eef8f3;
    color: var(--mint-dark);
    font-weight: 800;
}
.feature-grid p,
.price-card p,
.price-card li,
.split-section li {
    color: var(--muted);
    line-height: 1.55;
}
.split-section {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 24px;
    align-items: center;
}
.split-section ul,
.price-card ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}
.soft-panel {
    padding: 26px;
    background: linear-gradient(180deg, #fffdf8, #f3fbf6);
}
.soft-panel strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
}
.soft-panel p {
    margin: 0 0 12px;
    color: var(--ink);
}
.soft-panel time {
    color: var(--mint-dark);
    font-weight: 800;
    margin-right: 8px;
}
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}
.price-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
}
.price-card.featured {
    background: linear-gradient(180deg, #fffdf8, #ecfbf5);
    border-color: rgba(52, 125, 107, .28);
    transform: translateY(-10px);
}
.price-card > span {
    color: var(--mint-dark);
    font-weight: 800;
}
.price-card h3 {
    margin: 14px 0 8px;
    font-size: 40px;
}
.price-card h3 small {
    color: var(--muted);
    font-size: 15px;
}
.price-card a {
    margin-top: auto;
    color: #fff;
    background: linear-gradient(135deg, var(--mint-dark), #2f6f8f);
}
.demo-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 18px;
    align-items: center;
}
.demo-grid {
    grid-template-columns: repeat(3, 1fr);
}
.demo-grid article {
    padding: 18px;
}
.demo-grid span,
.demo-grid strong,
.demo-grid small {
    display: block;
}
.demo-grid span {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}
.demo-grid strong {
    margin: 8px 0 4px;
}
.offer-section {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 24px;
    align-items: start;
}
.contact-note {
    display: grid;
    gap: 5px;
    padding: 16px;
    background: #f3fbf6;
}
.contact-note span {
    color: var(--muted);
}
.lead-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    padding: 22px;
}
.lead-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 12px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
.lead-form textarea {
    min-height: 110px;
    resize: vertical;
}
.full { grid-column: 1 / -1; }
.hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.alert {
    grid-column: 1 / -1;
    padding: 13px 14px;
    border-radius: 16px;
    font-weight: 800;
}
.alert.success { background: #e8f6ee; color: #28705a; }
.alert.danger { background: #fae8e1; color: #a14436; }
footer {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 28px 0 44px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--muted);
    font-weight: 700;
}
footer img {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    object-fit: cover;
}
footer a {
    margin-left: auto;
    color: var(--mint-dark);
}

/* Mino launch page visual refresh */
body {
    color: #101936;
    background:
        radial-gradient(circle at 74% 28%, rgba(127, 202, 255, .28), transparent 25%),
        radial-gradient(circle at 92% 36%, rgba(92, 111, 255, .12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 52%, #ffffff 100%);
}
.site-header {
    top: 0;
    width: 100%;
    margin: 0;
    padding: 18px 48px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: rgba(255,255,255,.84);
    box-shadow: 0 10px 34px rgba(42, 69, 130, .06);
}
.brand img {
    width: 132px;
    height: 54px;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}
.site-header nav {
    gap: 34px;
}
.site-header nav a {
    color: #172447;
    font-weight: 600;
    font-size: 15px;
}
.header-cta {
    min-width: 146px;
    color: #fff;
    background: linear-gradient(135deg, #4d77ff, #2448f4);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(36, 72, 244, .22);
}
.header-cta span,
.primary-btn span,
.ghost-btn span {
    margin-left: 8px;
    font-size: 22px;
    line-height: 0;
}
main {
    width: min(100% - 72px, 1440px);
}
.hero {
    min-height: calc(100vh - 86px);
    grid-template-columns: minmax(420px, .82fr) minmax(580px, 1.18fr);
    gap: 18px;
    padding: 54px 0 16px;
}
.hero-copy {
    position: relative;
    z-index: 2;
}
.eyebrow {
    padding: 11px 18px;
    color: #2867ff;
    background: rgba(255,255,255,.92);
    border: 1px solid #e7ecfb;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(42, 69, 130, .08);
    font-weight: 600;
}
h1 {
    max-width: 650px;
    margin: 32px 0 18px;
    color: #111b3b;
    font-size: clamp(48px, 5.2vw, 74px);
    line-height: 1.08;
    font-weight: 800;
}
h1 em {
    display: block;
    color: #3d66ff;
    font-style: normal;
    text-shadow: 0 8px 28px rgba(61, 102, 255, .16);
}
.hero-copy p {
    max-width: 590px;
    color: #50617f;
    font-size: 21px;
    line-height: 1.55;
}
.primary-btn {
    min-width: 214px;
    color: #fff;
    background: linear-gradient(135deg, #4e7cff, #2348f5);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(36, 72, 244, .22);
}
.ghost-btn {
    min-width: 220px;
    color: #101936;
    background: rgba(255,255,255,.92);
    border: 1px solid #e5eaf7;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(42, 69, 130, .08);
}
.trust-row span {
    border: 0;
    background: transparent;
    color: #253450;
    padding: 8px 10px;
    font-size: 13px;
}
.hero-dock {
    width: min(640px, 100%);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 34px;
    padding: 16px 20px;
    border: 1px solid rgba(230, 235, 247, .9);
    border-radius: 24px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 26px 70px rgba(42, 69, 130, .11);
    backdrop-filter: blur(16px);
}
.hero-dock article {
    min-width: 0;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 0 12px;
    text-align: center;
    border-right: 1px solid #edf1f8;
}
.hero-dock article:last-child { border-right: 0; }
.hero-dock i,
.benefit-strip i,
.float-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #eef7ff;
    color: #2867ff;
    font-style: normal;
    box-shadow: inset 0 0 0 1px rgba(71, 111, 255, .08);
}
.hero-dock b {
    color: #132044;
    font-size: 13px;
    line-height: 1.15;
}
.phone-stage {
    position: relative;
    min-height: 720px;
    overflow: visible;
    border-radius: 0;
    background: none;
    box-shadow: none;
}
.orb {
    position: absolute;
    width: 690px;
    height: 690px;
    right: 28px;
    top: 72px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 68% 35%, rgba(129, 214, 255, .4), transparent 28%),
        linear-gradient(135deg, rgba(218, 228, 255, .7), rgba(182, 223, 255, .64));
    box-shadow: inset 0 0 0 1px rgba(107, 145, 255, .14);
}
.phone {
    position: absolute;
    z-index: 2;
    top: 44px;
    left: 44px;
    width: 430px;
    min-height: 650px;
    border: 14px solid rgba(255,255,255,.86);
    border-radius: 36px;
    padding: 26px;
    background: rgba(255,255,255,.93);
    box-shadow: 0 34px 86px rgba(42, 91, 164, .18);
    transform: rotate(3deg);
}
.phone-top {
    justify-content: space-between;
}
.phone-top img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
}
.phone-top span,
.phone-top small {
    display: block;
    color: #71809b;
    font-size: 15px;
    font-weight: 600;
}
.phone-top strong {
    color: #101936;
    font-size: 24px;
}
.story-row {
    gap: 17px;
    margin: 28px 0 22px;
}
.story-row span {
    flex-basis: 64px;
    width: 64px;
    height: 82px;
    color: #1f2a49;
    background:
        radial-gradient(circle at 50% 26%, #fff 0 23px, transparent 24px),
        linear-gradient(135deg, #75d8b5, #92c9ff 52%, #ffc36b);
    font-size: 12px;
}
.summary-card,
.feed-card {
    border-color: #e8edf7;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 32px rgba(42, 69, 130, .07);
}
.summary-card {
    padding: 18px;
}
.summary-card small {
    color: #53627e;
}
.mini-grid {
    grid-template-columns: repeat(4, 1fr);
}
.mini-grid b {
    min-height: 86px;
    gap: 8px;
    border: 1px solid #edf1f8;
    background: #fbfdff;
    color: #2867ff;
    font-size: 22px;
}
.mini-grid em {
    color: #2451c7;
    font-size: 11px;
    line-height: 1.2;
}
.feed-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
    background: #fff;
}
.feed-card p {
    color: #172447;
    font-size: 14px;
}
.feed-card.photo > div {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 10px;
    align-items: center;
}
.feed-card.photo img {
    width: 56px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}
.mino-character {
    position: absolute;
    z-index: 3;
    right: -2px;
    bottom: -8px;
    width: 310px;
    height: 470px;
    object-fit: cover;
    object-position: center top;
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(18, 32, 68, .18);
}
.float-icon {
    position: absolute;
    z-index: 4;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: rgba(255,255,255,.9);
    color: #2867ff;
    font-size: 30px;
    box-shadow: 0 18px 48px rgba(42, 69, 130, .12);
    backdrop-filter: blur(12px);
}
.float-icon.heart { left: 0; top: 160px; color: #ff4776; }
.float-icon.camera { left: 44px; top: 350px; }
.float-icon.bell { left: 0; bottom: 148px; color: #f4ad21; }
.float-icon.meal { right: 22px; top: 180px; color: #18a976; }
.benefit-strip {
    width: min(960px, 84%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: -18px auto 48px;
    padding: 18px 24px;
    border: 1px solid #e8edf7;
    border-radius: 34px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 24px 70px rgba(42, 69, 130, .1);
    backdrop-filter: blur(16px);
}
.benefit-strip article {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border-right: 1px solid #edf1f8;
}
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip strong,
.benefit-strip span {
    display: block;
}
.benefit-strip strong { color: #101936; }
.benefit-strip span {
    margin-top: 3px;
    color: #50617f;
    font-size: 13px;
    line-height: 1.35;
}
.logo-band {
    padding-top: 0;
}

@media (max-width: 900px) {
    .site-header nav { display: none; }
    .hero,
    .split-section,
    .offer-section,
    .demo-section {
        grid-template-columns: 1fr;
    }
    .hero { padding-top: 42px; }
    .phone-stage { min-height: 560px; }
    .feature-grid,
    .pricing-grid,
    .demo-grid {
        grid-template-columns: 1fr;
    }
    .price-card.featured { transform: none; }
}

@media (max-width: 560px) {
    .site-header {
        top: 8px;
        width: min(100% - 16px, 1120px);
        border-radius: 20px;
    }
    .brand span { display: none; }
    .header-cta { min-height: 40px; padding: 9px 12px; font-size: 13px; }
    main { width: min(100% - 16px, 1120px); }
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    .hero { min-height: auto; gap: 18px; padding-bottom: 24px; }
    .hero-copy p,
    .section-title p,
    .split-section p,
    .offer-copy p,
    .demo-section p {
        font-size: 16px;
    }
    .phone-stage {
        min-height: 500px;
        border-radius: 30px;
    }
    .phone { width: min(340px, 94%); border-width: 7px; border-radius: 34px; }
    .mini-grid { grid-template-columns: repeat(2, 1fr); }
    .section,
    .pricing-section,
    .demo-section,
    .offer-section,
    .split-section {
        padding: 48px 0;
    }
    .feature-grid article,
    .price-card,
    .lead-form,
    .soft-panel {
        border-radius: 24px;
        padding: 18px;
    }
    .lead-form { grid-template-columns: 1fr; }
    .full { grid-column: auto; }
    footer { width: min(100% - 16px, 1120px); flex-wrap: wrap; }
    footer a { margin-left: 0; }
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .phone-stage {
        min-height: 720px;
    }
    .phone {
        left: 50%;
        transform: translateX(-58%) rotate(3deg);
    }
    .mino-character {
        right: 6%;
    }
    .benefit-strip {
        width: min(100%, 980px);
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-strip article:nth-child(2) {
        border-right: 0;
    }
    .benefit-strip article {
        padding: 14px 18px;
        border-bottom: 1px solid #edf1f8;
    }
    .benefit-strip article:nth-child(n+3) {
        border-bottom: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 12px 14px;
    }
    .brand img {
        width: 104px;
        height: 42px;
    }
    .header-cta {
        min-width: auto;
        min-height: 40px;
        padding: 9px 12px;
        font-size: 13px;
    }
    main {
        width: min(100% - 20px, 1440px);
    }
    h1 {
        margin-top: 24px;
        font-size: 42px;
    }
    .hero {
        padding-top: 34px;
    }
    .hero-dock {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
    }
    .hero-dock article {
        border-right: 0;
        border-bottom: 1px solid #edf1f8;
        padding: 12px;
    }
    .hero-dock article:nth-child(n+4) {
        border-bottom: 0;
    }
    .phone-stage {
        min-height: 610px;
        overflow: hidden;
        border-radius: 30px;
    }
    .orb {
        width: 520px;
        height: 520px;
        right: -110px;
        top: 64px;
    }
    .phone {
        top: 36px;
        left: 50%;
        width: min(390px, 90%);
        min-height: 560px;
        padding: 18px;
        border-width: 9px;
        transform: translateX(-56%) rotate(2deg);
    }
    .phone-top strong {
        font-size: 20px;
    }
    .story-row {
        gap: 10px;
    }
    .story-row span {
        flex-basis: 54px;
        width: 54px;
        height: 70px;
    }
    .mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mini-grid b {
        min-height: 64px;
    }
    .mino-character {
        right: -54px;
        bottom: -28px;
        width: 210px;
        height: 320px;
        border-radius: 26px;
    }
    .float-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 23px;
    }
    .float-icon.heart { left: 10px; top: 96px; }
    .float-icon.camera { left: 20px; top: 285px; }
    .float-icon.bell { display: none; }
    .float-icon.meal { right: 12px; top: 110px; }
    .benefit-strip {
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 12px;
        border-radius: 26px;
    }
    .benefit-strip article,
    .benefit-strip article:nth-child(2),
    .benefit-strip article:nth-child(n+3) {
        border-right: 0;
        border-bottom: 1px solid #edf1f8;
    }
    .benefit-strip article:last-child {
        border-bottom: 0;
    }
}

/* Final visual alignment */
.primary-btn,
.ghost-btn,
.header-cta,
.price-card a,
.lead-form button {
    color: #fff;
    background: linear-gradient(135deg, #4e7cff, #2348f5);
    border: 0;
    box-shadow: 0 18px 34px rgba(36, 72, 244, .22);
}
.ghost-btn {
    min-width: 240px;
}
.hero-dock {
    width: min(690px, 100%);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
    border: 1px solid #e8edf7;
    border-radius: 28px;
    background: rgba(255,255,255,.86);
}
.hero-dock article {
    min-height: 116px;
    padding: 14px 10px;
    border: 0;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    box-shadow: inset 0 0 0 1px #edf1f8;
}
.hero-dock i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #eef6ff;
    font-size: 20px;
}
.hero-dock b {
    min-height: 32px;
    display: grid;
    place-items: center;
    font-size: 13px;
}
.phone-stage {
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: visible;
}
.phone-visual {
    width: min(100%, 560px);
    max-height: 720px;
    object-fit: contain;
    filter: drop-shadow(0 34px 70px rgba(42, 91, 164, .16));
}
.benefit-strip {
    width: min(960px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: -10px auto 52px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.benefit-strip article {
    min-height: 104px;
    padding: 18px;
    border: 1px solid #e8edf7;
    border-radius: 24px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 18px 46px rgba(42, 69, 130, .08);
}
.benefit-strip article:last-child {
    border-right: 1px solid #e8edf7;
}
.benefit-strip i {
    flex: 0 0 48px;
}
.fee-note {
    display: block;
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #eef5ff;
    color: #2451c7;
    font-size: 13px;
    line-height: 1.35;
}
.price-card h3 {
    font-size: 36px;
}
.price-card h3 small {
    display: block;
    margin-top: 4px;
    color: #50617f;
}

@media (max-width: 1180px) {
    .phone-stage {
        min-height: 660px;
    }
    .phone-visual {
        width: min(100%, 520px);
        max-height: 660px;
    }
    .benefit-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .benefit-strip article,
    .benefit-strip article:nth-child(2),
    .benefit-strip article:nth-child(n+3),
    .benefit-strip article:last-child {
        border: 1px solid #e8edf7;
    }
}

@media (max-width: 760px) {
    .hero-dock {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .hero-dock article,
    .hero-dock article:nth-child(n+4) {
        min-height: 106px;
        border: 0;
        box-shadow: inset 0 0 0 1px #edf1f8;
    }
    .phone-stage {
        min-height: 560px;
        overflow: hidden;
        border-radius: 30px;
        background: linear-gradient(145deg, #f7fbff, #eaf5ff);
    }
    .phone-visual {
        width: min(112%, 430px);
        max-height: 560px;
    }
    .benefit-strip {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }
    .benefit-strip article,
    .benefit-strip article:nth-child(2),
    .benefit-strip article:nth-child(n+3),
    .benefit-strip article:last-child {
        min-height: 92px;
        border: 1px solid #e8edf7;
    }
}
