/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables / Custom Properties
   ======================================== */
:root {
    /* Brand Colors */
    --brand-dark: #0B1120;
    --brand-primary: #0F766E;
    --brand-light: #F0FDFA;
    --brand-gray: #F8FAFC;
    
    /* Slate Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    /* Teal Colors */
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-900: #134e4a;
    
    /* Other Colors */
    --white: #ffffff;
    --blue-50: #eff6ff;
    --indigo-50: #eef2ff;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--brand-gray);
    color: var(--slate-800);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

::selection {
    background-color: var(--teal-100);
    color: var(--teal-900);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Layout Utilities
   ======================================== */
.container {
    max-width: 80rem; /* 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar__logo {
    height: 2.5rem;
}

.navbar__title {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: var(--slate-900);
}

/* ========================================
   Main Content
   ======================================== */
.main {
    flex-grow: 1;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 3rem 1.5rem 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero__content {
    flex: 1;
    text-align: center;
    z-index: 10;
}

.hero__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    background-color: var(--teal-50);
    border: 1px solid var(--teal-100);
    color: var(--teal-700);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--slate-500);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    font-weight: 300;
    line-height: 1.75;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero__btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--slate-900);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero__btn-primary:hover {
    background-color: var(--teal-600);
    transform: translateY(-2px);
}

.hero__btn-primary i {
    transition: transform 0.2s ease;
}

.hero__btn-primary:hover i {
    transform: translateX(4px);
}

.hero__btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--white);
    color: var(--slate-700);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid var(--slate-200);
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero__btn-secondary:hover {
    border-color: var(--slate-300);
    background-color: var(--slate-50);
}

.hero__trust-badges {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--slate-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__trust-item i {
    color: var(--teal-500);
}

/* Hero Visual / Card */
.hero__visual {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 32rem;
}

.hero__visual-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(to top right, var(--teal-50), var(--blue-50), var(--indigo-50));
    border-radius: 9999px;
    filter: blur(48px);
    opacity: 0.6;
    z-index: -1;
}

.hero__card {
    background-color: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 2.5rem;
    border: 1px solid var(--slate-100);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.hero__card-dots {
    display: flex;
    gap: 0.5rem;
}

.hero__card-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--slate-200);
}

.hero__card-status {
    color: var(--slate-300);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hero__card-content {
    text-align: center;
    padding: 2.5rem 0;
}

.hero__card-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--teal-500);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card-icon i {
    color: var(--white);
    font-size: 2.25rem;
}

.hero__card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.hero__card-subtitle {
    color: var(--slate-400);
    font-size: 1.125rem;
}

.hero__card-value {
    background-color: var(--slate-50);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    border: 1px solid var(--slate-100);
}

.hero__card-value-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.hero__card-value-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
}

.hero__card-value-icon {
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
}

.hero__card-value-icon i {
    color: var(--teal-600);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    background-color: var(--white);
}

.stats__container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stats__item {
    text-align: center;
}

.stats__value {
    font-size: 2.5rem;
    font-weight: 700;
	text-align: center;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.stats__label {
    color: var(--slate-500);
	text-align: center;
    font-weight: 500;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 6rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.features__header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.features__label {
    color: var(--teal-600);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.features__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features__subtitle {
    font-size: 1.25rem;
    color: var(--slate-500);
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.features__card {
    background-color: var(--slate-50);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.features__card:hover {
    background-color: var(--white);
    border-color: var(--slate-100);
}

.features__card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal-600);
    margin-bottom: 2rem;
    border: 1px solid var(--slate-200);
}

.features__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.features__card-description {
    font-size: 1.125rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ========================================
   DOMAIN HIGHLIGHTS SECTION (Vertikales Layout)
   ========================================
*/

/* Container */
.domain-highlights {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 102rem;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

/* Einzelnes Highlight Item */
.domain-highlights__item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

/* Icon-Wrapper mit Connector-Linie */
.domain-highlights__icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Icon-Circle */
.domain-highlights__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px -4px rgba(15, 118, 110, 0.4),
        0 0 0 4px rgba(15, 118, 110, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.domain-highlights__item:hover .domain-highlights__icon {
    transform: scale(1.1);
    box-shadow: 
        0 12px 32px -4px rgba(15, 118, 110, 0.5),
        0 0 0 6px rgba(15, 118, 110, 0.15);
}

.domain-highlights__icon i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Verbindungslinie zwischen Icons */
.domain-highlights__connector {
    width: 3px;
    flex-grow: 1;
    min-height: 2rem;
    background: linear-gradient(180deg, var(--teal-400) 0%, var(--teal-100) 100%);
    border-radius: 3px;
    margin: 0.5rem 0;
}

.domain-highlights__item--last .domain-highlights__connector {
    display: none;
}

/* Content-Bereich */
.domain-highlights__content {
    flex: 1;
    background: linear-gradient(135deg, var(--white) 0%, var(--slate-50) 100%);
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.domain-highlights__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-500) 0%, var(--teal-300) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-highlights__item:hover .domain-highlights__content {
    border-color: var(--teal-200);
    box-shadow: 0 16px 48px -12px rgba(15, 118, 110, 0.15);
    transform: translateX(8px);
}

.domain-highlights__item:hover .domain-highlights__content::before {
    opacity: 1;
}

/* Nummer mit Gradient */
.domain-highlights__number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: opacity 0.3s ease;
}

.domain-highlights__item:hover .domain-highlights__number {
    opacity: 0.6;
}

/* Titel */
.domain-highlights__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
    position: relative;
}

/* Text */
.domain-highlights__text {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Tag / Badge */
.domain-highlights__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal-50) 0%, var(--teal-100) 100%);
    border: 1px solid var(--teal-200);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-700);
    transition: all 0.3s ease;
}

.domain-highlights__tag i {
    font-size: 0.75rem;
    color: var(--teal-500);
}

.domain-highlights__item:hover .domain-highlights__tag {
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
    border-color: var(--teal-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.domain-highlights__item:hover .domain-highlights__tag i {
    color: var(--white);
}

/* ========================================
   Responsive Design - Domain Highlights
   ======================================== */

/* Mobile: Kompakteres Layout */
@media (max-width: 639px) {
    .domain-highlights__item {
        gap: 1rem;
    }
    
    .domain-highlights__icon {
        width: 3rem;
        height: 3rem;
    }
    
    .domain-highlights__icon i {
        font-size: 1.125rem;
    }
    
    .domain-highlights__content {
        padding: 1.5rem;
    }
    
    .domain-highlights__number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
    
    .domain-highlights__title {
        font-size: 1.25rem;
    }
    
    .domain-highlights__text {
        font-size: 0.9375rem;
    }
    
    .domain-highlights__item:hover .domain-highlights__content {
        transform: translateX(4px);
    }
}

/* Tablet und größer */
@media (min-width: 768px) {
    .domain-highlights {
        padding: 0 3rem;
        margin: 5rem auto;
    }
    
    .domain-highlights__icon {
        width: 5rem;
        height: 5rem;
        border-radius: 1.25rem;
    }
    
    .domain-highlights__icon i {
        font-size: 1.75rem;
    }
    
    .domain-highlights__content {
        padding: 2.5rem;
    }
    
    .domain-highlights__number {
        font-size: 4rem;
        top: 2rem;
        right: 2rem;
    }
    
    .domain-highlights__title {
        font-size: 1.75rem;
    }
    
    .domain-highlights__text {
        font-size: 1.0625rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .domain-highlights {
        margin: 6rem auto;
    }
    
    .domain-highlights__item {
        gap: 2rem;
    }
    
    .domain-highlights__content {
        padding: 2.5rem 3rem;
    }
}


/* ========================================
   Expert Section
   ======================================== */
.expert {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: var(--slate-50);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.expert:hover {
    background-color: var(--white);
    border-color: var(--slate-100);
}

.expert__content {
    flex: 1;
}

.expert__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.expert__role {
    font-size: 0.875rem;
    color: var(--teal-600);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.expert__quote {
    font-size: 1.125rem;
    color: var(--slate-500);
    line-height: 1.75;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--teal-500);
}

.expert__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.expert__image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: var(--slate-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.expert__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert__social {
    display: flex;
    gap: 0.75rem;
}

.expert__social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.2s ease;
}

.expert__social-link:hover {
    background-color: var(--teal-500);
    border-color: var(--teal-500);
    color: var(--white);
}

/* ========================================
   Features CTA
   ======================================== */
.features-cta {
    margin-top: 4rem;
    text-align: center;
}

.features-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background-color: var(--teal-500);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.features-cta__button:hover {
    background-color: var(--teal-600);
    transform: translateY(-2px);
}

.features-cta__button i {
    transition: transform 0.2s ease;
}

.features-cta__button:hover i {
    transform: translateX(4px);
}

.features-cta__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    color: var(--slate-400);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 3rem 1.5rem;
}

.cta__container {
    max-width: 80rem;
    margin: 0 auto;
    background-color: var(--brand-dark);
    border-radius: 3rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(15, 118, 110, 0.3);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(50%, -50%);
}

.cta__inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta__content {
    max-width: 42rem;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta__title-highlight {
    color: var(--teal-400);
}

.cta__description {
    font-size: 1.25rem;
    color: var(--slate-400);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--teal-500);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.cta__btn-primary:hover {
    background-color: var(--teal-400);
}

.cta__btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: transparent;
    border: 1px solid var(--slate-600);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
    width: 100%;
}

.cta__btn-secondary:hover {
    border-color: var(--white);
}

/* CTA Info Card */
.cta__info-card {
    width: 100%;
    max-width: 24rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
}

.cta__info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta__info-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__info-icon i {
    color: var(--slate-900);
    font-size: 1.25rem;
}

.cta__info-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.cta__info-subtitle {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.cta__info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta__info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-300);
}

.cta__info-item i {
    color: var(--teal-400);
    font-size: 0.75rem;
}

.cta__info-item span {
    font-size: 0.875rem;
}

.cta__info-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.cta__info-badge {
    text-align: center;
}

.cta__info-badge span {
    color: var(--teal-400);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Premium Domains Section */
.premium-domains {
    padding: 5rem 1.5rem;
    background-color: var(--white);
}

.premium-domains__container {
    max-width: 80rem;
    margin: 0 auto;
}

/* Header */
.premium-domains__header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-domains__subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.premium-domains__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
}

/* Grid - 3 Spalten */
.premium-domains__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* Einzelne Domain-Karte */
.premium-domains__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--teal-50) 0%, var(--slate-50) 100%);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.premium-domains__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(15, 118, 110, 0.15);
    border-color: var(--teal-200);
}

/* Icon-Container */
.premium-domains__card-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--slate-100);
}

.premium-domains__card-icon i {
    font-size: 1.25rem;
    color: var(--teal-600);
}

/* Domain-Name */
.premium-domains__card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    transition: color 0.2s ease;
}

.premium-domains__card:hover .premium-domains__card-name {
    color: var(--teal-700);
}

/* Info-Text unter dem Grid */
.premium-domains__info {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--slate-50);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
    border: 1px solid var(--slate-100);
}

.premium-domains__info i {
    color: var(--teal-500);
    margin-right: 0.5rem;
}

.premium-domains__info a {
    color: var(--teal-600);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.premium-domains__info a:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

/* ========================================
   Responsive Design - Premium Domains
   ======================================== */

/* Tablet: 2 Spalten */
@media (min-width: 640px) {
    .premium-domains__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .premium-domains__title {
        font-size: 2.5rem;
    }
}

/* Desktop: 3 Spalten */
@media (min-width: 1024px) {
    .premium-domains {
        padding: 6rem 3rem;
    }
    
    .premium-domains__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .premium-domains__title {
        font-size: 3rem;
    }
    
    .premium-domains__card {
        padding: 1.5rem 2rem;
    }
    
    .premium-domains__card-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .premium-domains__card-icon i {
        font-size: 1.5rem;
    }
    
    .premium-domains__card-name {
        font-size: 1.5rem;
    }
}

/* ========================================
   Responsive Design - Premium Domains
   ======================================== */

/* Tablet: 2 Spalten */
@media (min-width: 640px) {
    .premium-domains__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .premium-domains__title {
        font-size: 2.5rem;
    }
}

/* Desktop: 3 Spalten */
@media (min-width: 1024px) {
    .premium-domains {
        padding: 6rem 3rem;
    }
    
    .premium-domains__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .premium-domains__title {
        font-size: 3rem;
    }
    
    .premium-domains__card {
        padding: 1.5rem 2rem;
    }
    
    .premium-domains__card-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .premium-domains__card-icon i {
        font-size: 1.5rem;
    }
    
    .premium-domains__card-name {
        font-size: 1.5rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--white);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--slate-100);
}

.footer__container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer__main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer__logo {
    height: 2rem;
}

.footer__title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--slate-900);
}

.footer__description {
    color: var(--slate-500);
    max-width: 20rem;
}

.footer__links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer__column h4 {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__column ul li a {
    color: var(--slate-500);
    transition: color 0.2s ease;
}

.footer__column ul li a:hover {
    color: var(--teal-600);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.2s ease;
}

.footer__social-link:hover {
    background-color: var(--slate-900);
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid var(--slate-100);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--slate-400);
}

.footer__copyright {
    text-align: center;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--slate-600);
}

/* ========================================
   Responsive Design - Tablet (md: 768px+)
   ======================================== */
@media (min-width: 768px) {
    .navbar {
        padding: 1.5rem 3rem;
    }
    
    .hero {
        padding: 6rem 3rem 8rem;
        flex-direction: row;
    }
    
    .hero__content {
        text-align: left;
    }
    
    .hero__title {
        font-size: 4.5rem;
    }
    
    .hero__description {
        font-size: 1.5rem;
    }
    
    .hero__trust-badges {
        justify-content: flex-start;
    }
    
    .hero__visual {
        max-width: none;
    }
    
    .hero__card {
        padding: 2.5rem;
    }
    
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .stats__item {
        text-align: left;
    }
    
    .stats__value {
        font-size: 3rem;
    }
    
    .features__title {
        font-size: 3rem;
    }
    
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .expert {
        flex-direction: row;
        padding: 3rem;
        gap: 3rem;
    }
    
    .expert__content {
        flex: 3;
    }
    
    .expert__profile {
        flex: 1;
        align-items: center;
        justify-content: center;
    }
    
    .expert__image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .cta__container {
        padding: 5rem;
        text-align: left;
    }
    
    .cta__inner {
        flex-direction: row;
    }
    
    .cta__title {
        font-size: 3.75rem;
    }
    
    .cta__buttons {
        flex-direction: row;
    }
    
    .cta__btn-primary,
    .cta__btn-secondary {
        width: auto;
    }
    
    .cta__info-card {
        width: 24rem;
    }
    
    .footer__main {
        flex-direction: row;
    }
    
    .footer__bottom {
        flex-direction: row;
    }
    
    .footer__copyright {
        text-align: left;
    }
}

/* ========================================
   Responsive Design - Desktop (lg: 1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .hero__title {
        font-size: 4rem;
    }

}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-overlay, .cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 17, 32, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
}

.cookie-box {
    background-color: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--slate-100);
}

.cookie-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-box h2 i {
    color: var(--teal-500);
}

.cookie-box p {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-buttons .cta-button.primary {
    background-color: var(--slate-900);
    color: var(--white);
}

.cookie-buttons .cta-button.primary:hover {
    background-color: var(--slate-800);
    transform: translateY(-2px);
}

.cookie-buttons .cta-button.secondary {
    background-color: var(--white);
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.cookie-buttons .cta-button.secondary:hover {
    border-color: var(--slate-300);
    background-color: var(--slate-50);
}

/* Cookie Revoke Button */
.cookie-revoke {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: var(--slate-600);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--slate-200);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 9998;
}

.cookie-revoke:hover {
    background-color: var(--slate-50);
    border-color: var(--slate-300);
}

.cookie-revoke i {
    color: var(--teal-500);
}
 .cookie-settings {
            display: none;
        }

/* Responsive - Tablet+ */
@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: row;
    }
    
    .cookie-buttons .cta-button {
        flex: 1;
    }
}
