/* ============================================
   BEZ KARBONU KM - Professional Stylesheet
   Dekarbonizace motorů Kroměříž
   ============================================ */

/* --- CSS Variables --- */
:root {
    --brand-cyan: #00E5FF;
    --brand-blue: #00A8E8;
    --brand-dark: #0A1628;
    --brand-navy: #0D1B2A;
    --brand-accent: #00F0FF;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --glass-bg: rgba(13, 27, 42, 0.75);
    --glass-border: rgba(0, 229, 255, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--brand-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-accent);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Hexagon Pattern Background --- */
.hex-bg {
    background-color: var(--brand-dark);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15L30 0z' fill-opacity='0.03' fill='%2300E5FF'/%3E%3C/svg%3E");
}

/* --- Glass Effect --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* --- Neon Border --- */
.neon-border {
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.3), inset 0 0 5px rgba(0, 229, 255, 0.1);
}

/* --- H2 Hexagon --- */
.hexagon {
    width: 80px;
    height: 92px;
    background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(0,168,232,0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-cyan);
    position: relative;
    transition: all var(--transition-normal);
}

.hexagon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--brand-cyan), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    opacity: 0.5;
}

.hexagon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

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

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--brand-cyan), 0 0 10px var(--brand-cyan); }
    100% { box-shadow: 0 0 20px var(--brand-cyan), 0 0 30px var(--brand-cyan); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.animate-pulse-slow {
    animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* --- Utility Classes --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 8rem 0;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    color: var(--brand-dark);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-cyan);
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--brand-cyan);
}

/* --- Cards --- */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
}

/* --- Grid System --- */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Flex Utilities --- */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* --- Text Utilities --- */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white {
    color: var(--text-primary);
}

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

.text-muted {
    color: var(--text-muted);
}

.text-cyan {
    color: var(--brand-cyan);
}

.font-bold {
    font-weight: 700;
}

.font-display {
    font-family: 'Exo 2', sans-serif;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .text-5xl {
        font-size: 3.5rem;
    }
}

/* --- Spacing --- */
.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.nav-logo-text span {
    color: var(--brand-cyan);
}

.nav-logo-sub {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: -0.25rem;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--brand-cyan);
}

.nav-phone {
    display: none;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    color: var(--brand-dark);
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.nav-phone:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: var(--brand-cyan);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    color: var(--brand-cyan);
}

.mobile-menu a:last-child {
    border-bottom: none;
    color: var(--brand-cyan);
    font-weight: 700;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .nav-phone {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
}

.hero-bg-glow-1 {
    top: 20%;
    left: 20%;
    background: var(--brand-cyan);
    animation: pulse-slow 3s infinite;
}

.hero-bg-glow-2 {
    bottom: 20%;
    right: 20%;
    background: var(--brand-blue);
    animation: pulse-slow 3s infinite 1.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--brand-cyan);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-cyan);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.hero-trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-cyan);
}

.hero-visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--brand-dark), transparent);
}

.hero-h2-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-hex-float {
    position: absolute;
    top: -2rem;
    left: -2rem;
    z-index: 20;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--brand-cyan);
    animation: bounce 2s infinite;
}

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

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Benefits Section --- */
.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(0,168,232,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-normal);
}

.card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand-cyan);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* --- Process Section --- */
.process-timeline {
    position: relative;
}

.process-line {
    display: none;
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--brand-cyan), transparent);
    opacity: 0.5;
}

@media (min-width: 768px) {
    .process-line {
        display: block;
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--brand-dark);
    border: 2px solid var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-cyan);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Warning Box --- */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 1rem;
    border-left: 4px solid var(--brand-cyan);
    margin-top: 3rem;
}

.warning-box svg {
    width: 2rem;
    height: 2rem;
    color: var(--brand-cyan);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.warning-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.warning-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Corporate Section --- */
.corporate-section {
    background: var(--glass-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

@media (min-width: 768px) {
    .corporate-section {
        padding: 3rem;
    }
}

.corporate-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--brand-cyan);
    margin-bottom: 1.5rem;
}

.corporate-stats {
    background: var(--brand-dark);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.stat-row {
    margin-bottom: 1.5rem;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    color: var(--brand-cyan);
    font-weight: 700;
}

.stat-bar {
    width: 100%;
    height: 0.5rem;
    background: var(--brand-dark);
    border-radius: 9999px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-blue));
    border-radius: 9999px;
    transition: width 1s ease;
}

/* --- Pricing Section --- */
.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--brand-cyan);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    color: var(--brand-dark);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-card .subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-price .amount {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-price .currency {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-cyan);
    flex-shrink: 0;
}

/* --- FAQ Section --- */
.faq-item {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.faq-toggle:hover {
    background: rgba(0, 229, 255, 0.05);
}

.faq-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand-cyan);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-content {
    display: none;
    padding: 0 1.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: -0.5rem;
}

.faq-content.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.faq-content strong {
    color: var(--brand-cyan);
}

/* --- Contact Section --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-cyan);
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--brand-cyan);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    transition: opacity var(--transition-fast);
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item .hours {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-map {
    position: relative;
    min-height: 400px;
}

.contact-map-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(0,168,232,0.1));
    border-radius: 1rem;
    filter: blur(20px);
}

.contact-map-content {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: var(--glass-bg);
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.contact-map-content .hexagon {
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 9999px;
    color: var(--brand-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.map-link:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--brand-cyan);
}

.map-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

.footer-logo .hexagon {
    width: 40px;
    height: 46px;
    font-size: 0.875rem;
}

.footer-logo-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-cyan);
}

.footer-links .current-domain {
    color: var(--brand-cyan);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- Particles Canvas --- */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* --- Responsive Utilities --- */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }

    .text-center-mobile {
        text-align: center;
    }

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

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* --- Print Styles --- */
@media print {
    .navbar,
    .scroll-indicator,
    #particles-canvas,
    .hero-bg-glow {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
