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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-icon {
    font-size: 1.5rem;
    color: #4F46E5;
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.brand-logo-footer {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4F46E5;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.launchpad-btn {
    background: #4F46E5;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.launchpad-btn:hover {
    background: #4338CA;
}

.nav-icons {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1E40AF 0%, #1E3A8A 30%, #000 70%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: logoFloat 6s ease-in-out infinite;
}

.hero-logo-image {
    width: 160px;
    height: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #1F2937;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.btn-secondary:hover {
    background: #4F46E5;
    color: #fff;
    transform: translateY(-2px);
}

/* Search Container */
.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-wrapper {
    display: flex;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.beast-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
    transition: background 0.3s ease;
}

.beast-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-btn {
    background: #4F46E5;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #4338CA;
}

.domain-pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

/* Hero Silhouettes */
.hero-silhouettes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.silhouette {
    position: absolute;
    opacity: 0.8;
    animation: silhouetteFloat 6s ease-in-out infinite;
}

.silhouette-left {
    width: 495px;
    height: 660px;
    left: 7%;
    top: 30%;
    background-image: url('/images/dr-tessema-sil.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    animation-delay: 0s;
}

.silhouette-right {
    width: 660px;
    height: 825px;
    right: 5%;
    top: 25%;
    background-image: url('/images/dr-female.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    clip-path: none;
    animation-delay: 2s;
    z-index: 3;
}


/* Chat Widget - Fixed Positioning */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    outline: none;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.5);
}

.chat-toggle:active {
    transform: scale(0.95);
}

.chat-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.chat-text {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chat-toggle:hover .chat-text {
    opacity: 1;
    transform: translateY(-50%) translateX(-8px);
}

.chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid white;
}

.chat-panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 360px;
    height: 520px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-panel.active {
    display: block;
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Responsive adjustments for chat widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-toggle {
        width: 56px;
        height: 56px;
    }
    
    .chat-icon {
        width: 20px;
        height: 20px;
    }
    
    .chat-panel {
        width: calc(100vw - 32px);
        right: -16px;
        height: 480px;
        bottom: 68px;
    }
    
    .chat-text {
        display: none;
    }
}

/* Chat Widget Content Styling */
.chat-header {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.assistant-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistant-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.assistant-info .status {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 300px;
}

.message {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-content {
    background: #F9FAFB;
    padding: 12px 16px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    max-width: 260px;
}

.message-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.message-content ul {
    margin: 8px 0;
    padding-left: 20px;
}

.message-content li {
    font-size: 14px;
    margin: 4px 0;
    color: #6B7280;
}

.chat-input-container {
    padding: 20px;
    border-top: 1px solid #E5E7EB;
}

.chat-suggestions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.suggestion-chip {
    background: #F3F4F6;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-chip:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-1px);
}

.chat-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.chat-input {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    resize: vertical;
    min-height: 20px;
    max-height: 80px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.send-button {
    background: #4F46E5;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.send-button:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
}

.send-button:not(:disabled):hover {
    background: #4338CA;
    transform: translateY(-1px);
}

.chat-disclaimer {
    font-size: 11px;
    color: #9CA3AF;
    text-align: center;
    line-height: 1.4;
}

.chat-disclaimer p {
    margin: 0;
}

/* Command Palette */
.command-palette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.command-palette.active {
    display: flex;
}

.command-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.command-modal {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    position: relative;
    z-index: 2001;
}

/* Section Styles */
.domain-game-section,
.connections-section,
.made-for-you-section,
.build-around-section,
.web-hosting-section {
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.domain-game-section {
    background: radial-gradient(ellipse at 80% 50%, #1E40AF 0%, #000 60%);
}

.connections-section {
    background: radial-gradient(ellipse at 20% 80%, #059669 0%, #000 60%);
}

.made-for-you-section {
    background: radial-gradient(ellipse at 70% 30%, #DC2626 0%, #000 60%);
}

.build-around-section {
    background: linear-gradient(135deg, #000 0%, #1A1A1A 100%);
}

.web-hosting-section {
    background: linear-gradient(135deg, #000 0%, #0F172A 100%);
}

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

.content-wrapper {
    max-width: 600px;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Profile Silhouettes and Scenes */
.profile-silhouette,
.figure-at-desk,
.profile-red-lit {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    opacity: 0.6;
    border: none;
    outline: none;
    z-index: 1;
    pointer-events: none;
}

.profile-silhouette {
    background-image: url('/images/dr-tessema-blue.png');
}

.figure-at-desk {
    background-image: url('/images/dr-tessema-green.png');
}

.profile-red-lit {
    background-image: url('/images/dr-tessema-red.png');
}


.illuminated-surface {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 400px;
    height: 200px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.3) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 20px;
    box-shadow: 0 0 100px rgba(5, 150, 105, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Command Palette Enhancements */
.command-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    gap: 1rem;
}

.command-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.ai-assistant-highlight {
    background: rgba(79, 70, 229, 0.1) !important;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 8px;
    margin: 0.5rem;
}

.ai-assistant-highlight:hover {
    background: rgba(79, 70, 229, 0.15) !important;
}

.command-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.command-item-content {
    flex: 1;
    min-width: 0;
}

.command-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.command-item-subtitle {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.2;
}

.command-item-action {
    font-size: 0.75rem;
    color: #9CA3AF;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.command-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.command-section:last-child {
    border-bottom: none;
}

.command-items {
    padding: 0.5rem 0;
}

.entic-icon, .clinic-icon, .medical-icon, .ai-tools-icon, .launchpad-icon {
    background: rgba(0, 0, 0, 0.08) !important;
}

/* Command Palette Modal Styles */
.command-palette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.command-modal {
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.command-header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.command-search-container {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

.search-icon {
    color: #6B7280;
    flex-shrink: 0;
}

.command-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: #000;
    outline: none;
    font-weight: 500;
}

.command-input::placeholder {
    color: #9CA3AF;
}

.command-shortcuts {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.command-shortcuts kbd {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    color: #6B7280;
}

.command-content {
    max-height: 400px;
    overflow-y: auto;
}

.command-footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1rem;
}

.command-tips {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6B7280;
}

.tip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tip kbd {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 0.125rem 0.25rem;
    font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-container {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-silhouette,
    .figure-at-desk,
    .profile-red-lit {
        position: relative;
        margin-top: 3rem;
        right: auto;
        top: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .domain-pricing {
        flex-direction: column;
        align-items: center;
    }
    
    .silhouette-left,
    .silhouette-right {
        display: none;
    }
}

/* Section Labels */
.section-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Build Around Section */
.build-scene {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 400px;
    height: 400px;
}

.geometric-elements {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.3), rgba(220, 38, 38, 0.3));
    border-radius: 20px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Web Hosting Section */
.hosting-card {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #14B8A6 0%, #0891B2 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #14B8A6 0%, #0891B2 50%, #1E40AF 100%);
}

.card-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Services Grid Section */
.services-grid-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}

.services-container:has(.spacemail-card) {
    grid-template-columns: 1fr 1fr 1fr;
}

.service-card {
    background: #1F2937;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.card-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.card-content {
    padding: 2rem;
    background: #1F2937;
}

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

.brand-icon {
    font-size: 1.5rem;
}

.brand-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* EasyWP Card */
.easywp-card .card-visual {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 50%, #8B5CF6 100%);
}

.geometric-shapes {
    position: relative;
    width: 200px;
    height: 200px;
}

.shape {
    position: absolute;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.shape.triangle.red {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #EF4444;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape.triangle.blue {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid #3B82F6;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape.circle {
    border-radius: 50%;
}

.shape.circle.yellow {
    width: 60px;
    height: 60px;
    background: #F59E0B;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

/* Starlight Card */
.starlight-card .card-visual {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.diamond-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.diamond-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 4px;
}

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

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* SpaceMail Card */
.spacemail-card .card-visual {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
}

.professional-silhouette {
    width: 120px;
    height: 180px;
    background: #000;
    opacity: 0.8;
    clip-path: polygon(30% 0%, 70% 0%, 75% 15%, 80% 30%, 75% 45%, 80% 60%, 75% 75%, 70% 90%, 65% 100%, 35% 100%, 30% 90%, 25% 75%, 20% 60%, 25% 45%, 20% 30%, 25% 15%);
    animation: silhouetteFloat 8s ease-in-out infinite;
}

/* Unbox Section */
.unbox-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1A1A2E 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.unbox-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-item.active {
    border-left-color: #4F46E5;
    background: rgba(79, 70, 229, 0.1);
}

.feature-item h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.discover-btn {
    background: transparent;
    color: #4F46E5;
    border: 2px solid #4F46E5;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.discover-btn:hover {
    background: #4F46E5;
    color: #fff;
    transform: translateY(-2px);
}

.domain-visualization {
    position: absolute;
    right: 5%;
    top: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.domain-name {
    color: #4F46E5;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #4F46E5;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
}

.service-icons {
    display: flex;
    gap: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.service-icon.green {
    background: #10B981;
    animation-delay: 0s;
}

.service-icon.purple {
    background: #8B5CF6;
    animation-delay: 2s;
}

.service-icon.blue {
    background: #3B82F6;
    animation-delay: 4s;
}

/* Alf AI Section */
.alf-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #0F172A 50%, #1E293B 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ai-card {
    position: absolute;
    right: 5%;
    top: 25%;
    width: 500px;
    height: 350px;
    background: linear-gradient(135deg, #1E40AF 0%, #0891B2 100%);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ai-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.ai-avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    max-width: 250px;
    text-align: center;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

/* Launchpad Section */
.launchpad-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.launchpad-interface {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 600px;
}

.command-palette {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
}

.command-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.command-modal {
    position: relative;
    max-width: 600px;
    margin: 10vh auto;
    background: #1f2937;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid #374151;
}

.command-header {
    border-bottom: 1px solid #374151;
    padding: 1rem;
    background: #1f2937;
}

.command-search-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    background: #374151;
    border-radius: 8px;
    padding: 0.75rem;
}

.search-icon {
    color: #9ca3af;
    width: 16px;
    height: 16px;
}

.command-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0;
    background: transparent;
    color: #f9fafb;
}

.command-input::placeholder {
    color: #9ca3af;
}

.command-shortcuts {
    display: flex;
    gap: 0.25rem;
}

.command-shortcuts kbd {
    background: #4b5563;
    border: 1px solid #6b7280;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    color: #d1d5db;
}

.command-content {
    max-height: 400px;
    overflow-y: auto;
    background: #1f2937;
}

.command-section {
    padding: 0.5rem 0;
}

.command-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.command-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #f9fafb;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    gap: 1rem;
    border-radius: 0;
}

.command-item:hover {
    background: #374151;
}

.suggestion-icon,
.helper-icon,
.page-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.domains-icon {
    color: #10B981;
}

.hosting-icon {
    color: #3B82F6;
}

.ai-icon {
    color: #8B5CF6;
}

.suggestion-content {
    flex: 1;
}

.suggestion-title {
    font-weight: 600;
    color: #000;
    margin-bottom: 0.125rem;
}

.suggestion-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
}

.ai-header,
.helpers-header,
.pages-header {
    padding: 0.5rem 1rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9CA3AF;
}

.ai-question {
    flex: 1;
    font-weight: 500;
    color: #000;
}

.helper-description,
.page-description {
    margin-left: auto;
    font-size: 0.875rem;
    color: #6B7280;
}

kbd {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Security Section */
.security-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.security-figure {
    position: absolute;
    right: 8%;
    top: 20%;
    width: 400px;
    height: 500px;
}

.professional-silhouette-detailed {
    width: 300px;
    height: 450px;
    background: #000;
    opacity: 0.85;
    clip-path: polygon(30% 0%, 70% 0%, 75% 8%, 78% 18%, 82% 28%, 80% 38%, 85% 48%, 80% 58%, 85% 68%, 80% 78%, 75% 88%, 70% 95%, 65% 100%, 35% 100%, 30% 95%, 25% 88%, 20% 78%, 25% 68%, 20% 58%, 25% 48%, 20% 38%, 22% 28%, 25% 18%, 25% 8%);
    animation: securityFloat 8s ease-in-out infinite;
    position: relative;
}

.professional-silhouette-detailed::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 25%;
    width: 50%;
    height: 25%;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    filter: blur(20px);
    animation: securityGlow 4s ease-in-out infinite alternate;
}

.security-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.security-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.security-btn:hover::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: shimmer 0.6s ease-out;
}

@keyframes securityFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-1deg);
    }
    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

@keyframes securityGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

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

/* Dr. Tessema's Expertise Section */
.expertise-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.expertise-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-text {
    z-index: 2;
}

.expertise-highlights {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.3);
}

.highlight-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 12px;
}

.highlight-content h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

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

.expertise-photo {
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: expertiseFloat 6s ease-in-out infinite;
    object-fit: cover;
}

@keyframes expertiseFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 35px 100px rgba(79, 70, 229, 0.2);
    }
}

/* Take Total Control Section */
.control-section {
    min-height: 100vh;
    background: #000;
    padding: 4rem 0;
}

.control-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.control-header {
    text-align: left;
    margin-bottom: 4rem;
}

.control-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.control-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 1rem;
}

.circle-icon {
    background: linear-gradient(135deg, #6B7280, #9CA3AF);
    border-radius: 50%;
}

.yinyang-icon {
    background: linear-gradient(135deg, #000, #fff);
    border-radius: 50%;
    position: relative;
}

.yinyang-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

.bell-icon {
    background: linear-gradient(135deg, #D1D5DB, #F3F4F6);
    clip-path: polygon(25% 0%, 75% 0%, 85% 100%, 15% 100%);
}

.hexagon-icon {
    background: linear-gradient(135deg, #9CA3AF, #D1D5DB);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.arrow-icon {
    background: linear-gradient(135deg, #6B7280, #9CA3AF);
    clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0% 60%, 60% 50%, 0% 40%);
}

.shield-icon {
    background: linear-gradient(135deg, #9CA3AF, #F3F4F6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* FAQ Section */
.faq-section {
    background: #000;
    padding: 4rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-radius: 12px 12px 0 0;
}

.faq-item:last-child {
    border-radius: 0 0 12px 12px;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.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 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(15, 23, 42, 0.8);
    padding: 4rem 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: #4F46E5;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.footer-column h4:first-child {
    margin-top: 0;
}

.footer-column ul {
    list-style: none;
    margin-bottom: 2rem;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4F46E5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.payment-security {
    display: flex;
    gap: 3rem;
}

.payment-options h5,
.certification h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.payment-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cert-badge,
.icann-badge,
.security-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.icann-badge {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.certification p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    text-align: right;
}

.spaceship-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.spaceship-logo .brand-icon {
    color: #4F46E5;
    font-size: 1.5rem;
}

.copyright,
.address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .services-container:has(.spacemail-card) {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-container:has(.spacemail-card) {
        grid-template-columns: 1fr;
    }
    
    .hosting-card,
    .build-scene,
    .domain-visualization,
    .ai-card,
    .launchpad-interface {
        position: relative;
        margin: 2rem auto 0;
        right: auto;
        top: auto;
    }
    
    .ai-card {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .launchpad-interface {
        width: 90%;
        max-width: 500px;
    }
    
    .security-figure {
        position: relative;
        margin: 2rem auto 0;
        right: auto;
        top: auto;
        width: 300px;
        height: 400px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-security {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-legal {
        text-align: left;
    }
    
    .spaceship-logo {
        justify-content: flex-start;
    }
    
    .expertise-photo {
        width: 100%;
        max-width: 300px;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-card {
        min-height: 400px;
    }
    
    .card-visual {
        min-height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .geometric-shapes {
        width: 150px;
        height: 150px;
    }
    
    .hosting-card {
        width: 300px;
        height: 200px;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}