@font-face {
    font-family: "Cairo";
    src: url("fonts/Cairo-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cairo";
    src: url("fonts/Cairo-SemiBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cairo";
    src: url("fonts/Cairo-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #075ca8;
    --secondary: #12a7e4;
    --accent: #1cb7d8;
    --ink: #051a3f;
    --muted: #5b7087;
    --cloud: #f4f9fd;
    --white: #ffffff;
    --line: #dceaf4;
    --green: #13a884;
    --gold: #f5b84b;
    --coral: #f27663;
    --shadow: 0 24px 70px rgba(5, 26, 63, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cloud);
    color: var(--ink);
    font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
}

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

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(244, 249, 253, .92);
    border-bottom: 1px solid rgba(220, 234, 244, .9);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
}

.brand-link img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: white;
    box-shadow: 0 12px 26px rgba(7, 92, 168, .16);
}

.brand-link strong {
    display: block;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.1;
}

.brand-link span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
    padding: 9px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(18, 167, 228, .09);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 14px 30px rgba(7, 92, 168, .26);
}

.button-secondary {
    background: white;
    color: var(--primary);
    border-color: var(--line);
}

.button-dark {
    background: var(--ink);
    color: white;
}

.button-soft {
    background: rgba(255, 255, 255, .14);
    color: white;
    border-color: rgba(255, 255, 255, .24);
}

.button-disabled {
    cursor: default;
    color: var(--muted);
    background: #eef5fa;
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: clamp(620px, calc(100svh - 96px), 760px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero-premium {
    min-height: clamp(660px, calc(100svh - 74px), 840px);
    background-position: center left;
}

.hero-premium::before {
    background:
        radial-gradient(circle at 15% 14%, rgba(28, 183, 216, .34), transparent 30%),
        linear-gradient(90deg, rgba(244, 249, 253, .1) 0%, rgba(5, 26, 63, .48) 38%, rgba(5, 26, 63, .93) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(330px, .55fr);
    gap: 28px;
    align-items: center;
}

.hero-grid .hero-content {
    justify-self: end;
    text-align: right;
}

.hero-dashboard {
    display: grid;
    gap: 14px;
    width: min(420px, 100%);
    margin-inline-start: auto;
    color: white;
}

.hero-logo-card,
.hero-status-card,
.hero-mini-grid > div {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
    border-radius: 8px;
}

.hero-logo-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
}

.hero-logo-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: white;
}

.hero-logo-card strong,
.tracking-overlay strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.hero-logo-card span,
.tracking-overlay span {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 800;
}

.hero-status-card {
    padding: 18px;
}

.status-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.status-head span {
    color: #bfeeff;
    font-weight: 900;
}

.status-head b {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(19, 168, 132, .22);
    color: #d6fff3;
}

.status-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.status-track span {
    height: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .22);
}

.status-track .done {
    background: #9ee8ff;
}

.status-track .active {
    background: var(--gold);
}

.status-labels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-mini-grid > div {
    padding: 14px 10px;
    text-align: center;
}

.hero-mini-grid b {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.hero-mini-grid span {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 900;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 26, 63, .9) 0%, rgba(5, 26, 63, .73) 42%, rgba(5, 26, 63, .22) 100%),
        linear-gradient(180deg, rgba(5, 26, 63, .14), rgba(5, 26, 63, .56));
}

.hero-content {
    width: min(660px, 100%);
    color: white;
    padding: 56px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #dff5ff;
    font-size: 13px;
    font-weight: 900;
}

.hero h1,
.page-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.08;
    font-weight: 900;
}

.hero p {
    margin: 0;
    max-width: 570px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 700;
}

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

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

.metric {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .11);
}

.metric strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.metric span {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 800;
}

.section {
    padding: 74px 0;
}

.section-white {
    background: white;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 28px;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
}

.section-title {
    margin: 0;
    font-size: clamp(28px, 4.4vw, 48px);
    line-height: 1.18;
    font-weight: 900;
}

.section-copy {
    margin: 0;
    max-width: 520px;
    color: var(--muted);
    font-weight: 700;
}

.service-grid,
.download-grid,
.support-grid,
.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.before-after {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--ink);
}

.before-after img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.before-label,
.after-label {
    position: absolute;
    top: 22px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    padding: 9px 14px;
    background: rgba(5, 26, 63, .62);
    color: white;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.before-label {
    left: 22px;
}

.after-label {
    right: 22px;
    background: rgba(19, 168, 132, .74);
}

.compact-head {
    margin-bottom: 18px;
}

.premium-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.premium-step {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(220, 234, 244, .9);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(232, 246, 253, .8)),
        white;
    box-shadow: 0 16px 44px rgba(5, 26, 63, .08);
}

.premium-step::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    left: -52px;
    bottom: -68px;
    border-radius: 999px;
    border: 26px solid rgba(18, 167, 228, .1);
}

.premium-step span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
}

.premium-step h3 {
    margin: 28px 0 8px;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 900;
}

.premium-step p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.elevated-showcase {
    grid-template-columns: minmax(0, .85fr) minmax(340px, .8fr);
}

.tracking-panel {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.tracking-panel img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.tracking-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 16px;
    background: rgba(5, 26, 63, .74);
    color: white;
    backdrop-filter: blur(14px);
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.signature-panel {
    overflow: hidden;
    border-radius: 8px;
    min-height: 430px;
    background: #04152c;
    box-shadow: var(--shadow);
}

.signature-panel img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

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

.link-cards a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    text-decoration: none;
    font-weight: 900;
}

.link-cards a:hover {
    border-color: rgba(18, 167, 228, .45);
    color: var(--primary);
}

.site-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(5, 26, 63, .06);
}

.site-card h3 {
    margin: 14px 0 8px;
    font-size: 22px;
    font-weight: 900;
}

.site-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.icon-box {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: #e8f6fd;
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

.icon-box.gold {
    background: #fff6df;
    color: #a76800;
}

.icon-box.green {
    background: #e4f8f2;
    color: var(--green);
}

.experience {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .58fr);
    gap: 24px;
    align-items: center;
}

.image-panel {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.image-panel-caption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    color: white;
}

.image-panel-caption strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
}

.image-panel-caption span {
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.process-list {
    display: grid;
    gap: 12px;
}

.process-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--line);
}

.process-number {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: 900;
}

.process-item:nth-child(2) .process-number {
    background: var(--green);
}

.process-item:nth-child(3) .process-number {
    background: var(--coral);
}

.process-item h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 900;
}

.process-item p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.app-band {
    background: var(--ink);
    color: white;
}

.app-band .section-copy {
    color: rgba(255, 255, 255, .78);
}

.app-showcase {
    display: grid;
    grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.phone-frame {
    width: min(330px, 100%);
    margin-inline: auto;
    padding: 16px;
    border-radius: 38px;
    background: #eff8fd;
    border: 10px solid rgba(255, 255, 255, .2);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .24);
}

.phone-screen {
    overflow: hidden;
    border-radius: 26px;
    background: white;
    color: var(--ink);
}

.phone-screen img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 24px;
    background: #eef8fd;
}

.phone-lines {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.phone-line {
    height: 14px;
    border-radius: 8px;
    background: #dbeaf3;
}

.phone-line.short {
    width: 62%;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.feature-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .08);
}

.feature-row b {
    display: block;
    font-weight: 900;
}

.feature-row .icon-box {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.feature-row span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 700;
}

.download-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: center;
}

.download-card h3 {
    margin: 0 0 6px;
}

.download-card p {
    margin-bottom: 14px;
}

.download-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    font-weight: 900;
}

.cta {
    padding: 54px 0;
    background: var(--primary);
    color: white;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.cta h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
}

.cta p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-weight: 800;
}

.page-hero {
    padding: 72px 0 48px;
    background: var(--ink);
    color: white;
}

.page-hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.page-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 26, 63, .94), rgba(5, 26, 63, .68) 48%, rgba(5, 26, 63, .16)),
        radial-gradient(circle at 20% 18%, rgba(18, 167, 228, .28), transparent 30%);
}

.page-hero-card {
    max-width: 760px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: 24px;
    background: rgba(5, 26, 63, .5);
    backdrop-filter: blur(14px);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    font-weight: 700;
}

.legal-grid {
    grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
    align-items: start;
}

.legal-aside {
    position: sticky;
    top: 96px;
}

.legal-aside img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}

.legal-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 900;
}

.legal-section p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.delete-page-hero {
    padding: 68px 0;
    background:
        linear-gradient(90deg, rgba(5, 26, 63, .08), rgba(18, 167, 228, .16)),
        var(--white);
    border-bottom: 1px solid var(--line);
}

.delete-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .44fr);
    gap: 28px;
    align-items: center;
}

.delete-page-hero h1 {
    max-width: 820px;
    margin: 8px 0 12px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.18;
    font-weight: 900;
}

.delete-page-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 750;
}

.delete-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.delete-hero-points span,
.form-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 8px;
    padding: 6px 11px;
    background: rgba(18, 167, 228, .12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.delete-hero-brand {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.delete-hero-brand img {
    width: min(260px, 100%);
    height: auto;
    margin-bottom: 14px;
}

.delete-hero-brand strong,
.delete-hero-brand span {
    display: block;
}

.delete-hero-brand strong {
    font-size: 20px;
    font-weight: 900;
}

.delete-hero-brand span {
    color: var(--muted);
    font-weight: 800;
}

.delete-page-grid {
    display: grid;
    grid-template-columns: minmax(280px, .48fr) minmax(0, .72fr);
    gap: 28px;
    align-items: start;
}

.delete-policy-stack {
    display: grid;
    gap: 14px;
}

.delete-policy-card,
.delete-request-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 20px 58px rgba(5, 26, 63, .08);
}

.delete-policy-card {
    padding: 22px;
}

.delete-policy-card h2,
.delete-request-card h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
}

.delete-policy-card p,
.delete-request-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
}

.delete-policy-card p + p {
    margin-top: 8px;
}

.delete-policy-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}

.delete-policy-card li {
    position: relative;
    padding-inline-start: 22px;
    color: var(--muted);
    font-weight: 750;
}

.delete-policy-card li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: .75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.delete-request-card {
    padding: 26px;
}

.delete-request-card > p {
    margin-bottom: 18px;
}

.delete-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field {
    display: grid;
    gap: 7px;
}

.field span,
.confirm-row {
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfdff;
    padding: 12px 13px;
    color: var(--ink);
    font: inherit;
    font-weight: 750;
}

.field textarea {
    min-height: 116px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: 3px solid rgba(18, 167, 228, .18);
    border-color: var(--secondary);
}

.confirm-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 167, 228, .07);
}

.confirm-row input {
    margin-top: 7px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.delete-honeypot {
    position: absolute;
    inset-inline-start: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-success,
.form-errors,
.delete-form-note {
    border-radius: 8px;
    padding: 13px 14px;
    font-weight: 800;
}

.form-success {
    display: grid;
    gap: 4px;
    margin: 16px 0;
    border: 1px solid rgba(19, 168, 132, .28);
    background: rgba(19, 168, 132, .1);
    color: #087258;
}

.form-errors {
    margin: 16px 0;
    border: 1px solid rgba(242, 118, 99, .3);
    background: rgba(242, 118, 99, .1);
    color: #8b3a2d;
}

.form-errors ul {
    margin: 6px 0 0;
    padding-inline-start: 18px;
}

.delete-form-note {
    margin-top: 18px;
    background: #fff8eb;
    color: #795200;
}

.support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-feature {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(320px, .58fr);
    gap: 22px;
    align-items: start;
}

.faq {
    display: grid;
    gap: 10px;
}

.faq details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 18px;
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

.faq p {
    margin: 8px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.site-footer {
    padding: 32px 0;
    background: #03142f;
    color: rgba(255, 255, 255, .8);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

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

.footer-links a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 900px) {
    .nav {
        display: grid;
        justify-items: stretch;
        padding: 10px 0;
    }

    .nav-links {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .hero {
        min-height: calc(100svh - 58px);
        background-position: center right;
    }

    .hero-premium {
        background-position: center left;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(5, 26, 63, .92), rgba(5, 26, 63, .68));
    }

    .hero-premium::before {
        background:
            linear-gradient(180deg, rgba(5, 26, 63, .94), rgba(5, 26, 63, .68)),
            radial-gradient(circle at 30% 10%, rgba(28, 183, 216, .22), transparent 34%);
    }

    .hero-grid,
    .premium-steps,
    .split-feature,
    .elevated-showcase,
    .link-cards,
    .support-feature,
    .delete-page-hero-inner,
    .delete-page-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-grid .hero-content {
        justify-self: stretch;
    }

    .hero-dashboard {
        width: 100%;
    }

    .hero-content {
        padding: 42px 0;
    }

    .hero-metrics,
    .service-grid,
    .download-grid,
    .support-grid,
    .legal-grid,
    .experience,
    .app-showcase {
        grid-template-columns: 1fr;
    }

    .section-head,
    .cta-inner {
        display: grid;
    }

    .legal-aside {
        position: static;
    }

    .delete-page-hero {
        padding: 42px 0;
    }
}

@media (max-width: 540px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .brand-link strong {
        font-size: 16px;
    }

    .nav-privacy,
    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 590px;
    }

    .hero-premium {
        min-height: auto;
    }

    .hero-content {
        padding: 28px 0;
    }

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

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

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

    .metric {
        padding: 9px;
    }

    .metric strong {
        font-size: 18px;
    }

    .metric span {
        font-size: 10px;
    }

    .hero-dashboard {
        gap: 10px;
        padding-bottom: 26px;
    }

    .hero-logo-card {
        grid-template-columns: 54px 1fr;
        padding: 12px;
    }

    .hero-logo-card img {
        width: 54px;
        height: 54px;
    }

    .hero-mini-grid {
        gap: 8px;
    }

    .hero-mini-grid b {
        font-size: 18px;
    }

    .before-after,
    .before-after img,
    .tracking-panel,
    .tracking-panel img,
    .signature-panel,
    .signature-panel img {
        min-height: 310px;
    }

    .premium-step {
        min-height: 190px;
    }

    .premium-step h3 {
        margin-top: 18px;
        font-size: 24px;
    }

    .section {
        padding: 52px 0;
    }

    .site-card,
    .process-item {
        padding: 16px;
    }
}

/* Premium rebuild */
.site-header {
    background: rgba(248, 252, 255, .78);
    box-shadow: 0 18px 52px rgba(5, 26, 63, .06);
}

.nav {
    min-height: 82px;
}

.nav-links {
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(220, 234, 244, .88);
    border-radius: 8px;
    padding: 6px;
}

.nav-links a {
    padding: 9px 13px;
}

.nav-links .button {
    min-height: 38px;
    padding: 8px 14px;
    color: white;
}

.luxury-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #eef9ff 0%, #dff4ff 48%, #062a56 48%, #03142f 100%);
    color: white;
    isolation: isolate;
}

.luxury-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 83% 10%, rgba(28, 183, 216, .2), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
}

.laundry-bubbles {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.laundry-bubbles span {
    position: absolute;
    display: block;
    width: var(--bubble-size, 54px);
    height: var(--bubble-size, 54px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .58);
    background:
        radial-gradient(circle at 30% 26%, rgba(255, 255, 255, .96) 0 8%, transparent 9%),
        radial-gradient(circle at 68% 74%, rgba(18, 167, 228, .2), transparent 42%),
        rgba(255, 255, 255, .08);
    box-shadow:
        inset -10px -12px 28px rgba(8, 85, 156, .18),
        0 14px 34px rgba(8, 85, 156, .14);
    animation: laundryBubbleFloat var(--bubble-speed, 9s) ease-in-out infinite;
}

.laundry-bubbles span:nth-child(1) { --bubble-size: 118px; --bubble-speed: 11s; right: 4%; top: 10%; animation-delay: -.3s; }
.laundry-bubbles span:nth-child(2) { --bubble-size: 44px; --bubble-speed: 8s; right: 18%; top: 7%; animation-delay: -2s; }
.laundry-bubbles span:nth-child(3) { --bubble-size: 72px; --bubble-speed: 10s; right: 38%; top: 17%; animation-delay: -4s; }
.laundry-bubbles span:nth-child(4) { --bubble-size: 34px; --bubble-speed: 7s; right: 51%; top: 8%; animation-delay: -1.4s; }
.laundry-bubbles span:nth-child(5) { --bubble-size: 92px; --bubble-speed: 12s; left: 7%; top: 16%; animation-delay: -5s; }
.laundry-bubbles span:nth-child(6) { --bubble-size: 42px; --bubble-speed: 8s; left: 20%; top: 28%; animation-delay: -3.2s; }
.laundry-bubbles span:nth-child(7) { --bubble-size: 64px; --bubble-speed: 9s; left: 43%; top: 38%; animation-delay: -6s; }
.laundry-bubbles span:nth-child(8) { --bubble-size: 30px; --bubble-speed: 7s; left: 31%; top: 52%; animation-delay: -2.8s; }
.laundry-bubbles span:nth-child(9) { --bubble-size: 148px; --bubble-speed: 13s; right: 9%; bottom: 7%; animation-delay: -6.6s; }
.laundry-bubbles span:nth-child(10) { --bubble-size: 56px; --bubble-speed: 9s; right: 29%; bottom: 18%; animation-delay: -4.4s; }
.laundry-bubbles span:nth-child(11) { --bubble-size: 36px; --bubble-speed: 7s; right: 45%; bottom: 10%; animation-delay: -1.8s; }
.laundry-bubbles span:nth-child(12) { --bubble-size: 88px; --bubble-speed: 11s; left: 11%; bottom: 14%; animation-delay: -5.8s; }
.laundry-bubbles span:nth-child(13) { --bubble-size: 48px; --bubble-speed: 8s; left: 27%; bottom: 5%; animation-delay: -3.5s; }
.laundry-bubbles span:nth-child(14) { --bubble-size: 24px; --bubble-speed: 6s; right: 61%; bottom: 31%; animation-delay: -2.2s; }
.laundry-bubbles span:nth-child(15) { --bubble-size: 70px; --bubble-speed: 10s; left: 50%; top: 67%; animation-delay: -7.2s; }
.laundry-bubbles span:nth-child(16) { --bubble-size: 32px; --bubble-speed: 7s; right: 73%; top: 32%; animation-delay: -4.9s; }
.laundry-bubbles span:nth-child(17) { --bubble-size: 26px; --bubble-speed: 6s; right: 8%; top: 48%; animation-delay: -3.1s; }
.laundry-bubbles span:nth-child(18) { --bubble-size: 52px; --bubble-speed: 8s; right: 17%; top: 62%; animation-delay: -6.7s; }
.laundry-bubbles span:nth-child(19) { --bubble-size: 38px; --bubble-speed: 7s; right: 34%; top: 74%; animation-delay: -1.5s; }
.laundry-bubbles span:nth-child(20) { --bubble-size: 24px; --bubble-speed: 6s; left: 5%; top: 47%; animation-delay: -5.1s; }
.laundry-bubbles span:nth-child(21) { --bubble-size: 60px; --bubble-speed: 9s; left: 16%; top: 68%; animation-delay: -7.6s; }
.laundry-bubbles span:nth-child(22) { --bubble-size: 28px; --bubble-speed: 6s; left: 37%; top: 82%; animation-delay: -2.6s; }
.laundry-bubbles span:nth-child(23) { --bubble-size: 44px; --bubble-speed: 8s; right: 56%; top: 53%; animation-delay: -4.2s; }
.laundry-bubbles span:nth-child(24) { --bubble-size: 30px; --bubble-speed: 7s; left: 62%; bottom: 6%; animation-delay: -5.9s; }

@keyframes laundryBubbleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .62;
    }
    50% {
        transform: translate3d(0, -24px, 0) scale(1.04);
        opacity: .96;
    }
}

.luxury-hero-grid {
    min-height: calc(100svh - 82px);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: 34px;
    align-items: center;
    padding-block: 52px;
}

.luxury-copy {
    max-width: 620px;
}

.luxury-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(48px, 7.5vw, 92px);
    line-height: 1.05;
    font-weight: 900;
}

.luxury-copy p {
    margin: 0;
    max-width: 570px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 800;
}

.luxury-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.luxury-proof div {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .09);
}

.luxury-proof strong {
    display: block;
    color: #9ee8ff;
    font-size: 20px;
    font-weight: 900;
}

.luxury-proof span {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
}

.luxury-visual {
    position: relative;
    min-height: 590px;
}

.visual-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: white;
    box-shadow: 0 34px 90px rgba(5, 26, 63, .28);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-ticket {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 10px;
    min-width: 230px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    padding: 14px;
    background: rgba(5, 26, 63, .68);
    color: white;
    box-shadow: 0 20px 50px rgba(5, 26, 63, .24);
    backdrop-filter: blur(16px);
}

.ticket-top {
    top: 26px;
    right: -12px;
    grid-template-columns: 52px 1fr;
    align-items: center;
}

.ticket-top img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    background: white;
}

.ticket-bottom {
    bottom: 28px;
    left: -16px;
}

.floating-ticket b {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.floating-ticket span {
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 900;
}

.mini-route {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.mini-route span {
    height: 7px;
    border-radius: 8px;
    background: #9ee8ff;
}

.mini-route span:nth-child(2) {
    background: var(--gold);
}

.editorial-grid,
.atelier-grid,
.signature-grid {
    display: grid;
    align-items: center;
    gap: 30px;
}

.editorial-grid {
    grid-template-columns: minmax(0, .52fr) minmax(420px, .9fr);
}

.luxury-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.luxury-list div {
    display: grid;
    grid-template-columns: 52px minmax(100px, .45fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(220, 234, 244, .9);
    border-radius: 8px;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(232, 246, 253, .8));
    box-shadow: 0 14px 32px rgba(5, 26, 63, .06);
}

.luxury-list-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
}

.luxury-list-icon svg,
.atelier-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.luxury-list b {
    font-weight: 900;
    font-size: 18px;
}

.luxury-list span {
    color: var(--muted);
    font-weight: 800;
}

.luxury-list div:nth-child(2) .luxury-list-icon {
    background: var(--secondary);
}

.luxury-list div:nth-child(3) .luxury-list-icon {
    background: #b78324;
}

.luxury-list .luxury-list-icon {
    color: white;
}

.before-after {
    min-height: 500px;
}

.before-after img {
    min-height: 500px;
}

.atelier-section {
    background:
        linear-gradient(180deg, rgba(244, 249, 253, .95), rgba(255, 255, 255, .7));
}

.atelier-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atelier-card {
    min-height: 270px;
    display: grid;
    align-content: space-between;
    gap: 18px;
    border: 1px solid rgba(220, 234, 244, .95);
    border-radius: 8px;
    padding: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(235, 248, 254, .72));
    box-shadow: 0 22px 60px rgba(5, 26, 63, .08);
}

.atelier-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .7), transparent 36%),
        linear-gradient(135deg, #e3f7ff, #0b6db7);
    color: white;
    box-shadow: 0 16px 30px rgba(7, 92, 168, .18);
}

.atelier-card:nth-child(2) .atelier-icon {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .72), transparent 36%),
        linear-gradient(135deg, #f6fbff, #13a884);
}

.atelier-card:nth-child(3) .atelier-icon {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .72), transparent 36%),
        linear-gradient(135deg, #e7f8ff, #1cb7d8);
}

.atelier-card:nth-child(4) .atelier-icon {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .72), transparent 36%),
        linear-gradient(135deg, #fff7df, #b78324);
}

.atelier-card span {
    color: var(--secondary);
    font-weight: 900;
}

.atelier-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.22;
}

.luxury-media {
    min-height: 520px;
}

.luxury-media img {
    min-height: 520px;
}

.signature-grid {
    grid-template-columns: minmax(0, .8fr) minmax(320px, .45fr);
}

.final-showcase {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(420px, .9fr);
    gap: 34px;
    align-items: center;
}

.final-visual {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    border-radius: 8px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.final-visual img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.final-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 14px;
    background: rgba(5, 26, 63, .72);
    color: white;
    backdrop-filter: blur(14px);
}

.final-badge img {
    width: 56px;
    height: 56px;
    min-height: 0;
    object-fit: cover;
    border-radius: 8px;
    background: white;
}

.final-badge b {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.final-badge span {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1040px) {
    .luxury-hero {
        background: linear-gradient(180deg, #03142f 0%, #062a56 58%, #f7fcff 58%, #f7fcff 100%);
    }

    .luxury-hero-grid,
    .editorial-grid,
    .atelier-grid,
    .signature-grid,
    .final-showcase {
        grid-template-columns: 1fr;
    }

    .luxury-hero-grid {
        min-height: auto;
        padding-block: 42px;
    }

    .luxury-visual {
        min-height: 500px;
    }

    .atelier-card {
        min-height: 210px;
    }
}

@media (max-width: 680px) {
    .site-header {
        position: sticky;
    }

    .luxury-hero {
        background: linear-gradient(180deg, #03142f 0%, #062a56 62%, #03142f 100%);
    }

    .nav {
        min-height: auto;
        gap: 10px;
    }

    .brand-link img {
        width: 44px;
        height: 44px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 0;
        overflow-x: visible;
    }

    .nav-links a {
        font-size: 12px;
        padding: 8px 6px;
    }

    .luxury-copy h1 {
        font-size: 38px;
    }

    .luxury-copy p {
        font-size: 16px;
    }

    .luxury-proof {
        display: none;
    }

    .luxury-visual {
        min-height: 320px;
        order: -1;
    }

    .floating-ticket {
        min-width: 190px;
        padding: 11px;
    }

    .ticket-top {
        right: 8px;
        top: 10px;
    }

    .ticket-bottom {
        left: 8px;
        bottom: 10px;
    }

    .before-after,
    .before-after img,
    .luxury-media,
    .luxury-media img {
        min-height: 330px;
    }

    .before-label,
    .after-label {
        top: 12px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .before-label {
        left: 12px;
    }

    .after-label {
        right: 12px;
    }

    .atelier-grid {
        gap: 10px;
    }

    .atelier-card {
        min-height: 160px;
        padding: 16px;
    }

    .atelier-icon {
        width: 58px;
        height: 58px;
    }

    .atelier-card h3 {
        font-size: 22px;
    }

    .luxury-list div {
        grid-template-columns: 46px 1fr;
    }

    .luxury-list div > span:last-child {
        grid-column: 2;
    }

    .luxury-list-icon {
        width: 46px;
        height: 46px;
    }

    .final-visual,
    .final-visual img {
        min-height: 330px;
    }

    .link-cards {
        grid-template-columns: 1fr;
    }
}

/* Typography refinement */
body {
    font-size: 15px;
}

.button {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 14px;
}

.brand-link strong {
    font-size: 17px;
}

.brand-link span,
.nav-links a,
.section-kicker,
.eyebrow {
    font-size: 12px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.12;
}

.page-hero h1 {
    font-size: clamp(28px, 3.6vw, 44px);
}

.hero p,
.page-hero p {
    font-size: clamp(14px, 1.25vw, 16px);
    line-height: 1.8;
}

.luxury-copy h1 {
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.1;
}

.luxury-copy p {
    font-size: clamp(14px, 1.25vw, 16px);
    line-height: 1.85;
}

.section-title {
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.28;
}

.section-copy,
.site-card p,
.premium-step p,
.process-item p,
.luxury-list span,
.feature-row span,
.faq p,
.legal-section p,
.cta p {
    font-size: 14px;
    line-height: 1.8;
}

.premium-step h3,
.image-panel-caption strong,
.cta h2 {
    font-size: clamp(21px, 2.3vw, 28px);
}

.site-card h3,
.process-item h3,
.floating-ticket b,
.final-badge b,
.luxury-proof strong,
.hero-logo-card strong,
.tracking-overlay strong,
.hero-mini-grid b,
.metric strong {
    font-size: 17px;
}

.atelier-card h3,
.legal-section h2 {
    font-size: 19px;
    line-height: 1.35;
}

.luxury-list b {
    font-size: 16px;
}

.page-hero {
    padding: 58px 0 38px;
}

.page-hero-card {
    padding: 20px;
}

.section {
    padding: 62px 0;
}

.section-head {
    margin-bottom: 24px;
}

.link-cards a,
.faq summary,
.footer-links a {
    font-size: 14px;
}

@media (max-width: 900px) {
    body {
        font-size: 15px;
    }

    .hero h1,
    .page-hero h1,
    .luxury-copy h1 {
        font-size: clamp(28px, 6.6vw, 40px);
    }

    .section-title {
        font-size: clamp(21px, 5.4vw, 29px);
    }

    .section {
        padding: 50px 0;
    }
}

@media (max-width: 540px) {
    .button {
        min-height: 40px;
        font-size: 13px;
    }

    .brand-link strong {
        font-size: 15px;
    }

    .hero h1,
    .page-hero h1,
    .luxury-copy h1 {
        font-size: 28px;
    }

    .hero p,
    .page-hero p,
    .luxury-copy p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .premium-step h3,
    .cta h2 {
        font-size: 22px;
    }

    .atelier-card h3,
    .legal-section h2 {
        font-size: 19px;
    }

    .site-card h3,
    .process-item h3 {
        font-size: 17px;
    }
}
