* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #f3f6fb;
    color: #071326;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.site-header-inner {
    width: min(1180px, calc(100% - 28px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #39a7ff, #11d0c8);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(21, 118, 255, 0.24);
}

.brand strong {
    color: #071326;
    font-size: 18px;
    font-weight: 900;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #52627a;
    font-size: 14px;
    font-weight: 900;
}

.site-nav a:hover {
    background: #eaf3ff;
    color: #1769ff;
}

.hero {
    width: min(1180px, calc(100% - 28px));
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: center;
    padding: 52px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #1769ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 16px 0 0;
    color: #071326;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero p {
    max-width: 680px;
    margin: 18px 0 0;
    color: #52627a;
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    border: 0;
    font-weight: 900;
    text-align: center;
}

.btn-primary {
    background: #1769ff;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(23, 105, 255, 0.22);
}

.btn-light {
    background: #ffffff;
    color: #071326;
    border: 1px solid #dce5ef;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(23, 105, 255, 0.34), transparent 42%),
        linear-gradient(180deg, #071326, #061225);
    color: #ffffff;
    box-shadow: 0 28px 72px rgba(7, 19, 38, 0.26);
}

.hero-card h2 {
    margin: 20px 0 0;
    font-size: 28px;
}

.hero-card p {
    margin-top: 10px;
    color: #b8c7dd;
    font-size: 15px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #7ee7a0;
    font-size: 13px;
    font-weight: 900;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
}

.hero-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.hero-list div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.hero-list span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.16);
    color: #7ee7a0;
    font-weight: 900;
}

.section {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 52px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 14px 0 0;
    color: #071326;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.section-head p {
    margin: 12px 0 0;
    color: #52627a;
    font-size: 17px;
    line-height: 1.55;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid #e1e8f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.pricing-card h3 {
    margin: 0;
    color: #071326;
    font-size: 24px;
}

.pricing-card p {
    margin: 8px 0 0;
    color: #52627a;
    line-height: 1.5;
}

.price strong {
    display: block;
    color: #071326;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price span,
.price-year,
.domain-limit {
    color: #52627a;
    font-size: 14px;
    font-weight: 800;
}

.domain-limit {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 0 12px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #1769ff;
}

.features {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.features li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: #334155;
    font-size: 14px;
    line-height: 1.45;
}

.features span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 900;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.steps-grid div {
    padding: 18px;
    border: 1px solid #e1e8f2;
    border-radius: 20px;
    background: #ffffff;
}

.steps-grid span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eaf3ff;
    color: #1769ff;
    font-weight: 900;
}

.steps-grid strong {
    display: block;
    margin-top: 14px;
    color: #071326;
    font-size: 16px;
}

.steps-grid p {
    margin: 7px 0 0;
    color: #52627a;
    line-height: 1.5;
    font-size: 14px;
}

.alert {
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 16px;
    font-weight: 800;
}

.alert-danger {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.alert-warning {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.site-footer {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 26px 0 34px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: #52627a;
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .site-header-inner,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   Order pagina
   ========================================================= */

.order-hero {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
    gap: 24px;
    align-items: end;
    padding: 58px 0 26px;
}

.order-copy h1 {
    margin: 16px 0 0;
    color: #071326;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.order-copy p {
    max-width: 720px;
    margin: 16px 0 0;
    color: #52627a;
    font-size: 18px;
    line-height: 1.55;
}

.order-status-card {
    padding: 20px;
    border: 1px solid #e1e8f2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.order-status-card > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eaf3ff;
    color: #1769ff;
    font-weight: 900;
}

.order-status-card strong {
    display: block;
    margin-top: 14px;
    color: #071326;
    font-size: 18px;
    font-weight: 900;
}

.order-status-card p {
    margin: 8px 0 0;
    color: #52627a;
    line-height: 1.5;
}

.order-section {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 20px 0 58px;
}

.order-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    gap: 20px;
    align-items: start;
}

.order-form-card,
.order-summary-card {
    padding: 22px;
    border: 1px solid #e1e8f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.order-form-card {
    display: grid;
    gap: 13px;
}

.order-form-card h2,
.order-summary-card h2 {
    margin: 0;
    color: #071326;
    font-size: 26px;
    font-weight: 900;
}

.order-form-card > p,
.order-summary-card > p {
    margin: 0 0 4px;
    color: #52627a;
    line-height: 1.5;
}

.order-form-card label {
    display: grid;
    gap: 7px;
}

.order-form-card label span {
    color: #071326;
    font-size: 13px;
    font-weight: 900;
}

.order-form-card input,
.order-form-card select,
.order-form-card textarea {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid #dce5f1;
    border-radius: 13px;
    background: #ffffff;
    color: #071326;
    outline: none;
    font-size: 14px;
}

.order-form-card textarea {
    min-height: 118px;
    padding-top: 12px;
    resize: vertical;
    line-height: 1.5;
}

.order-form-card input:focus,
.order-form-card select:focus,
.order-form-card textarea:focus {
    border-color: #1769ff;
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.10);
}

.order-summary-card {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 15px;
}

.order-price strong {
    display: block;
    color: #071326;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.order-price span {
    color: #52627a;
    font-size: 14px;
    font-weight: 800;
}

.order-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.order-summary-line span {
    color: #52627a;
    font-size: 14px;
    font-weight: 800;
}

.order-summary-line strong {
    color: #071326;
    font-size: 14px;
    font-weight: 900;
    text-align: right;
}

.order-next-box {
    padding: 14px;
    border: 1px solid #e8eef6;
    border-radius: 16px;
    background: #f8fbff;
}

.order-next-box strong {
    display: block;
    color: #071326;
    font-size: 14px;
    font-weight: 900;
}

.order-next-box p {
    margin: 7px 0 0;
    color: #52627a;
    font-size: 13px;
    line-height: 1.55;
}

.alert-success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

@media (max-width: 940px) {
    .order-hero,
    .order-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: static;
    }
}

/* =========================================================
   Testbetaling pagina
   ========================================================= */

.pay-page {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 58px 0;
}

.pay-copy {
    max-width: 760px;
    margin-bottom: 24px;
}

.pay-copy h1 {
    margin: 16px 0 0;
    color: #071326;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.pay-copy p {
    margin: 16px 0 0;
    color: #52627a;
    font-size: 18px;
    line-height: 1.55;
}

.pay-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
    gap: 20px;
    align-items: start;
}

.pay-card {
    padding: 22px;
    border: 1px solid #e1e8f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.pay-card h2 {
    margin: 0;
    color: #071326;
    font-size: 28px;
    font-weight: 900;
}

.pay-summary {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.pay-summary div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    background: #f8fbff;
}

.pay-summary span {
    color: #52627a;
    font-size: 13px;
    font-weight: 900;
}

.pay-summary strong {
    color: #071326;
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.pay-action-card {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
}

.pay-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eaf3ff;
    color: #1769ff;
    font-size: 24px;
    font-weight: 900;
}

.pay-action-card p {
    margin: 0;
    color: #52627a;
    line-height: 1.55;
}

.pay-action-card form {
    margin: 0;
}

.pay-action-card .btn {
    width: 100%;
}

.pay-done-box {
    padding: 14px;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    background: #f0fdf4;
}

.pay-done-box strong {
    display: block;
    color: #166534;
    font-size: 14px;
    font-weight: 900;
}

.pay-done-box p {
    margin: 7px 0 0;
    color: #166534;
    font-size: 13px;
}

.pay-small-note {
    font-size: 13px;
}

@media (max-width: 940px) {
    .pay-grid {
        grid-template-columns: 1fr;
    }

    .pay-action-card {
        position: static;
    }
}

@media (max-width: 620px) {
    .pay-summary div {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PayPal / payment return
   ========================================================= */

.pay-methods {
    display: grid;
    gap: 10px;
}

.pay-methods form {
    margin: 0;
}

.pay-disabled-box {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fbff;
}

.pay-disabled-box strong {
    display: block;
    color: #071326;
    font-size: 14px;
    font-weight: 900;
}

.pay-disabled-box p {
    margin: 7px 0 0;
    color: #52627a;
    font-size: 13px;
    line-height: 1.5;
}

.pay-result-card {
    max-width: 720px;
    display: grid;
    gap: 14px;
    justify-items: center;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.pay-result-card > span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    font-size: 30px;
    font-weight: 900;
}

.pay-result-success > span {
    background: #dcfce7;
    color: #166534;
}

.pay-result-error > span {
    background: #fee2e2;
    color: #991b1b;
}

.pay-result-card h2 {
    margin: 0;
    color: #071326;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.pay-result-card p {
    max-width: 580px;
    margin: 0;
    color: #52627a;
    line-height: 1.55;
}

.pay-license-key {
    width: 100%;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid #e8eef6;
    border-radius: 16px;
    background: #f8fbff;
}

.pay-license-key strong {
    color: #071326;
    font-size: 13px;
    font-weight: 900;
}

.pay-license-key code {
    display: block;
    color: #1769ff;
    font-size: 16px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

/* =========================================================
   Web installer pagina
   ========================================================= */

.install-web-page {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 58px 0;
}

.install-web-hero {
    max-width: 820px;
    margin-bottom: 24px;
}

.install-web-hero h1 {
    margin: 16px 0 0;
    color: #071326;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.install-web-hero p {
    margin: 16px 0 0;
    color: #52627a;
    font-size: 18px;
    line-height: 1.55;
}

.install-web-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    gap: 20px;
    align-items: start;
}

.install-web-card,
.install-web-command-card,
.install-web-note {
    padding: 22px;
    border: 1px solid #e1e8f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.install-web-card h2,
.install-web-command-card h2 {
    margin: 0;
    color: #071326;
    font-size: 26px;
    font-weight: 900;
}

.install-web-card p,
.install-web-command-card p,
.install-web-note p {
    margin: 8px 0 0;
    color: #52627a;
    line-height: 1.55;
}

.install-web-form {
    display: grid;
    gap: 13px;
    margin-top: 16px;
}

.install-web-form label {
    display: grid;
    gap: 7px;
}

.install-web-form label span {
    color: #071326;
    font-size: 13px;
    font-weight: 900;
}

.install-web-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid #dce5f1;
    border-radius: 13px;
    background: #ffffff;
    color: #071326;
    outline: none;
    font-size: 14px;
}

.install-web-form input:focus {
    border-color: #1769ff;
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.10);
}

.install-web-steps {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.install-web-steps div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid #edf2f7;
    border-radius: 15px;
    background: #f8fbff;
}

.install-web-steps span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eaf3ff;
    color: #1769ff;
    font-weight: 900;
}

.install-web-steps p {
    margin: 0;
    font-size: 14px;
}

.install-web-command-card {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.install-web-command-card pre {
    margin: 0;
    max-width: 100%;
    overflow-x: auto;
    padding: 16px;
    border-radius: 16px;
    background: #071326;
    color: #dbe8f8;
}

.install-web-command-card code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.6;
}

.install-web-note {
    margin-top: 20px;
    background: #f8fbff;
}

.install-web-note strong {
    color: #071326;
    font-size: 15px;
    font-weight: 900;
}

.install-web-note code {
    color: #1769ff;
    font-weight: 900;
}

@media (max-width: 940px) {
    .install-web-grid {
        grid-template-columns: 1fr;
    }
}