/* ==================== VARIABLES ==================== */
:root {
    --bg-primary: #182C44;
    --bg-secondary: #0f1d2d;
    --bg-card: #1e3a5f;
    --bg-card-hover: #254a73;
    --accent-green: #00E5A0;
    --accent-green-dark: #00cc8e;
    --accent-blue: #3b82f6;
    --accent-yellow: #fbbf24;
    --accent-orange: #f97316;
    --accent-purple: #9333ea;
    --accent-cyan: #0ea5e9;
    --accent-red: #ef4444;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #d1d5db;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-xs: 8px;
    --transition: 0.3s ease;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
}

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

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

ul, ol {
    list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-xs);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.highlight {
    color: var(--accent-green);
}

/* ==================== HEADER ==================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top {
    background: var(--bg-secondary);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-customer-type {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 6px;
}

.customer-btn {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

.customer-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.customer-btn.active {
    color: #fff;
    background: var(--accent-green);
    box-shadow: 0 2px 8px rgba(0, 229, 160, 0.3);
}

.header-links {
    display: flex;
    gap: 25px;
}

.header-links a {
    color: var(--text-gray);
    transition: color 0.2s;
}

.header-links a:hover {
    color: var(--accent-green);
}

.header-main {
    padding: 15px 0;
}

.logo img {
    height: 35px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.2s;
}

.main-nav > li > a:hover {
    color: var(--accent-green);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

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

.dropdown-item a {
    display: block;
    padding: 12px 15px;
    border-radius: var(--border-radius-xs);
    transition: background 0.2s;
}

.dropdown-item a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-white);
}

.dropdown-item span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==================== SEASONAL EFFECTS ==================== */
.site-footer {
    position: relative;
}

.seasonal-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Winter Scene - Full Width */
.winter-scene .snow-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(200,220,240,0.7) 100%);
    clip-path: polygon(
        0% 100%,
        0% 70%,
        3% 55%,
        8% 65%,
        15% 50%,
        20% 60%,
        28% 45%,
        35% 55%,
        42% 40%,
        50% 50%,
        58% 35%,
        65% 48%,
        72% 38%,
        80% 52%,
        88% 42%,
        95% 55%,
        100% 45%,
        100% 100%
    );
}

/* Snowman - positioned on right side */
.snowman {
    position: absolute;
    bottom: 20px;
    right: 3%;
}

.snowman-body {
    width: 45px;
    height: 40px;
    background: radial-gradient(ellipse at 30% 30%, #fff 0%, #e0eaf4 80%);
    border-radius: 50%;
    position: relative;
}

.snowman-head {
    width: 32px;
    height: 32px;
    background: radial-gradient(ellipse at 30% 30%, #fff 0%, #e0eaf4 80%);
    border-radius: 50%;
    position: absolute;
    top: -26px;
    left: 6px;
}

.snowman-eyes {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.snowman-eyes .eye {
    width: 4px;
    height: 4px;
    background: #1e293b;
    border-radius: 50%;
}

.snowman-nose {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 10px solid #f97316;
}

.snowman-hat {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 16px;
    background: #1e293b;
    border-radius: 2px 2px 0 0;
}

.snowman-hat::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: #1e293b;
    border-radius: 2px;
}

.snowman-hat::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ef4444;
}

.snowman-scarf {
    position: absolute;
    top: 27px;
    left: 2px;
    width: 36px;
    height: 5px;
    background: #ef4444;
    border-radius: 2px;
}

.snowman-scarf::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    width: 6px;
    height: 12px;
    background: #ef4444;
    border-radius: 0 0 2px 2px;
}

.snowman-buttons {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.snowman-buttons span {
    width: 4px;
    height: 4px;
    background: #1e293b;
    border-radius: 50%;
}

.snowman-arms {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
}

.snowman-arms .arm {
    position: absolute;
    width: 22px;
    height: 3px;
    background: #92400e;
    border-radius: 2px;
}

.snowman-arms .arm-left {
    left: -18px;
    transform: rotate(-25deg);
}

.snowman-arms .arm-right {
    right: -18px;
    transform: rotate(25deg);
}

/* Pine Trees - distributed across width */
.winter-trees {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
}

.pine-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}

.pine-tree.tree-1 {
    left: 2%;
}

.pine-tree.tree-2 {
    left: 8%;
    transform: scale(0.6);
    bottom: -10px;
}

.pine-tree.tree-3 {
    left: 25%;
    transform: scale(0.75);
    bottom: -6px;
}

.pine-tree.tree-4 {
    left: 48%;
    transform: scale(0.65);
    bottom: -9px;
}

.pine-tree.tree-5 {
    right: 20%;
    transform: scale(0.8);
    bottom: -5px;
}

.pine-tree.tree-6 {
    right: 8%;
    transform: scale(0.55);
    bottom: -11px;
}

.pine-layer {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 18px solid #166534;
    margin-bottom: -8px;
    position: relative;
}

.pine-layer::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 20px;
    height: 5px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
}

.pine-trunk {
    width: 6px;
    height: 10px;
    background: #92400e;
    margin-top: -3px;
}

/* Snowflakes decoration - spread across */
.snowflakes-ground {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 5%;
}

.snowflakes-ground .flake {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
}

/* ========== SPRING SCENE ========== */
.spring-scene .grass-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    clip-path: polygon(
        0% 100%,
        0% 50%,
        3% 40%,
        6% 55%,
        9% 35%,
        12% 50%,
        15% 30%,
        18% 48%,
        21% 32%,
        24% 52%,
        27% 28%,
        30% 45%,
        33% 33%,
        36% 50%,
        39% 30%,
        42% 47%,
        45% 35%,
        48% 52%,
        51% 28%,
        54% 48%,
        57% 32%,
        60% 50%,
        63% 30%,
        66% 45%,
        69% 35%,
        72% 52%,
        75% 28%,
        78% 48%,
        81% 33%,
        84% 50%,
        87% 30%,
        90% 47%,
        93% 35%,
        96% 52%,
        100% 40%,
        100% 100%
    );
}

/* Spring Trees - Blühende Bäume */
.spring-scene .spring-trees {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    width: 100%;
}

.spring-scene .spring-tree {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spring-scene .spring-tree .tree-crown {
    width: 45px;
    height: 40px;
    background: radial-gradient(ellipse at center, #fce7f3 0%, #fbcfe8 40%, #f9a8d4 70%, #ec4899 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.spring-scene .spring-tree .tree-trunk {
    width: 8px;
    height: 18px;
    background: linear-gradient(90deg, #78350f, #92400e, #78350f);
    border-radius: 0 0 3px 3px;
    margin-top: -5px;
}

.spring-scene .spring-tree:nth-child(1) { left: 5%; }
.spring-scene .spring-tree:nth-child(2) { left: 25%; }
.spring-scene .spring-tree:nth-child(2) .tree-crown { width: 35px; height: 32px; background: radial-gradient(ellipse at center, #fff 0%, #fce7f3 40%, #fbcfe8 100%); }
.spring-scene .spring-tree:nth-child(2) .tree-trunk { width: 6px; height: 14px; }
.spring-scene .spring-tree:nth-child(3) { right: 30%; }
.spring-scene .spring-tree:nth-child(3) .tree-crown { width: 50px; height: 45px; }
.spring-scene .spring-tree:nth-child(4) { right: 8%; }
.spring-scene .spring-tree:nth-child(4) .tree-crown { width: 40px; height: 35px; background: radial-gradient(ellipse at center, #fff 0%, #fce7f3 50%, #f9a8d4 100%); }

.spring-scene .flowers {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 8%;
}

.spring-scene .flower {
    font-size: 20px;
    animation: flowerSway 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.spring-scene .flower:nth-child(1) { font-size: 18px; }
.spring-scene .flower:nth-child(2) { animation-delay: 0.5s; font-size: 22px; }
.spring-scene .flower:nth-child(3) { animation-delay: 1s; font-size: 16px; }
.spring-scene .flower:nth-child(4) { animation-delay: 1.5s; font-size: 20px; }
.spring-scene .flower:nth-child(5) { animation-delay: 2s; font-size: 17px; }
.spring-scene .flower:nth-child(6) { animation-delay: 0.3s; font-size: 21px; }
.spring-scene .flower:nth-child(7) { animation-delay: 0.8s; font-size: 15px; }
.spring-scene .flower:nth-child(8) { animation-delay: 1.3s; font-size: 19px; }

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

/* Butterflies */
.spring-scene .butterflies {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
}

.spring-scene .butterfly {
    position: absolute;
    font-size: 16px;
    animation: butterflyFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
}

.spring-scene .butterfly:nth-child(1) { left: 15%; animation-delay: 0s; bottom: 10px; }
.spring-scene .butterfly:nth-child(2) { left: 40%; animation-delay: 1.5s; bottom: 25px; font-size: 14px; }
.spring-scene .butterfly:nth-child(3) { left: 65%; animation-delay: 0.8s; bottom: 5px; }
.spring-scene .butterfly:nth-child(4) { left: 85%; animation-delay: 2s; bottom: 18px; font-size: 13px; }

@keyframes butterflyFloat {
    0%, 100% { transform: translateY(0) translateX(0) rotate(-5deg); }
    25% { transform: translateY(-12px) translateX(8px) rotate(5deg); }
    50% { transform: translateY(-5px) translateX(15px) rotate(-3deg); }
    75% { transform: translateY(-15px) translateX(5px) rotate(8deg); }
}

/* ========== SUMMER SCENE ========== */
/* Ocean/Sea */
.summer-scene .ocean {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.summer-scene .waves {
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(180deg, rgba(56,189,248,0.8) 0%, rgba(14,165,233,0.6) 100%);
    clip-path: polygon(
        0% 100%,
        0% 60%,
        5% 40%,
        10% 70%,
        15% 35%,
        20% 65%,
        25% 30%,
        30% 60%,
        35% 40%,
        40% 70%,
        45% 35%,
        50% 65%,
        55% 30%,
        60% 60%,
        65% 40%,
        70% 70%,
        75% 35%,
        80% 65%,
        85% 30%,
        90% 60%,
        95% 45%,
        100% 70%,
        100% 100%
    );
    animation: waveMove 2.5s ease-in-out infinite;
}

.summer-scene .waves-back {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(125,211,252,0.5) 0%, rgba(56,189,248,0.3) 100%);
    clip-path: polygon(
        0% 100%,
        0% 50%,
        8% 70%,
        16% 40%,
        24% 65%,
        32% 35%,
        40% 60%,
        48% 45%,
        56% 70%,
        64% 40%,
        72% 65%,
        80% 35%,
        88% 55%,
        100% 45%,
        100% 100%
    );
    animation: waveMove 3s ease-in-out infinite reverse;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

/* Sand/Beach */
.summer-scene .sand-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 40%, #f59e0b 100%);
    clip-path: polygon(
        0% 100%,
        0% 45%,
        5% 55%,
        10% 40%,
        15% 50%,
        20% 35%,
        25% 48%,
        30% 38%,
        35% 52%,
        40% 42%,
        45% 55%,
        50% 38%,
        55% 50%,
        60% 40%,
        65% 52%,
        70% 35%,
        75% 48%,
        80% 42%,
        85% 55%,
        90% 40%,
        95% 50%,
        100% 45%,
        100% 100%
    );
}

/* Palm Trees */
.summer-scene .palm-trees {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    width: 100%;
}

.summer-scene .palm-tree {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summer-scene .palm-tree .palm-trunk {
    width: 8px;
    height: 45px;
    background: linear-gradient(90deg, #78350f, #a16207, #78350f);
    border-radius: 4px;
    transform: rotate(-3deg);
}

.summer-scene .palm-tree .palm-leaves {
    position: absolute;
    top: -5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summer-scene .palm-tree .palm-leaf {
    width: 35px;
    height: 12px;
    background: linear-gradient(90deg, #16a34a, #22c55e, #16a34a);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
}

.summer-scene .palm-tree .palm-leaf:nth-child(1) { transform: rotate(-60deg) translateX(-8px); }
.summer-scene .palm-tree .palm-leaf:nth-child(2) { transform: rotate(-30deg) translateX(-4px); margin-top: -8px; }
.summer-scene .palm-tree .palm-leaf:nth-child(3) { transform: rotate(0deg); margin-top: -8px; }
.summer-scene .palm-tree .palm-leaf:nth-child(4) { transform: rotate(30deg) translateX(4px); margin-top: -8px; }
.summer-scene .palm-tree .palm-leaf:nth-child(5) { transform: rotate(60deg) translateX(8px); margin-top: -8px; }

.summer-scene .palm-tree:nth-child(1) { left: 3%; }
.summer-scene .palm-tree:nth-child(2) { left: 12%; }
.summer-scene .palm-tree:nth-child(2) .palm-trunk { height: 35px; width: 6px; }
.summer-scene .palm-tree:nth-child(2) .palm-leaf { width: 28px; height: 10px; }
.summer-scene .palm-tree:nth-child(3) { right: 10%; }
.summer-scene .palm-tree:nth-child(4) { right: 2%; }
.summer-scene .palm-tree:nth-child(4) .palm-trunk { height: 40px; width: 7px; transform: rotate(3deg); }

/* Sun */
.summer-scene .sun-icon {
    position: absolute;
    top: 3px;
    right: 8%;
    font-size: 28px;
    animation: sunPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
}

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

/* Beach umbrella */
.summer-scene .beach-umbrella {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
}

.summer-scene .umbrella-top {
    width: 50px;
    height: 25px;
    background: linear-gradient(90deg, #ef4444 0%, #ef4444 33%, #fff 33%, #fff 66%, #ef4444 66%, #ef4444 100%);
    border-radius: 50px 50px 0 0;
    border: 2px solid #dc2626;
    border-bottom: none;
}

.summer-scene .umbrella-pole {
    width: 4px;
    height: 30px;
    background: linear-gradient(90deg, #a16207, #ca8a04, #a16207);
    margin: 0 auto;
}

/* ========== AUTUMN SCENE ========== */
.autumn-scene .leaves-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #92400e 0%, #78350f 50%, #451a03 100%);
    clip-path: polygon(
        0% 100%,
        0% 50%,
        4% 60%,
        8% 45%,
        12% 58%,
        16% 42%,
        20% 55%,
        24% 40%,
        28% 52%,
        32% 45%,
        36% 58%,
        40% 42%,
        44% 55%,
        48% 38%,
        52% 52%,
        56% 45%,
        60% 58%,
        64% 40%,
        68% 55%,
        72% 42%,
        76% 58%,
        80% 45%,
        84% 55%,
        88% 40%,
        92% 52%,
        96% 48%,
        100% 55%,
        100% 100%
    );
}

/* Autumn Trees with visible trunks and sparse leaves */
.autumn-scene .autumn-trees {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    width: 100%;
}

.autumn-scene .autumn-tree {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autumn-scene .autumn-tree .tree-crown {
    width: 55px;
    height: 50px;
    background: radial-gradient(ellipse at center, #fbbf24 0%, #f59e0b 30%, #d97706 60%, #92400e 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.2);
}

/* Sparse/bare spots in crown */
.autumn-scene .autumn-tree .tree-crown::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 12px;
    background: transparent;
    border-radius: 50%;
    top: 10px;
    left: 8px;
}

.autumn-scene .autumn-tree .tree-trunk {
    width: 10px;
    height: 25px;
    background: linear-gradient(90deg, #57534e, #78716c, #57534e);
    border-radius: 0 0 3px 3px;
    margin-top: -8px;
}

/* Tree branches visible */
.autumn-scene .autumn-tree .branch {
    position: absolute;
    height: 3px;
    background: #57534e;
    border-radius: 2px;
}

.autumn-scene .autumn-tree .branch-left {
    width: 20px;
    bottom: 30px;
    left: -12px;
    transform: rotate(-30deg);
}

.autumn-scene .autumn-tree .branch-right {
    width: 18px;
    bottom: 35px;
    right: -10px;
    transform: rotate(25deg);
}

.autumn-scene .autumn-tree:nth-child(1) { left: 8%; }
.autumn-scene .autumn-tree:nth-child(1) .tree-crown { background: radial-gradient(ellipse at center, #fcd34d 0%, #fbbf24 30%, #f59e0b 70%, #b45309 100%); }

.autumn-scene .autumn-tree:nth-child(2) { left: 35%; }
.autumn-scene .autumn-tree:nth-child(2) .tree-crown { width: 55px; height: 50px; background: radial-gradient(ellipse at center, #f97316 0%, #ea580c 40%, #c2410c 100%); }
.autumn-scene .autumn-tree:nth-child(2) .tree-trunk { width: 10px; height: 24px; }

.autumn-scene .autumn-tree:nth-child(3) { right: 30%; }
.autumn-scene .autumn-tree:nth-child(3) .tree-crown { width: 60px; height: 55px; background: radial-gradient(ellipse at center, #fbbf24 0%, #d97706 40%, #92400e 80%, #78350f 100%); }
.autumn-scene .autumn-tree:nth-child(3) .tree-trunk { width: 12px; height: 28px; }

.autumn-scene .autumn-tree:nth-child(4) { right: 5%; }
.autumn-scene .autumn-tree:nth-child(4) .tree-crown { width: 50px; height: 45px; background: radial-gradient(ellipse at center, #ef4444 0%, #dc2626 30%, #b91c1c 60%, #7f1d1d 100%); }
.autumn-scene .autumn-tree:nth-child(4) .tree-trunk { width: 9px; height: 22px; }

/* Falling leaves animation */
.autumn-scene .fallen-leaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.autumn-scene .leaf {
    position: absolute;
    font-size: 18px;
    animation: leafFall 6s ease-in-out infinite;
    opacity: 0.9;
}

.autumn-scene .leaf:nth-child(1) { left: 8%; animation-delay: 0s; }
.autumn-scene .leaf:nth-child(2) { left: 18%; animation-delay: 1s; font-size: 14px; }
.autumn-scene .leaf:nth-child(3) { left: 28%; animation-delay: 2.5s; font-size: 16px; }
.autumn-scene .leaf:nth-child(4) { left: 38%; animation-delay: 0.5s; font-size: 20px; }
.autumn-scene .leaf:nth-child(5) { left: 52%; animation-delay: 1.8s; font-size: 15px; }
.autumn-scene .leaf:nth-child(6) { left: 65%; animation-delay: 3s; font-size: 17px; }
.autumn-scene .leaf:nth-child(7) { left: 78%; animation-delay: 0.8s; font-size: 19px; }
.autumn-scene .leaf:nth-child(8) { left: 90%; animation-delay: 2s; font-size: 14px; }

@keyframes leafFall {
    0% { 
        top: -20px; 
        transform: rotate(0deg) translateX(0); 
        opacity: 1;
    }
    25% { 
        transform: rotate(90deg) translateX(15px); 
    }
    50% { 
        transform: rotate(180deg) translateX(-10px); 
    }
    75% { 
        transform: rotate(270deg) translateX(20px); 
    }
    100% { 
        top: 75px; 
        transform: rotate(360deg) translateX(0); 
        opacity: 0.6;
    }
}

/* Ground leaves (static) */
.autumn-scene .ground-leaves {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 5%;
}

.autumn-scene .ground-leaf {
    font-size: 14px;
    transform: rotate(var(--rotation, 0deg));
    opacity: 0.8;
}

.autumn-scene .ground-leaf:nth-child(1) { --rotation: 15deg; }
.autumn-scene .ground-leaf:nth-child(2) { --rotation: -25deg; font-size: 12px; }
.autumn-scene .ground-leaf:nth-child(3) { --rotation: 45deg; }
.autumn-scene .ground-leaf:nth-child(4) { --rotation: -10deg; font-size: 16px; }
.autumn-scene .ground-leaf:nth-child(5) { --rotation: 30deg; font-size: 13px; }
.autumn-scene .ground-leaf:nth-child(6) { --rotation: -40deg; }

/* Hide on small screens */
@media (max-width: 768px) {
    .seasonal-scene {
        display: none;
    }
}

/* Footer bottom spacing for seasonal scene */
.site-footer .footer-bottom {
    padding-bottom: 50px;
}

.footer-container {
    position: relative;
    z-index: 2;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--bg-secondary);
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    height: 30px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

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

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-newsletter p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xs);
    color: var(--text-white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--border-radius-xs);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-green-dark);
}

.newsletter-note {
    font-size: 0.75rem !important;
    margin-top: 10px !important;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-copyright a {
    color: var(--accent-green);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

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

.footer-legal a:hover {
    color: var(--accent-green);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 40px;
}

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

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: -40px;
    margin-bottom: 50px;
}

/* ==================== HERO SECTION (Homepage) ==================== */
.hero-section {
    padding: 140px 40px 100px;
    background: var(--bg-primary);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-description strong {
    color: var(--text-white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
}

.trust-badge-icon {
    font-size: 1.8rem;
}

.trust-badge-text strong {
    display: block;
    font-size: 1rem;
}

.trust-badge-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Green Badges */
.green-badges {
    display: flex;
    gap: 15px;
}

.green-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--border-radius-sm);
    color: var(--accent-green);
    font-weight: 500;
    transition: var(--transition);
}

.green-badge:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-green);
}

/* Server Rack Animation */
.hero-visual {
    display: flex;
    justify-content: center;
}

.server-rack-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 420px;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.server-unit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-xs);
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-leds {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.led-green {
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: blink 2s infinite;
}

.led-blue {
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--accent-blue);
    animation: blink 2s infinite 0.5s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.server-body {
    flex: 1;
    display: flex;
    gap: 6px;
}

.server-slot {
    flex: 1;
    height: 22px;
    background: linear-gradient(180deg, #0a1628 0%, #050d18 100%);
    border-radius: 3px;
}

.server-indicators {
    display: flex;
    gap: 4px;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: blink 1.5s infinite;
}

.indicator:nth-child(2) { animation-delay: 0.3s; }
.indicator:nth-child(3) { animation-delay: 0.6s; }

/* ==================== DOMAIN SECTION ==================== */
.domain-section {
    padding: 80px 40px;
    background: var(--bg-secondary);
}

.domain-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.domain-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.domain-search-form {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 8px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    outline: none;
}

.domain-input::placeholder {
    color: var(--text-gray);
}

.domain-btn {
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    padding: 16px 30px;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.domain-btn:hover {
    background: var(--accent-green-dark);
}

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.tld-item {
    text-align: center;
}

.tld-extension {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tld-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 3px;
}

.tld-price {
    font-size: 1rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* ==================== PRODUCTS GRID ==================== */
.products-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

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

.products-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

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

.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 35px 25px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.product-icon svg {
    width: 40px;
    height: 40px;
}

.product-icon-label {
    font-size: 0.65rem;
    color: var(--accent-green);
    background: rgba(0, 229, 160, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
    display: inline-block;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-btn {
    display: inline-block;
    background: var(--accent-green);
    color: var(--bg-primary);
    padding: 12px 28px;
    border-radius: var(--border-radius-xs);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--accent-green-dark);
}

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.price-prefix {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-green);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.price-tax {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 3px;
}

/* ==================== GREEN IT SECTION ==================== */
.greenit-section {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.greenit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.greenit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.greenit-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.25;
}

.greenit-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.greenit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.greenit-stat {
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.stat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 12px;
    transition: var(--transition);
}

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

.stat-link::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

/* Datacenter Visual */
.datacenter-box {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.solar-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.solar-panel {
    width: 55px;
    height: 40px;
    background: linear-gradient(135deg, #1e4976 0%, #0d2840 50%, #1e4976 100%);
    border: 2px solid #2d6aa8;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.solar-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: solar-shine 3s ease-in-out infinite;
}

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

.energy-flow {
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, var(--accent-yellow), var(--accent-green));
    margin: 0 auto 15px;
    border-radius: 2px;
}

.server-building {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.mini-server {
    background: #0a1220;
    border-radius: 4px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 4px var(--accent-green);
}

.mini-led.blue {
    background: var(--accent-blue);
    box-shadow: 0 0 4px var(--accent-blue);
}

.ground-line {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), #22c55e, var(--accent-green));
    border-radius: 2px;
    margin-bottom: 15px;
}

.trees {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 20px;
}

.tree {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tree-top {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
}

.tree-trunk {
    width: 8px;
    height: 15px;
    background: #92400e;
    border-radius: 0 0 3px 3px;
    margin-top: -5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 15px;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav > li > a {
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item a {
        padding: 12px 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-btn {
        display: none;
    }
    
    .hero-container,
    .greenit-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual,
    .greenit-visual {
        order: -1;
    }
    
    .trust-badges,
    .green-badges {
        justify-content: center;
    }
    
    .greenit-stats {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        position: fixed;
        background: var(--bg-primary);
    }
    
    .header-main {
        padding: 8px 0;
    }
    
    .logo img {
        height: 26px;
    }
    
    .hero-section {
        padding: 80px 15px 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .trust-badges,
    .green-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .domain-search-form {
        flex-direction: column;
    }
    
    .domain-input {
        border-radius: 12px 12px 0 0;
    }
    
    .domain-btn {
        border-radius: 0 0 12px 12px;
    }
    
    .domain-tlds {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .section {
        padding: 50px 15px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .logo img {
        height: 24px;
    }
    
    .greenit-stats {
        grid-template-columns: 1fr;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .product-price {
        text-align: center;
    }
    
    .domain-tlds {
        gap: 15px;
    }
    
    .tld-extension {
        font-size: 1.2rem;
    }
}

/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}
