*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --ziggo-orange: #ff5f00;
    --ziggo-orange-dark: #e65500;
    --ziggo-blue: #1a237e;
    --ziggo-blue-btn: #1a1f71;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-400: #9e9e9e;
    --gray-600: #616161;
    --gray-800: #333333;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --font-family: 'Vodafone Ziggo text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius-card: 24px;
    --radius-input: 8px;
    --radius-btn: 40px;
    --transition: 0.2s ease;
}
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-family);
    background: var(--ziggo-orange);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}
input {
    font-family: inherit;
}
.top-tabs {
    background: var(--ziggo-orange);
    display: flex;
    justify-content: center;
    padding-top: 12px;
}
.top-tabs-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    padding: 0 32px;
    padding-left: 170px;
}
.tab-btn {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px 10px 0 0;
    transition: background var(--transition), color var(--transition);
    letter-spacing: 0.2px;
    position: relative;
    z-index: 101;
    margin-bottom: -1px;
}
.tab-active {
    background: var(--white);
    color: var(--text-dark);
}
.tab-active::before,
.tab-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: transparent;
    pointer-events: none;
}
.tab-active::before {
    left: -10px;
    border-bottom-right-radius: 10px;
    box-shadow: 5px 5px 0 5px var(--white);
}
.tab-active::after {
    right: -10px;
    border-bottom-left-radius: 10px;
    box-shadow: -5px 5px 0 5px var(--white);
}
.tab-inactive {
    background: transparent;
    color: var(--text-dark);
}
.tab-inactive:hover {
    background: rgba(255, 255, 255, 0.15);
}
.navbar {
    background: var(--white);
    border-bottom: 2px solid var(--ziggo-orange);
    position: relative;
    z-index: 100;
}
.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 80px;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}
.logo-link {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 34px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ziggo-orange);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--ziggo-orange);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}
.nav-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    gap: 4px;
    color: var(--text-dark);
    transition: color var(--transition);
    font-size: 11px;
    font-weight: 400;
}
.icon {
    font-family: 'ziggo-ui-icon', sans-serif;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
}
.icon-tv::before {
    content: "$";
}
.icon-mail::before {
    content: "F";
}
.icon-user::before {
    content: "C";
}
.icon-search::before {
    content: ":";
}
.nav-icon-link:hover {
    color: var(--text-dark);
}
.nav-icon-link:hover span:last-child {
    font-weight: 700;
}
.nav-icon-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -4px;
    right: -4px;
    height: 4px;
    background-color: var(--ziggo-orange);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.nav-icon-link:hover::after {
    opacity: 1;
}
.main-content {
    position: relative;
    min-height: calc(100vh - 95px);
    overflow: hidden;
}
.background-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bg-image {
    width: 100%;
    height: calc(100% + 105px);
    object-fit: cover;
    object-position: center top;
    transform: translateY(-105px);
}
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: calc(100vh - 95px);
}
.login-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    width: 380px;
    box-shadow: var(--shadow-card);
    animation: cardSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.login-title {
    font-family: 'Ziggo Headline', var(--font-family);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #c1c5c8;
    border-radius: var(--radius-input);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}
.form-input:focus {
    border-color: var(--ziggo-orange);
    box-shadow: 0 0 0 1px var(--ziggo-orange);
}
.form-input:hover:not(:focus) {
    border-color: var(--gray-600);
}
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 4px;
    position: relative;
}
.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 2px solid #001489;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}
.form-checkbox input[type="checkbox"]:checked {
    background-color: #001489;
    border-color: #001489;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
}
.checkbox-label {
    font-size: 16px;
    color: var(--text-body);
    font-weight: 400;
    cursor: pointer;
    user-select: none;
}
.btn-login {
    width: auto;
    height: 3rem;
    padding: 0 1.25rem;
    background: #001489;
    color: var(--white);
    border: none;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-login:hover {
    background: #000863;
}
.btn-login:active {
    transform: scale(0.97);
}
.login-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.login-link {
    font-size: 16px;
    font-weight: 400;
    color: #001489;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.login-link:hover {
    color: var(--ziggo-orange);
}
.chevron-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}
.phishing-warning {
    margin-top: 32px;
    padding-top: 0;
    border-top: none;
}
.phishing-warning p {
    font-size: 14px;
    color: var(--text-body);
    font-weight: 400;
    line-height: 1.5;
}
.phishing-warning a {
    color: #001489;
    font-weight: 700;
    text-decoration: underline;
    transition: color var(--transition);
}
.phishing-warning a:hover {
    color: var(--ziggo-orange);
}
.promo-section {
    position: absolute;
    bottom: 120px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    max-width: 800px;
    min-height: 200px;
    animation: promoFadeIn 0.8s 0.3s ease both;
}
@keyframes promoFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.promo-title {
    font-family: 'Ziggo Headline', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.promo-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    background: #001489;
    color: var(--white);
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.promo-btn:hover {
    background: #000863;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.promo-btn:active {
    transform: translateY(0) scale(0.97);
}
#nav-menu {
    display: none;
}
@media (max-width: 960px) {
    .top-tabs-inner {
        justify-content: flex-start;
        padding: 0 16px;
    }
    .navbar {
        border-bottom: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .navbar-inner {
        padding: 0 16px;
    }
    .nav-links,
    #nav-ziggo-go,
    .promo-section,
    .background-layer {
        display: none !important;
    }
    #nav-menu {
        display: flex;
    }
    .nav-right {
        gap: 24px;
    }
    .content-wrapper {
        padding: 0;
    }
    .main-content {
        background: var(--white);
        min-height: auto;
    }
    .login-card {
        max-width: 100%;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 40px 24px;
        margin: 0;
    }
}

