:root {
    color-scheme: light;
    --bg: #fff4fb;
    --bg-soft: #fff9fd;
    --panel: rgba(255, 255, 255, 0.92);
    --panel-strong: #ffffff;
    --text: #3f2d56;
    --muted: #7c6c91;
    --accent: #ac54d9;
    --accent-dark: #8a3fc0;
    --accent-soft: #ff8dc2;
    --gold: #f2a6d1;
    --border: rgba(172, 84, 217, 0.16);
    --shadow: 0 24px 70px rgba(172, 84, 217, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(172, 84, 217, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 141, 194, 0.16), transparent 22%),
        linear-gradient(180deg, #fff4fb 0%, #ffedf8 55%, #fff8fc 100%);
    color: var(--accent);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

.shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 40px;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.public-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-menu {
    position: relative;
    display: none;
}

.quick-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--text);
    list-style: none;
    border: 1px solid rgba(178, 75, 216, 0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, #f3d7ff, #ffd5ef);
    box-shadow: 0 8px 18px rgba(177, 73, 216, 0.15);
    transition: transform 0.2s ease;
}

.quick-menu summary:hover {
    transform: translateY(-1px);
}

.quick-menu summary::-webkit-details-marker {
    display: none;
}

.quick-menu summary span {
    display: block;
    width: 20px;
    height: 4px;
    border-radius: 999px;
    background: #3d2c49;
    box-shadow: none;
}

.quick-menu summary {
    flex-direction: column;
    gap: 4px;
}

.quick-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 20;
    display: grid;
    gap: 6px;
    min-width: 220px;
    padding: 12px;
    border: 1px solid rgba(178, 75, 216, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 252, 0.98)),
        #ffffff;
    box-shadow: 0 22px 54px rgba(91, 59, 109, 0.2);
}

.quick-menu-panel::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 17px;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(178, 75, 216, 0.24);
    border-left: 1px solid rgba(178, 75, 216, 0.24);
    background: rgba(255, 250, 253, 0.98);
    transform: rotate(45deg);
}

.quick-menu-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 11px 13px;
    border-radius: 6px;
    color: var(--text);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.58);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-menu-panel a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.55;
}

.quick-menu-panel a:hover {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 239, 252, 0.95), rgba(245, 229, 255, 0.92));
    box-shadow: 0 10px 22px rgba(177, 73, 216, 0.14);
    transform: translateX(2px);
}

.nav-links a.btn-header {
    color: #ffffff;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.96rem;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 16px 30px rgba(157, 64, 41, 0.24);
}

.btn-header:hover {
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 42px;
    align-items: center;
    padding: 56px 0 48px;
}

.hero-copy,
.hero-visual,
.why-content,
.why-visual {
    min-width: 0;
}

.hero-copy {
    max-width: 640px;
}

.hero-kicker,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(172, 84, 217, 0.12);
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero-copy > p:first-of-type {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(172, 84, 217, 0.12);
    border-radius: 999px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(107, 58, 36, 0.06);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(157, 64, 41, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.metric-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(172, 84, 217, 0.12);
    box-shadow: 0 14px 34px rgba(107, 58, 36, 0.06);
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.5rem;
    color: var(--accent-dark);
}

.metric-card span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

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

.hero-image-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 251, 0.94));
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 141, 194, 0.28), transparent 65%);
    pointer-events: none;
}

.hero-image-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(76, 43, 111, 0.88), rgba(172, 84, 217, 0.78));
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
    box-shadow: 0 18px 40px rgba(76, 43, 111, 0.22);
}

.hero-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

section {
    padding: 56px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.feature-card,
.how-card,
.pricing-card,
.story-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(107, 58, 36, 0.06);
}

.feature-card {
    padding: 28px;
}

.feature-icon {
    min-width: 64px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(172, 84, 217, 0.1);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.why-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 38px;
    align-items: center;
}

.why-content h3 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.why-intro {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

.why-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-content li {
    position: relative;
    padding: 0 0 0 28px;
    margin-bottom: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.why-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.why-visual {
    display: grid;
    gap: 18px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 251, 0.95));
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.why-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(172, 84, 217, 0.12);
    border-radius: 22px;
    padding: 24px;
}

.why-card-large {
    min-height: 150px;
}

.why-card-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.why-card-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.why-value {
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.success-section {
    background: linear-gradient(135deg, rgba(255, 244, 251, 0.96), rgba(255, 250, 254, 0.92));
    border-radius: 30px;
    border: 1px solid var(--border);
    padding: 46px 38px;
    box-shadow: 0 24px 60px rgba(107, 58, 36, 0.06);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.story-card {
    position: relative;
    overflow: hidden;
    padding: 12px 12px 24px;
}

.story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 244, 251, 0.15), rgba(255, 244, 251, 0.86));
    pointer-events: none;
}

.story-card > * {
    position: relative;
    z-index: 1;
}

.story-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(172, 84, 217, 0.16), rgba(255, 141, 194, 0.18));
    box-shadow: 0 16px 34px rgba(63, 45, 86, 0.12);
}

.story-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 52%, rgba(63, 45, 86, 0.24)),
        radial-gradient(circle at top right, rgba(255, 141, 194, 0.18), transparent 36%);
    pointer-events: none;
}

.story-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.story-card .quote {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 18px 14px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(172, 84, 217, 0.16), rgba(255, 141, 194, 0.22));
    color: var(--accent-dark);
    box-shadow: 0 12px 24px rgba(172, 84, 217, 0.12);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1;
}

.story-card .quote::before {
    content: "\201C";
    transform: translateY(8px);
}

.story-card p {
    position: relative;
    margin: 0 14px;
    padding-bottom: 42px;
    color: var(--muted);
    line-height: 1.75;
}

.story-card p::after {
    content: "\201D";
    position: absolute;
    right: 0;
    bottom: -2px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 141, 194, 0.2), rgba(172, 84, 217, 0.14));
    color: var(--accent-dark);
    box-shadow: 0 12px 24px rgba(172, 84, 217, 0.1);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(6px);
}

.story-card .couple {
    display: none;
    margin: 0 14px;
    font-weight: 700;
    color: var(--text);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.how-card {
    padding: 30px 26px;
    text-align: center;
}

.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(172, 84, 217, 0.14), rgba(255, 141, 194, 0.16));
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.how-card h4 {
    margin: 0 0 12px;
    font-size: 1.12rem;
}

.how-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 36px;
    align-items: stretch;
}

.single-pricing-section {
    scroll-margin-top: 96px;
}

.single-pricing-grid {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.pricing-card.popular {
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: translateY(-6px);
}

.single-pricing-card {
    min-height: 100%;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent-soft);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.pricing-card h4 {
    margin: 0 0 8px;
    font-size: 1.28rem;
}

.pricing-card > p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.pricing-card.popular > p {
    color: rgba(255, 255, 255, 0.86);
}

.pricing-price {
    margin-bottom: 22px;
}

.pricing-price > div {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.pricing-card.popular .pricing-price > div {
    color: #ffffff;
}

.pricing-price span {
    font-size: 0.95rem;
    color: var(--muted);
}

.pricing-card.popular .pricing-price span {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-features {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: var(--muted);
    line-height: 1.8;
    flex: 1;
}

.pricing-card.popular .pricing-features {
    color: rgba(255, 255, 255, 0.92);
}

.pricing-features li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.pricing-card.popular .pricing-features li::before {
    background: #ffffff;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
}

.pricing-card.popular .pricing-btn {
    background: #ffffff;
    color: var(--accent-dark);
    border: none;
}

.cta-wrapper {
    padding: 12px 0 0;
}

.cta-section {
    text-align: center;
    padding: 56px 34px;
    background: linear-gradient(135deg, #4c2b6f, #7a3fb2 60%, var(--accent));
    color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(53, 35, 39, 0.2);
}

.cta-section h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: -0.03em;
}

.cta-section p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: #ffffff;
    color: var(--accent-dark);
    border-radius: 14px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.payment-success-page {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 72px 20px;
}

.payment-success-card {
    width: min(760px, 100%);
    padding: 48px;
    border: 1px solid rgba(172, 84, 217, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 239, 249, 0.94)),
        #fff7fc;
    box-shadow: 0 24px 70px rgba(103, 61, 126, 0.16);
    text-align: center;
}

.payment-success-icon {
    width: 72px;
    height: 72px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #4ade80);
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(22, 163, 74, 0.22);
}

.payment-success-card h1 {
    margin: 12px 0 18px;
    color: #16a34a;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 1.05;
}

.payment-success-card p {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
}

.payment-success-card strong {
    color: var(--primary);
    font-size: 1.12em;
}

.payment-success-terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 620px;
    margin: 26px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(172, 84, 217, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: left;
}

.payment-success-terms input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--accent);
}

.payment-success-terms a {
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: underline;
}

.payment-success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 24px;
    padding: 14px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(172, 84, 217, 0.24);
}

.payment-success-button[hidden] {
    display: none;
}

footer {
    padding: 32px 0 16px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 34px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .topbar {
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .hero,
    .why-section {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-image-frame {
        max-width: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .shell {
        width: min(100%, calc(100% - 24px));
        padding-top: 8px;
    }

    .topbar {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        gap: 12px;
        padding: 6px 0 12px;
        width: 100%;
    }

    .brand-logo {
        height: 44px;
    }

    .nav-links {
        display: contents;
    }

    .public-actions {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: none;
        margin: 4px 0 0;
        z-index: 10;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 9px;
        border: 1px solid rgba(172, 84, 217, 0.18);
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(255, 249, 253, 0.98), rgba(255, 232, 246, 0.96)),
            #fff2fa;
        box-shadow: 0 14px 34px rgba(103, 61, 126, 0.13);
        backdrop-filter: blur(16px);
    }

    .public-actions .btn-header {
        min-width: 0;
        min-height: 46px;
        padding: 10px 8px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 16px;
        background:
            linear-gradient(135deg, rgba(172, 84, 217, 0.94), rgba(232, 92, 167, 0.92)),
            var(--accent);
        color: #ffffff;
        font-size: 0.88rem;
        box-shadow: 0 10px 24px rgba(172, 84, 217, 0.18);
        text-shadow: 0 1px 1px rgba(63, 45, 86, 0.14);
    }

    .public-nav-link {
        display: none;
    }

    .quick-menu {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: auto;
    }

    .quick-menu summary {
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        padding: 11px 12px;
    }

    .quick-menu-panel {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        margin-top: 8px;
        width: min(230px, calc(100vw - 32px));
    }

    .quick-menu-panel a {
        min-height: 44px;
        padding: 12px 14px;
        font-size: 0.94rem;
    }

    .nav-links > a,
    .btn-primary,
    .btn-secondary,
    .pricing-btn,
    .cta-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hero {
        gap: 28px;
        padding-top: 18px;
    }

    .hero-visual {
        order: 1;
    }

    .hero-copy {
        order: 2;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .hero-metrics,
    .stories-grid,
    .why-card-split {
        grid-template-columns: 1fr;
    }

    .hero-image-frame,
    .success-section,
    .why-visual,
    .cta-section {
        border-radius: 24px;
    }

    .hero-image-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        font-size: 1rem;
        padding: 14px 16px;
    }

    .success-section,
    .cta-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .payment-success-page {
        min-height: 62vh;
        padding: 44px 16px;
    }

    .payment-success-card {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .payment-success-icon {
        width: 62px;
        height: 62px;
        font-size: 2rem;
    }

    .payment-success-card p {
        font-size: 1rem;
    }

    .payment-success-terms {
        padding: 14px;
        font-size: 0.94rem;
    }

    .payment-success-button {
        width: 100%;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
