:root {
    --ink: #241028;
    --ink-soft: #4f3c53;
    --muted: #756678;
    --paper: #fffafd;
    --surface: #ffffff;
    --surface-soft: #f7eff8;
    --line: #eadfeb;
    --magenta: #d510d6;
    --magenta-dark: #a80aaa;
    --violet: #7b2cff;
    --pink: #ff3f9f;
    --coral: #ff755d;
    --lime: #d8ff78;
    --white: #ffffff;
    --shadow-sm: 0 12px 34px rgba(55, 16, 60, .09);
    --shadow-lg: 0 32px 80px rgba(55, 16, 60, .16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
    line-height: 1.08;
}

h1 {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: clamp(3.3rem, 6.3vw, 6.1rem);
    font-weight: 780;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 4vw, 4.15rem);
    font-weight: 760;
}

h3 {
    margin-bottom: 15px;
    font-size: 1.55rem;
}

::selection {
    color: var(--white);
    background: var(--magenta-dark);
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(90px, 10vw, 150px) 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--ink);
    background: rgba(255, 250, 253, .9);
    border-bottom: 1px solid rgba(234, 223, 235, .75);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    border-radius: 13px;
    box-shadow: 0 9px 22px rgba(213, 16, 214, .24);
}

.brand-mark svg {
    width: 30px;
    height: 30px;
}

.brand-name {
    font-size: .96rem;
    font-weight: 500;
    letter-spacing: .13em;
    line-height: 1;
}

.brand-name strong {
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 11px 16px;
    color: var(--ink-soft);
    font-size: .96rem;
    font-weight: 650;
    text-decoration: none;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--magenta-dark);
    background: rgba(213, 16, 214, .07);
}

.main-nav .nav-cta {
    padding: 12px 20px;
    color: var(--white);
    background: var(--ink);
}

.main-nav .nav-cta:hover {
    color: var(--white);
    background: var(--magenta-dark);
    transform: translateY(-2px);
}

.main-nav .nav-cta[aria-current="page"] {
    color: var(--white);
    background: var(--magenta-dark);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 13px;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    padding: clamp(70px, 9vw, 125px) 0 100px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fffafd 0%, #fff 72%),
        var(--paper);
}

.hero::before {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 170px;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(213, 16, 214, .035));
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

.hero-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    top: -260px;
    right: -210px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(213, 16, 214, .18), rgba(123, 44, 255, .05) 48%, transparent 72%);
}

.hero-glow-two {
    bottom: -260px;
    left: -300px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(255, 117, 93, .12), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--magenta-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 23px;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--magenta));
    border-radius: 99px;
}

.eyebrow-dark {
    color: var(--magenta-dark);
}

.hero h1 em {
    display: block;
    color: transparent;
    font-style: normal;
    background: linear-gradient(100deg, var(--magenta-dark), var(--violet) 60%, var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: clamp(1.13rem, 1.8vw, 1.32rem);
    line-height: 1.6;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 23px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: .96rem;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(115deg, var(--magenta-dark), var(--violet));
    box-shadow: 0 15px 34px rgba(173, 11, 176, .25);
}

.button-primary:hover {
    color: var(--white);
    box-shadow: 0 18px 40px rgba(173, 11, 176, .34);
}

.button-ghost,
.button-outline {
    color: var(--ink);
    background: rgba(255, 255, 255, .72);
    border-color: var(--line);
}

.button-ghost:hover,
.button-outline:hover {
    color: var(--magenta-dark);
    background: var(--white);
    border-color: rgba(213, 16, 214, .32);
    box-shadow: var(--shadow-sm);
}

.button-light {
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(15, 3, 17, .17);
}

.button-light:hover {
    color: var(--magenta-dark);
    box-shadow: 0 18px 42px rgba(15, 3, 17, .24);
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 19px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: .87rem;
    font-weight: 650;
    list-style: none;
}

.hero-assurances li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-assurances svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--magenta-dark);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 610px;
    place-items: center;
}

.hero-visual::before {
    position: absolute;
    width: 470px;
    height: 470px;
    content: "";
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.12) 0 2px, transparent 2px 100%),
        linear-gradient(145deg, #26102d, #46124c 55%, #2c0d3a);
    background-size: 19px 19px, auto;
    border-radius: 44% 56% 59% 41% / 42% 43% 57% 58%;
    box-shadow: 0 35px 80px rgba(54, 14, 60, .25);
    transform: rotate(-7deg);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(213, 16, 214, .25);
    border-radius: 50%;
}

.orbit-one {
    width: 540px;
    height: 540px;
}

.orbit-two {
    width: 610px;
    height: 610px;
    border-style: dashed;
    opacity: .55;
    transform: rotate(23deg);
}

.device-card {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 540px;
    padding: 18px 20px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #faf7fa);
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 28px;
    box-shadow: 0 28px 65px rgba(16, 5, 18, .32);
}

.device-label {
    display: flex;
    margin: 0 0 8px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ink-soft);
    font-size: .74rem;
    font-weight: 750;
    letter-spacing: .03em;
}

.device-label span {
    width: 7px;
    height: 7px;
    background: #29b775;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(41,183,117,.13);
}

.device-card img {
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 205px;
    padding: 13px 16px;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 17px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: .88rem;
    line-height: 1.25;
}

.floating-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.35;
}

.floating-icon {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    border-radius: 12px;
}

.floating-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-video {
    top: 85px;
    left: -28px;
}

.floating-print {
    right: -38px;
    bottom: 93px;
}

.trust-bar {
    position: relative;
    z-index: 3;
    color: var(--white);
    background: var(--ink);
}

.trust-bar ul {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.trust-bar li {
    position: relative;
    display: grid;
    min-height: 122px;
    padding: 25px 28px 24px 62px;
    align-content: center;
    border-right: 1px solid rgba(255,255,255,.12);
}

.trust-bar li:last-child {
    border-right: 0;
}

.trust-bar li > span {
    position: absolute;
    top: 32px;
    left: 24px;
    color: var(--coral);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.trust-bar strong,
.trust-bar small {
    display: block;
}

.trust-bar strong {
    font-size: .97rem;
}

.trust-bar small {
    margin-top: 2px;
    color: rgba(255,255,255,.64);
    font-size: .75rem;
}

.experience-section {
    background: var(--white);
}

.section-heading {
    margin-bottom: 52px;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.28fr .72fr;
    align-items: end;
    gap: 70px;
}

.split-heading h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.split-heading > p,
.centered-heading > p {
    color: var(--muted);
    font-size: 1.08rem;
}

.split-heading > p {
    margin-bottom: 7px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    display: flex;
    min-height: 430px;
    padding: 34px;
    overflow: hidden;
    flex-direction: column;
    background: var(--surface-soft);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
    border-color: rgba(213, 16, 214, .2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.feature-card::after {
    position: absolute;
    right: -55px;
    bottom: -78px;
    width: 190px;
    height: 190px;
    content: "";
    background: radial-gradient(circle, rgba(213,16,214,.14), transparent 67%);
    border-radius: 50%;
}

.feature-photo {
    background: #fff6f1;
}

.feature-print {
    background: #f4f0ff;
}

.feature-number {
    position: absolute;
    top: 27px;
    right: 28px;
    color: rgba(36, 16, 40, .28);
    font-size: .73rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.feature-icon {
    display: grid;
    width: 65px;
    height: 65px;
    margin-bottom: 65px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    border-radius: 19px;
    box-shadow: 0 16px 30px rgba(174, 10, 176, .18);
}

.feature-photo .feature-icon {
    background: linear-gradient(135deg, var(--coral), var(--pink));
}

.feature-print .feature-icon {
    background: linear-gradient(135deg, var(--violet), #4f58e9);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    max-width: 300px;
}

.feature-card p {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: .94rem;
}

.feature-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 7px;
    color: var(--magenta-dark);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.feature-card a span {
    font-size: 1.1rem;
    transition: transform .2s ease;
}

.feature-card a:hover span {
    transform: translateX(4px);
}

.process-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 4% 7%, rgba(255,63,159,.25), transparent 29%),
        radial-gradient(circle at 92% 90%, rgba(123,44,255,.35), transparent 33%),
        var(--ink);
}

.process-section::before {
    position: absolute;
    top: -160px;
    left: 45%;
    width: 480px;
    height: 480px;
    content: "";
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.process-copy {
    position: sticky;
    top: 125px;
}

.process-copy .eyebrow,
.final-cta .eyebrow,
.testimonial-section .eyebrow {
    color: #ff80cc;
}

.process-copy p:not(.eyebrow) {
    margin-bottom: 33px;
    color: rgba(255,255,255,.7);
    font-size: 1.08rem;
}

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

.process-steps li {
    display: grid;
    padding: 0 0 50px;
    grid-template-columns: 66px 1fr;
    gap: 22px;
}

.process-steps li:not(:last-child) {
    margin-bottom: 43px;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.step-number {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--ink);
    background: linear-gradient(135deg, var(--lime), #fff8a5);
    border-radius: 18px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.process-steps h3 {
    margin-bottom: 11px;
    font-size: 1.65rem;
}

.process-steps p {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(255,255,255,.64);
}

.proof-section {
    background: #f9f3f9;
}

.centered-heading {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading > p {
    max-width: 660px;
    margin-inline: auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-template-rows: 300px 280px;
    gap: 18px;
}

.showcase-card,
.showcase-quote {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.showcase-card:hover img {
    transform: scale(1.035);
}

.showcase-card::after {
    position: absolute;
    inset: 48% 0 0;
    content: "";
    background: linear-gradient(transparent, rgba(23, 8, 26, .78));
}

.showcase-card figcaption {
    position: absolute;
    right: 25px;
    bottom: 22px;
    left: 25px;
    z-index: 2;
    color: var(--white);
}

.showcase-card figcaption strong,
.showcase-card figcaption span {
    display: block;
}

.showcase-card figcaption strong {
    font-size: 1rem;
}

.showcase-card figcaption span {
    margin-top: 3px;
    color: rgba(255,255,255,.7);
    font-size: .76rem;
}

.showcase-main {
    grid-row: 1 / 3;
}

.showcase-quote {
    display: flex;
    padding: 34px;
    grid-column: 2 / 4;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background: linear-gradient(135deg, var(--magenta-dark), var(--violet));
}

.showcase-quote > svg {
    width: 40px;
    height: 32px;
    fill: rgba(255,255,255,.25);
}

.showcase-quote blockquote {
    max-width: 650px;
    margin: 22px 0;
    font-size: clamp(1.28rem, 2.4vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.35;
}

.showcase-quote p {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
}

.showcase-quote p span {
    color: rgba(255,255,255,.65);
}

.pricing-preview {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: .95fr 1fr 1fr;
    align-items: stretch;
    gap: 20px;
}

.pricing-intro {
    padding: 34px 40px 34px 0;
    align-self: center;
}

.pricing-intro h2 {
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
}

.pricing-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    margin-top: 14px;
    align-items: center;
    gap: 8px;
    color: var(--magenta-dark);
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    transition: transform .2s ease;
}

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

.price-card {
    position: relative;
    display: flex;
    min-height: 580px;
    padding: 36px;
    flex-direction: column;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.price-card-featured {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(255,63,159,.26), transparent 35%),
        linear-gradient(145deg, #28112d, #401144);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.popular-label {
    position: absolute;
    top: 17px;
    right: 17px;
    margin: 0;
    padding: 7px 11px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
}

.price-kicker {
    margin-bottom: 8px;
    color: var(--magenta-dark);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.price-card-featured .price-kicker {
    color: #ff8ed1;
}

.price-card h3 {
    min-height: 55px;
    margin-bottom: 25px;
}

.price {
    display: flex;
    margin-bottom: 29px;
    align-items: flex-start;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1;
}

.price > span {
    margin: 7px 5px 0 0;
    font-size: 1.25rem;
    letter-spacing: 0;
}

.price small {
    margin: 30px 0 0 8px;
    color: var(--muted);
    font-size: .77rem;
    font-weight: 650;
    letter-spacing: 0;
}

.price-card-featured .price small {
    color: rgba(255,255,255,.58);
}

.price-card ul {
    display: grid;
    margin: 0 0 32px;
    padding: 0;
    gap: 12px;
    color: var(--ink-soft);
    font-size: .88rem;
    list-style: none;
}

.price-card-featured ul {
    color: rgba(255,255,255,.72);
}

.price-card li {
    position: relative;
    padding-left: 27px;
}

.price-card li::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    content: "✓";
    place-items: center;
    color: var(--white);
    background: var(--magenta-dark);
    border-radius: 50%;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1;
}

.price-card-featured li::before {
    color: var(--ink);
    background: var(--lime);
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.testimonial-section {
    color: var(--white);
    background: var(--ink);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: .95fr 1fr 1fr;
    align-items: stretch;
    gap: 20px;
}

.testimonial-heading {
    padding: 25px 35px 25px 0;
    align-self: center;
}

.testimonial-heading h2 {
    font-size: clamp(2.3rem, 3.6vw, 3.7rem);
}

.testimonial-heading a {
    display: inline-flex;
    margin-top: 16px;
    align-items: center;
    gap: 8px;
    color: #ff8ed1;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

.testimonial-card {
    display: flex;
    min-height: 385px;
    margin: 0;
    padding: 34px;
    flex-direction: column;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
}

.testimonial-card-accent {
    color: var(--ink);
    background: var(--lime);
    border-color: transparent;
}

.stars {
    color: #ffcf68;
    font-size: .98rem;
    letter-spacing: .14em;
}

.testimonial-card-accent .stars {
    color: var(--magenta-dark);
}

.testimonial-card > p {
    margin: auto 0;
    padding: 30px 0;
    font-size: 1.22rem;
    font-weight: 580;
    letter-spacing: -.02em;
    line-height: 1.5;
}

.testimonial-card footer {
    font-size: .87rem;
    font-weight: 800;
}

.testimonial-card footer span {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.47);
    font-size: .69rem;
    font-weight: 550;
}

.testimonial-card-accent footer span {
    color: rgba(36,16,40,.54);
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(55px, 9vw, 130px);
}

.faq-intro {
    align-self: start;
}

.faq-intro h2 {
    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
}

.faq-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.faq-intro .faq-contact {
    margin-top: 30px;
    color: var(--ink-soft);
    font-size: .9rem;
}

.faq-contact a {
    color: var(--magenta-dark);
    font-weight: 750;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 26px 48px 26px 0;
    font-size: 1.08rem;
    font-weight: 760;
    letter-spacing: -.015em;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span,
.faq-list summary span::after {
    position: absolute;
    content: "";
    background: var(--magenta-dark);
    border-radius: 2px;
}

.faq-list summary span {
    top: 35px;
    right: 8px;
    width: 17px;
    height: 2px;
}

.faq-list summary span::after {
    top: -7px;
    left: 7px;
    width: 2px;
    height: 17px;
    transition: transform .2s ease;
}

.faq-list details[open] summary span::after {
    transform: rotate(90deg);
}

.faq-list details > p {
    max-width: 680px;
    margin: -5px 50px 28px 0;
    color: var(--muted);
    font-size: .94rem;
}

.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(125deg, var(--magenta-dark), var(--violet));
}

.final-cta::before {
    position: absolute;
    top: -150px;
    right: 11%;
    z-index: -1;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.02);
}

.final-cta-glow {
    position: absolute;
    bottom: -260px;
    left: -100px;
    z-index: -1;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,117,93,.35), transparent 68%);
    border-radius: 50%;
}

.final-cta-inner {
    display: grid;
    min-height: 470px;
    padding-top: 80px;
    padding-bottom: 80px;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 70px;
}

.final-cta h2 {
    margin-bottom: 15px;
}

.final-cta-inner > div:first-child > p:not(.eyebrow) {
    max-width: 670px;
    margin-bottom: 0;
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
}

.final-cta-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
}

.phone-link {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.phone-link span {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: .69rem;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-footer {
    padding: 76px 0 28px;
    color: var(--white);
    background: #160819;
}

.footer-main {
    display: grid;
    padding-bottom: 60px;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 45px;
}

.brand-footer {
    color: var(--white);
}

.footer-brand > p {
    max-width: 320px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 10px;
    color: rgba(255,255,255,.45);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column > span {
    color: rgba(255,255,255,.75);
    font-size: .86rem;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ff8ed1;
}

.footer-bottom {
    display: flex;
    padding-top: 23px;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.38);
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .75rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: inherit;
}

.mobile-booking-bar {
    display: none;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 35px;
    }

    .hero-visual {
        transform: scale(.9);
    }

    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-intro,
    .testimonial-heading {
        grid-column: 1 / -1;
        max-width: 800px;
        padding-right: 0;
    }

    .price-card {
        min-height: 540px;
    }

    .footer-main {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 880px) {
    h1 {
        font-size: clamp(3.15rem, 9vw, 5rem);
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 82px;
        right: 0;
        left: 0;
        display: flex;
        height: calc(100dvh - 82px);
        padding: 40px 28px;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        background: rgba(255, 250, 253, .98);
        border-top: 1px solid var(--line);
        transform: translateX(105%);
        transition: transform .25s ease;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav a {
        padding: 15px 18px;
        font-size: 1.2rem;
        text-align: center;
    }

    .main-nav .nav-cta {
        margin-top: 10px;
        padding: 17px 20px;
    }

    .hero {
        padding-top: 78px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero .eyebrow,
    .hero-actions,
    .hero-assurances {
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-visual {
        margin: -5px auto -10px;
        transform: none;
    }

    .trust-bar ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar li:nth-child(2) {
        border-right: 0;
    }

    .trust-bar li:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .split-heading,
    .process-grid,
    .faq-grid,
    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 370px;
    }

    .feature-icon {
        margin-bottom: 45px;
    }

    .process-copy {
        position: static;
        max-width: 700px;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 250px 300px;
    }

    .showcase-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .showcase-quote {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .final-cta-inner {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .final-cta-actions {
        max-width: 360px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 74px;
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-name {
        font-size: .78rem;
    }

    .main-nav {
        top: 72px;
        height: calc(100dvh - 72px);
    }

    .hero {
        min-height: auto;
        padding: 64px 0 54px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero .eyebrow,
    .hero-actions,
    .hero-assurances {
        justify-content: flex-start;
    }

    h1 {
        font-size: clamp(2.75rem, 13.8vw, 4.15rem);
        line-height: 1.01;
    }

    .hero-lead {
        margin-bottom: 27px;
        font-size: 1.05rem;
        line-height: 1.55;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-assurances {
        display: grid;
        gap: 7px;
    }

    .hero-visual {
        min-height: 480px;
        margin-top: 2px;
        transform: scale(.78);
        transform-origin: top center;
        margin-bottom: -105px;
    }

    .floating-video {
        left: -3px;
    }

    .floating-print {
        right: -4px;
    }

    .trust-bar ul {
        grid-template-columns: 1fr;
    }

    .trust-bar li {
        min-height: 96px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .trust-bar li:last-child {
        border-bottom: 0;
    }

    .split-heading {
        gap: 22px;
    }

    .section-heading {
        margin-bottom: 37px;
    }

    .feature-card {
        min-height: 390px;
        padding: 28px;
    }

    .process-steps li {
        padding-bottom: 36px;
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .process-steps li:not(:last-child) {
        margin-bottom: 35px;
    }

    .step-number {
        width: 47px;
        height: 47px;
        border-radius: 14px;
        font-size: .7rem;
    }

    .process-steps h3 {
        font-size: 1.4rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 320px 210px 210px auto;
    }

    .showcase-main,
    .showcase-quote {
        grid-column: 1;
    }

    .showcase-main {
        grid-row: 1;
    }

    .showcase-quote {
        min-height: 330px;
        padding: 28px;
        grid-row: 4;
    }

    .showcase-quote blockquote {
        font-size: 1.25rem;
    }

    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .pricing-intro,
    .testimonial-heading {
        grid-column: auto;
    }

    .pricing-intro {
        padding: 0 0 16px;
    }

    .price-card {
        min-height: 535px;
        padding: 30px 27px;
    }

    .testimonial-heading {
        padding: 0 0 20px;
    }

    .testimonial-card {
        min-height: 340px;
        padding: 29px;
    }

    .faq-list summary {
        font-size: 1rem;
    }

    .final-cta-inner {
        min-height: auto;
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .final-cta-actions {
        max-width: none;
    }

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

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

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-booking-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        display: flex;
        min-height: 74px;
        padding: 10px 14px;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        color: var(--ink);
        background: rgba(255,255,255,.96);
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 32px rgba(46, 11, 50, .12);
        backdrop-filter: blur(15px);
    }

    .mobile-booking-bar > span {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    .mobile-booking-bar small {
        color: var(--muted);
        font-size: .66rem;
    }

    .mobile-booking-bar strong {
        font-size: 1.18rem;
    }

    .mobile-booking-bar a {
        padding: 12px 18px;
        color: var(--white);
        background: linear-gradient(115deg, var(--magenta-dark), var(--violet));
        border-radius: 999px;
        font-size: .82rem;
        font-weight: 800;
        line-height: 1.2;
        text-decoration: none;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
