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

:root {
    --primary-orange: #ff6c2c;
    --primary-yellow: #ffd700;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: rgba(255, 255, 255, 0.9);
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ff6c2c 0%, #ff8c42 30%, #ff9f5a 70%, #ffb366 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

/* Header when scrolled */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header.scrolled:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo {
    color: var(--primary-orange);
}

.header.scrolled .logo-title,
.header.scrolled .logo-subtitle {
    color: var(--primary-orange);
}

.header.scrolled .logo-subtitle {
    opacity: 0.8;
}

.header.scrolled .nav-link {
    color: var(--primary-orange);
}

.header.scrolled .btn-primary {
    color: var(--white);
}

.header.scrolled .logo-icon {
    stroke: currentColor;
    color: var(--primary-orange);
    filter: drop-shadow(0 2px 4px rgba(255, 108, 44, 0.2));
}

.header.scrolled .nav-link::after {
    background: var(--primary-orange);
}

.header.scrolled .nav-link:hover {
    background: rgba(255, 108, 44, 0.12);
    color: var(--primary-orange);
}

.header.scrolled .btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(255, 108, 44, 0.3);
}

.header.scrolled .btn-primary:hover {
    background: #e55a20;
    box-shadow: 0 8px 28px rgba(255, 108, 44, 0.4);
}

.header.scrolled .mobile-menu-toggle {
    background: rgba(255, 108, 44, 0.1);
    border-color: rgba(255, 108, 44, 0.2);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--primary-orange);
}

.header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.header.scrolled .dropdown-menu a {
    color: var(--text-dark);
}

.header.scrolled .dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 108, 44, 0.1) 0%, rgba(255, 108, 44, 0.05) 100%);
    color: var(--primary-orange);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 45px;
    height: 45px;
    stroke: var(--white);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.625rem 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Menu text stays white when not scrolled */
.header:not(.scrolled) .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Language Selector */
.language-selector {
    margin-left: 0.5rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-flag {
    font-size: 1.1rem;
}

.language-code {
    font-weight: 700;
    font-size: 0.9rem;
}

.language-menu {
    min-width: 180px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
}

.header.scrolled .nav-link {
    color: var(--primary-orange);
}

.header.scrolled .language-btn {
    color: var(--primary-orange);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    color: var(--white);
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.nav-item:hover .dropdown-arrow {
    transform: translateY(2px);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    list-style: none;
    min-width: 240px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.75rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-orange) 0%, #ff8c42 100%);
    transform: translateY(-50%);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 108, 44, 0.08) 0%, rgba(255, 108, 44, 0.03) 100%);
    padding-left: 2.25rem;
    transform: translateX(3px);
    color: var(--primary-orange);
}

.dropdown-menu a:hover::before {
    height: 50%;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 108, 44, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-hero-primary::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-hero-primary:hover::after {
    transform: translateX(4px);
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-hero-secondary:hover::before {
    left: 0;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-badge {
    background: #ff4444;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-text {
    font-weight: 500;
}

.promo-arrow {
    font-size: 1.2rem;
}

/* Hero Section */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-left {
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.625rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-description p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.9;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.partnership-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.dk-icon {
    background: var(--white);
    color: var(--primary-orange);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Hero Right - Graphics */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.large-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 20px rgba(255, 108, 44, 0.1),
        0 0 0 40px rgba(255, 108, 44, 0.05);
    position: relative;
    z-index: 1;
    animation: floatCircle 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.large-circle:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 25px rgba(255, 108, 44, 0.15),
        0 0 0 50px rgba(255, 108, 44, 0.08);
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.circle-content {
    text-align: center;
}

.dk-logo {
    font-size: 8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.15em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 1s ease-out 0.6s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.decorative-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-orange);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: floatDot 4s ease-in-out infinite;
}

.dot-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 15%;
    left: 5%;
    background: rgba(255, 255, 255, 0.9);
    width: 18px;
    height: 18px;
    animation-delay: 1s;
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Chat Widget */
.chat-widget {
    position: absolute;
    bottom: 20%;
    right: -10%;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    z-index: 10;
    color: var(--text-dark);
}

.chat-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.chat-status {
    font-size: 0.9rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.chat-team {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.team-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-chat {
    background: #4caf50;
    color: var(--white);
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
}

.btn-chat:hover {
    background: #45a049;
}

.btn-search {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #ddd;
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
}

.btn-search:hover {
    background: #f5f5f5;
}

.chat-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4caf50;
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    z-index: 1000;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-widget.hidden {
    display: none;
}

/* Domain Search Section */
.domain-search-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.domain-search-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.domain-search-form {
    margin-bottom: 2rem;
}

.domain-input {
    width: 100%;
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.domain-input:focus {
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 
        0 4px 20px rgba(255, 108, 44, 0.15),
        0 0 0 4px rgba(255, 108, 44, 0.1);
    transform: translateY(-2px);
}

.search-heading {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.domain-examples {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.domain-examples a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 500;
    position: relative;
}

.domain-examples a::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.domain-examples a:hover {
    color: #e55a20;
    transform: translateX(8px);
    padding-left: 1.5rem;
}

.domain-examples a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Features Section */
.features-section {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 5rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), rgba(255, 255, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.25rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Farver til ikoner */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #ff6c2c;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.3);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #ff6c2c 0%, #ff8c42 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 108, 44, 0.3);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #00bcd4 0%, #26c6da 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:nth-child(1):hover .feature-icon {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.feature-card:nth-child(2):hover .feature-icon {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}

.feature-card:nth-child(3):hover .feature-icon {
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.5);
}

.feature-card:nth-child(4):hover .feature-icon {
    box-shadow: 0 8px 30px rgba(156, 39, 176, 0.5);
}

.feature-card:nth-child(5):hover .feature-icon {
    box-shadow: 0 8px 30px rgba(255, 108, 44, 0.5);
}

.feature-card:nth-child(6):hover .feature-icon {
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.5);
}

.feature-card h3 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 1.5rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-icon {
    font-size: 1.2rem;
}

.footer-right {
    display: flex;
    gap: 1rem;
}

.footer-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.footer-btn:hover {
    background: #e55a20;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-right {
        order: -1;
    }

    .chat-widget {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header.scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .header.scrolled .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .header.scrolled .nav-link {
        color: var(--primary-orange);
    }

    .header.scrolled .nav-link:hover {
        background: rgba(255, 108, 44, 0.12);
        color: var(--primary-orange);
    }

    .header.scrolled .dropdown-menu {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .header.scrolled .dropdown-menu a {
        color: var(--text-dark);
    }

    .header.scrolled .dropdown-menu a:hover {
        background: rgba(255, 108, 44, 0.1);
        color: var(--primary-orange);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.08);
        margin: 0.5rem 0 0 0;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        color: var(--white);
        padding-left: 2rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .domain-search-section {
        padding: 2rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        width: 100%;
    }

    .footer-right {
        width: 100%;
        justify-content: center;
    }
}

/* Documentation Page Styles */
.docs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.docs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.docs-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.docs-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.docs-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.docs-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.docs-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.docs-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.docs-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.docs-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.docs-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.docs-card ol,
.docs-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.docs-card li {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.code-example {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-orange);
    overflow-x: auto;
}

.code-example code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white);
    white-space: pre-line;
}

@media (max-width: 768px) {
    .docs-title {
        font-size: 2.5rem;
    }

    .docs-section-title {
        font-size: 2rem;
    }

    .docs-card {
        padding: 1.5rem;
    }
}

/* Support Page Styles */
.support-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.support-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.support-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), rgba(255, 255, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.support-icon svg {
    width: 45px;
    height: 45px;
    stroke: currentColor;
}

/* Farver til support ikoner */
.support-card:nth-child(1) .support-icon {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.support-card:nth-child(2) .support-icon {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.support-card:nth-child(3) .support-icon {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.3);
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.support-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.support-link {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.support-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.support-form-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.support-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-orange);
    color: var(--white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.response-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.response-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.response-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.response-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.response-time {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.response-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Page Styles */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.about-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 108, 44, 0.3);
}

.about-icon svg {
    width: 45px;
    height: 45px;
    stroke: currentColor;
}

.about-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), rgba(255, 255, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 45px;
    height: 45px;
    stroke: currentColor;
}

/* Farver til value ikoner */
.value-card:nth-child(1) .value-icon {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #ff6c2c 0%, #ff8c42 100%);
    box-shadow: 0 4px 20px rgba(255, 108, 44, 0.3);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-orange);
}

.tech-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.tech-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.partnership-badge-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dk-icon-large {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 2rem;
}

.partnership-badge-large div {
    flex: 1;
}

.partnership-badge-large strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.partnership-badge-large p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-card p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .support-title,
    .about-title {
        font-size: 2.5rem;
    }

    .support-section-title,
    .about-section-title {
        font-size: 2rem;
    }

    .support-form-card,
    .about-card {
        padding: 2rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Pricing Page Styles */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.pricing-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.pricing-subtitle {
    font-size: 1.625rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out both;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 4rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.22) 100%);
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(255, 108, 44, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 108, 44, 0.2);
    transform: scale(1.08);
    z-index: 1;
}

.pricing-card.featured::before {
    height: 8px;
    background: linear-gradient(90deg, #ffd700, var(--primary-orange), #ffd700, var(--primary-orange));
    background-size: 300% 100%;
    animation: gradientShift 2s ease infinite;
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.1);
    box-shadow: 
        0 40px 90px rgba(255, 108, 44, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 108, 44, 0.3);
}

.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.plan-badge.featured-badge {
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-orange) 50%, #ffd700 100%);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.plan-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0.5rem;
}

.plan-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .plan-name {
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.95;
}

.price-period {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.85;
    margin-left: 0.25rem;
}

.plan-description {
    font-size: 1.15rem;
    opacity: 0.95;
    color: var(--white);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.95;
    font-weight: 500;
}

.plan-features li svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-orange);
    stroke-width: 3;
    flex-shrink: 0;
    margin-top: 0.15rem;
    filter: drop-shadow(0 2px 4px rgba(255, 108, 44, 0.3));
}

.btn-plan {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-plan:hover::before {
    width: 300px;
    height: 300px;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-plan-featured {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-orange);
    border: 3px solid var(--white);
    box-shadow: 0 8px 30px rgba(255, 108, 44, 0.4);
}

.btn-plan-featured::before {
    background: rgba(255, 108, 44, 0.1);
}

.btn-plan-featured:hover {
    background: var(--white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 108, 44, 0.5);
}

.pricing-faq {
    margin-top: 2rem;
}

.pricing-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-faq .faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.pricing-faq .faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-faq .faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pricing-faq .faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Domain Pricing Section */
.domain-pricing-section {
    margin-top: 5rem;
}

.domain-pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.domain-pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: var(--white);
}

.domain-pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.domain-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.domain-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.domain-category:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.domain-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

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

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.domain-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.domain-item:hover::before {
    transform: scaleY(1);
}

.domain-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.domain-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.domain-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    box-shadow: 
        0 4px 15px rgba(255, 108, 44, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.domain-item:hover .domain-price {
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(255, 108, 44, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.domain-note {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 4rem;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.domain-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.domain-note p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.95;
    margin: 0;
}

.domain-note strong {
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 768px) {
    .domain-pricing-container {
        grid-template-columns: 1fr;
    }

    .domain-pricing-title {
        font-size: 2rem;
    }

    .domain-category {
        padding: 2rem;
    }
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px) scale(1.02);
    }
}

@media (max-width: 640px) {
    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .plan-name {
        font-size: 1.75rem;
    }
}

/* Cookie Banner - Floating Box */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    width: calc(100% - 4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 108, 44, 0.25);
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 108, 44, 0.1);
    z-index: 9999;
    padding: 2rem;
    padding-top: 2.5rem;
    transform: translateY(150%) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatCookie 3s ease-in-out infinite;
}

.cookie-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 108, 44, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.cookie-close:hover {
    background: rgba(255, 108, 44, 0.2);
    transform: rotate(90deg) scale(1.1);
    color: #e55a20;
}

.cookie-banner.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

@keyframes floatCookie {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1);
    }
}

.cookie-banner.show {
    animation: floatCookie 3s ease-in-out infinite;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-title::before {
    content: '🍪';
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: rotateCookie 4s ease-in-out infinite;
}

@keyframes rotateCookie {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.cookie-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.cookie-btn-preferences {
    background: rgba(255, 108, 44, 0.08);
    color: var(--primary-orange);
    border: 2px solid rgba(255, 108, 44, 0.2);
}

.cookie-btn-preferences:hover {
    background: rgba(255, 108, 44, 0.15);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 108, 44, 0.2);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 108, 44, 0.4);
    border: 2px solid transparent;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #e55a20 0%, var(--primary-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 108, 44, 0.5);
}

.cookie-btn-secondary {
    background: rgba(255, 108, 44, 0.08);
    color: var(--primary-orange);
    border: 2px solid rgba(255, 108, 44, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 108, 44, 0.15);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 108, 44, 0.2);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 28px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 108, 44, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 108, 44, 0.15);
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1) translateY(0);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 2px solid rgba(255, 108, 44, 0.15);
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.05) 0%, rgba(255, 108, 44, 0.02) 100%);
    border-radius: 28px 28px 0 0;
}

.cookie-modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-modal-header h2::before {
    content: '⚙️';
    font-size: 1.75rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.cookie-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    opacity: 1;
}

.cookie-modal-body {
    padding: 2.5rem;
}

.cookie-modal-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 108, 44, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: rgba(255, 108, 44, 0.03);
    border-radius: 16px;
    border: 2px solid rgba(255, 108, 44, 0.1);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 108, 44, 0.06);
    border-color: rgba(255, 108, 44, 0.2);
    transform: translateX(4px);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.cookie-category-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cookie-category-header p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.75;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-slider {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    box-shadow: 0 2px 8px rgba(255, 108, 44, 0.3);
}

.cookie-toggle input:focus + .cookie-slider {
    box-shadow: 0 0 0 3px rgba(255, 108, 44, 0.2);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(22px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:disabled + .cookie-slider {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 2rem 2.5rem 2.5rem;
    border-top: 2px solid rgba(255, 108, 44, 0.15);
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.02) 0%, rgba(255, 108, 44, 0.05) 100%);
    border-radius: 0 0 28px 28px;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 0;
    }

    .cookie-modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

