/* ============================================
   Web-Planung.de - Modern Hosting Template
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #242424;
    --bg-tertiary: #2e2e2e;
    --bg-card: #282828;
    --bg-card-hover: #303030;
    
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    
    --accent-primary: #e63946;
    --accent-secondary: #ff4d5a;
    --accent-gradient: linear-gradient(135deg, #e63946, #ff4d5a);
    
    --border-color: #383838;
    --border-light: #484848;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 2px 16px rgba(230, 57, 70, 0.2);
    
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    --container-width: 1200px;
    --header-height: 72px;
}

/* Lucide Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-xl {
    width: 32px;
    height: 32px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary:hover {
    background: #c9303d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    border-color: var(--border-light);
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(42, 42, 42, 1) 50%, var(--bg-secondary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

/* Fixed Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    border-color: rgba(220, 53, 69, 0.4);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(220, 53, 69, 0.1);
}

.top-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.top-nav li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.top-nav li a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

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

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-tertiary);
    border-radius: 13px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 2px;
    background: var(--accent-primary);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.theme-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo img {
    height: 40px;
    transition: var(--transition-normal);
}

.logo:hover img {
    filter: brightness(1.1);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav > ul > li > a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav > ul > li > a:hover {
    color: var(--text-primary);
}

.main-nav > ul > li > a:hover::after {
    transform: scaleX(1);
}

.main-nav .btn-login {
    background: var(--accent-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
    transition: all 0.2s ease;
}

.main-nav .btn-login::after {
    display: none;
}

.main-nav .btn-login:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown > a .icon-sm {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown:hover > a .lucide-chevron-down {
    transform: rotate(180deg);
}

.dropdown .arrow {
    font-size: 0.6rem;
    transition: var(--transition-fast);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 1000;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.15s ease;
    position: relative;
}

.dropdown-menu a:hover {
    background: rgba(220, 53, 69, 0.1);
    color: var(--text-primary);
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a .icon-sm {
    color: var(--text-muted);
    transition: color 0.15s ease;
}

.dropdown-menu a:hover .icon-sm {
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - 46px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero with Background Image */
.hero--bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--bg-image .container {
    display: block;
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 1;
}

.hero-content--centered {
    max-width: 100%;
    text-align: center;
}

.hero-content--centered h1 {
    max-width: 100%;
}

.hero-content--centered p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content--centered .hero-buttons {
    justify-content: center;
}

.hero-content--centered .hero-trust {
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge .icon-sm {
    color: var(--accent-primary);
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero h1 .highlight {
    color: inherit;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo,
.feature-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.hero-svg,
.feature-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.hero-trust-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust-item i {
    color: var(--accent-primary);
}

/* Hero Visual Container */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual .hero-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero--with-image .hero-image {
    justify-content: flex-end;
}

/* Server Illustration - Minimal */
.server-illustration {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-illustration--minimal {
    width: 200px;
    height: 200px;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.server-unit {
    width: 120px;
    height: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    position: relative;
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.server-unit::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
}

/* Legacy server box */
.server-box {
    display: none;
}

.server-glow {
    display: none;
}

.hero-bg-pattern {
    display: none;
}

/* Section Badges */
.section-badge {
    display: none;
}

/* Services Section */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(220, 53, 69, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(220, 53, 69, 0.12),
        0 0 0 1px rgba(220, 53, 69, 0.2);
}

.service-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cube-illustration {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    transform: rotate(-10deg);
    transition: var(--transition-normal);
}

.cube-red {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
}

.cube-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.cube-green {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.service-card:hover .cube-illustration {
    transform: rotate(0deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-price {
    color: var(--text-secondary);
}

.service-price .price {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-price .period {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Simple Service Cards */
.service-card--simple {
    text-align: left;
    padding: 28px;
}

.service-card--simple .service-image {
    display: none;
}

.service-card-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding: 4px 8px;
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-card-icon {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: inline-flex;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    color: var(--accent-primary);
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.15);
}

/* Domain Search Section */
.domain-search {
    padding: 50px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.domain-search h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.domain-search .highlight {
    color: inherit;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.25s ease;
}

.search-box:focus-within {
    border-color: rgba(220, 53, 69, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(220, 53, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.search-box input {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box .btn {
    border-radius: var(--radius-xl);
    margin: 6px;
}

.domain-prices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.domain-price-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px 28px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.domain-price-item:hover {
    border-color: rgba(220, 53, 69, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(220, 53, 69, 0.08);
}

.domain-price-item .tld {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.domain-price-item .price {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.link-arrow {
    color: var(--accent-primary);
    font-weight: 500;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Feature Sections */
.feature-section {
    padding: 50px 0;
}

.dark-section {
    background: var(--bg-primary);
}

.light-section {
    background: var(--bg-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.feature-content h2 .icon {
    color: var(--accent-primary);
    vertical-align: middle;
    margin-right: 8px;
}

.feature-list {
    margin-bottom: 24px;
    list-style: none;
}

.feature-list li {
    color: var(--text-secondary);
    padding: 6px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 16px;
}

.feature-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image .feature-svg {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.feature-grid:hover .feature-svg {
    transform: translateY(-8px);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
}

/* Feature Visual - Minimal */
.feature-visual {
    width: 200px;
    height: 200px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Legacy Isometric (keep for backwards compat) */
.isometric-shop,
.isometric-laptop,
.isometric-email {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-box,
.laptop-box,
.email-box {
    width: 160px;
    height: 160px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.shop-box::before,
.laptop-box::before,
.email-box::before {
    content: '';
    display: none;
}

/* Features Mini Grid */
.features-grid-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid-section.dark-bg {
    background: var(--bg-primary);
}

.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-mini-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-mini-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-mini-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.why-us--minimal {
    padding: 60px 0;
}

.why-us h2 {
    font-size: 1.5rem;
    margin: 0 auto 40px;
    line-height: 1.4;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-us-grid--compact {
    gap: 16px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    border-color: rgba(220, 53, 69, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(220, 53, 69, 0.12),
        0 0 0 1px rgba(220, 53, 69, 0.2);
}

.why-card--minimal {
    padding: 24px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.why-card--minimal .why-icon {
    display: none;
}

.why-card-icon {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: inline-flex;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    color: var(--accent-primary);
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.15);
}

.why-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Control Panel Section */
.control-panel {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.control-panel .feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
}

.dashboard-frame {
    width: 100%;
    height: 300px;
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-card));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.dashboard-frame::after {
    content: '• • •';
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--accent-primary);
    letter-spacing: 4px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.testimonials--minimal {
    padding: 50px 0;
}

.testimonials h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.4s ease;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.slider-nav:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    text-align: left;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent-primary);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card--minimal {
    width: auto;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.testimonial-card:hover::before {
    opacity: 0.15;
}

.testimonial-card h4 {
    display: none;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-icon {
    display: none;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-author span,
.testimonial-author a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-item:hover {
    border-color: rgba(220, 53, 69, 0.4);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(220, 53, 69, 0.06);
}

.faq-item.active {
    border-color: rgba(220, 53, 69, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.22),
        0 0 24px rgba(220, 53, 69, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 0;
    background: transparent;
    position: relative;
}

.cta-section .container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    margin: 60px auto;
}

.cta-section--minimal {
    padding: 0;
}

.cta-section--minimal .container {
    margin: 50px auto;
}

.cta-content h2 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer--minimal {
    padding: 50px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand .logo img {
    height: 34px;
}

.footer-brand p,
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.social-links a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.payment-methods {
    display: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 0.75rem;
    margin-bottom: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.back-to-top:hover {
    background: #c82333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-stats {
        margin-top: 20px;
    }
    
    .server-illustration {
        width: 250px;
        height: 250px;
    }
    
    .services-grid,
    .features-mini-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-grid.reverse {
        direction: ltr;
    }
    
    .feature-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .features-mini-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-prices {
        flex-direction: column;
        align-items: center;
    }
    
    .domain-price-item {
        width: 100%;
        max-width: 200px;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-section .container {
        padding: 30px 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 15px 25px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        text-align: center;
    }
    
    .search-box .btn {
        margin: 6px;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

/* Base state - hidden */
.reveal-ready {
    opacity: 0;
    transform: translateY(40px);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed state - visible */
.reveal-ready.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation variants */
.reveal-ready[data-reveal="fade"] {
    transform: none;
}

.reveal-ready[data-reveal="slide-left"] {
    transform: translateX(-60px);
}

.reveal-ready[data-reveal="slide-left"].revealed {
    transform: translateX(0);
}

.reveal-ready[data-reveal="slide-right"] {
    transform: translateX(60px);
}

.reveal-ready[data-reveal="slide-right"].revealed {
    transform: translateX(0);
}

.reveal-ready[data-reveal="scale"] {
    transform: scale(0.9);
}

.reveal-ready[data-reveal="scale"].revealed {
    transform: scale(1);
}

.reveal-ready[data-reveal="flip"] {
    transform: perspective(600px) rotateX(15deg);
    transform-origin: center bottom;
}

.reveal-ready[data-reveal="flip"].revealed {
    transform: perspective(600px) rotateX(0);
}

/* Section reveal for backgrounds */
.section-ready {
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.section-ready.section-revealed {
    opacity: 1;
}

/* Stagger delays for grid items */
.pricing-grid .reveal-ready:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal-ready:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .reveal-ready:nth-child(3) { transition-delay: 0.2s; }

.benefits-grid .reveal-ready:nth-child(1) { transition-delay: 0s; }
.benefits-grid .reveal-ready:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .reveal-ready:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .reveal-ready:nth-child(4) { transition-delay: 0.3s; }
.benefits-grid .reveal-ready:nth-child(5) { transition-delay: 0.4s; }
.benefits-grid .reveal-ready:nth-child(6) { transition-delay: 0.5s; }

.feature-cards-grid .reveal-ready:nth-child(1) { transition-delay: 0s; }
.feature-cards-grid .reveal-ready:nth-child(2) { transition-delay: 0.15s; }
.feature-cards-grid .reveal-ready:nth-child(3) { transition-delay: 0.3s; }

.services-grid .reveal-ready:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal-ready:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal-ready:nth-child(3) { transition-delay: 0.2s; }

.product-features-grid .reveal-ready:nth-child(1) { transition-delay: 0s; }
.product-features-grid .reveal-ready:nth-child(2) { transition-delay: 0.08s; }
.product-features-grid .reveal-ready:nth-child(3) { transition-delay: 0.16s; }
.product-features-grid .reveal-ready:nth-child(4) { transition-delay: 0.24s; }
.product-features-grid .reveal-ready:nth-child(5) { transition-delay: 0.32s; }
.product-features-grid .reveal-ready:nth-child(6) { transition-delay: 0.4s; }

/* Hero content special animation */
.product-hero-content.reveal-ready {
    transform: translateX(-60px);
}

.product-hero-content.reveal-ready.revealed {
    transform: translateX(0);
}

.product-hero-image.reveal-ready {
    transform: translateX(60px);
}

.product-hero-image.reveal-ready.revealed {
    transform: translateX(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal-ready,
    .section-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .reveal-ready.revealed,
    .section-ready.section-revealed {
        opacity: 1;
        transform: none;
    }
}

