/* ============================================
   neoforma.at — Landing Page Stylesheet
   ============================================ */

/* --- Inter Font (lokal gehostet, DSGVO-konform) --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/inter/inter-v20-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/inter/inter-v20-latin-900.woff2') format('woff2');
}

/* --- CSS Custom Properties --- */
:root {
    /* Primärfarben */
    --primary: #02C393;
    --primary-dark: #019C72;
    --primary-light: #00D9A3;
    --accent: #00FFBA;
    /* Text-Farben */
    --text: #E5E7EB;
    --text-light: #9CA3AF;
    --text-lighter: #6B7280;
    --text-dark: #FFFFFF;
    /* Hintergrund-Farben */
    --bg: #0F172A;
    --bg-alt: #1E293B;
    --bg-section: #151F33;
    --bg-card: #1E293B;
    /* Borders */
    --border: #334155;
    --border-light: #475569;
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 20px 40px rgba(2, 195, 147, 0.2);
    --shadow-primary: 0 10px 40px rgba(1, 156, 114, 0.25);
    --shadow-accent: 0 10px 40px rgba(2, 195, 147, 0.25);
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    /* Container */
    --container-max: 1400px;
    --container-padding: 2rem;
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

/* --- Focus Visible --- */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

.container-narrow {
    max-width: 900px;
}

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* --- Gradient-Klassen für Icons --- */
.gradient-primary   { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.gradient-secondary { background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%); }
.gradient-accent    { background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%); }
.gradient-warm      { background: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.header-scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--text-dark);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px var(--primary);
    flex-shrink: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    transform-origin: center;
}

/* Mobile Nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 1rem 2rem 2rem;
    gap: 0.25rem;
}

.nav-mobile-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-mobile-link:hover {
    color: var(--primary);
}

/* Nav Open State */
body.nav-open .nav-mobile {
    display: flex;
}

body.nav-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.nav-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(at 0% 0%, rgba(2, 195, 147, 0.15) 0%, transparent 50%),
        radial-gradient(at 100% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(2, 195, 147, 0.12) 0%, transparent 50%),
        radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #050A0F 0%, #0F1419 50%, #0A0E14 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.8;
    filter: brightness(0.7) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 195, 147, 0.08) 0%,
        rgba(15, 23, 42, 0.55) 40%,
        rgba(10, 14, 20, 0.65) 70%,
        rgba(15, 23, 42, 0.75) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.5;
    opacity: 0.95;
    color: var(--text-light);
}

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

/* ============================================
   PARTICLES
   ============================================ */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(2, 195, 147, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(2, 195, 147, 0.9);
    animation: particleFloat 20s ease-in-out infinite;
}

.particle:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s;  animation-duration: 18s; --tx: 40px; --ty: -30px; }
.particle:nth-child(2)  { left: 20%; top: 80%; animation-delay: 3s;  animation-duration: 22s; --tx: -30px; --ty: 40px; }
.particle:nth-child(3)  { left: 35%; top: 40%; animation-delay: 6s;  animation-duration: 20s; --tx: 50px; --ty: 20px; }
.particle:nth-child(4)  { left: 50%; top: 60%; animation-delay: 9s;  animation-duration: 19s; --tx: -40px; --ty: -50px; }
.particle:nth-child(5)  { left: 65%; top: 30%; animation-delay: 12s; animation-duration: 21s; --tx: 30px; --ty: 40px; }
.particle:nth-child(6)  { left: 80%; top: 70%; animation-delay: 15s; animation-duration: 23s; --tx: -50px; --ty: 20px; }
.particle:nth-child(7)  { left: 90%; top: 45%; animation-delay: 2s;  animation-duration: 24s; --tx: 20px; --ty: -40px; }
.particle:nth-child(8)  { left: 15%; top: 55%; animation-delay: 5s;  animation-duration: 17s; --tx: -20px; --ty: 50px; }
.particle:nth-child(9)  { left: 70%; top: 15%; animation-delay: 8s;  animation-duration: 25s; --tx: 40px; --ty: 30px; }
.particle:nth-child(10) { left: 45%; top: 85%; animation-delay: 11s; animation-duration: 16s; --tx: -30px; --ty: -20px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-sans);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(1, 156, 114, 0.4);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-section);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-3xl) 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(2, 195, 147, 0.15);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(2, 195, 147, 0.3);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.service-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px var(--primary);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bg);
    box-shadow: 0 0 20px rgba(2, 195, 147, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

/* ============================================
   TRUST ITEMS
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(2, 195, 147, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    border: 2px solid rgba(2, 195, 147, 0.3);
}

.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   KONTAKT / CTA
   ============================================ */
.cta-container {
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
    background: var(--bg-alt);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(2, 195, 147, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    letter-spacing: 0;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-phone {
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-section);
    color: var(--text);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

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

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

.footer-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.footer-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column a {
    color: var(--text-light);
    transition: var(--transition-fast);
    text-decoration: none;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.875rem;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================ */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary);
}

.legal-content {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-3xl);
}

.legal-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.legal-card h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-card p,
.legal-card address {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.legal-card ul {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

.legal-card a {
    color: var(--primary);
}

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

.placeholder-warning {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}

.placeholder-warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #F59E0B;
}

.placeholder-warning-box p {
    color: #F59E0B;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

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

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

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    25% { transform: translate(var(--tx), var(--ty)); opacity: 1; }
    50% { transform: translate(calc(var(--tx) * -0.5), calc(var(--ty) * 1.5)); opacity: 0.4; }
    75% { transform: translate(calc(var(--tx) * 0.8), calc(var(--ty) * -0.3)); opacity: 0.8; }
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.75; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Scroll-Reveal Klassen */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero-Elemente bekommen sofortige Animation */
.hero .animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   PREFERS-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;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .particle {
        display: none;
    }
}

/* ============================================
   RESPONSIVE: Mobile (< 768px)
   ============================================ */
@media (max-width: 767.98px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .contact-phone {
        font-size: 1.2rem;
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: var(--primary);
        color: var(--bg);
        border-radius: var(--radius);
        text-align: center;
        width: 100%;
        font-weight: 700;
    }

    .contact-phone:hover {
        color: var(--bg);
        background: var(--primary-light);
    }

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

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

    .legal-card {
        padding: 1.5rem;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }
}

/* ============================================
   RESPONSIVE: Tablet (768px – 991px)
   ============================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ============================================
   RESPONSIVE: Desktop (≥ 992px)
   ============================================ */
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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