/* ===================================
   THEISS IT- UND IMMO SERVICE
   MODERN TECH BLUE/CYAN THEME
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--surface);
    line-height: 1.6;
}

/* ===================================
   CSS VARIABLES - TECH BLUE/CYAN THEME
   =================================== */

:root {
    /* Primary - Deep Tech Blue */
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --primary-lighter: #2a4060;

    /* Accent - Vibrant Cyan */
    --accent: #00d4ff;
    --accent-light: #4de4ff;
    --accent-dark: #00a8cc;
    --accent-glow: rgba(0, 212, 255, 0.3);

    /* Secondary - Electric Blue */
    --secondary: #3b82f6;
    --secondary-light: #60a5fa;

    /* CTA - Success Green */
    --cta: #10b981;
    --cta-hover: #059669;

    /* Surfaces */
    --surface: #f8fafc;
    --surface-alt: #f1f5f9;
    --surface-white: #ffffff;
    --surface-dark: #0f172a;

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #e2e8f0;

    /* Borders */
    --border-color: #e2e8f0;
    --border-dark: #cbd5e1;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);

    /* Spacing System */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-accent: 0 4px 20px rgba(0, 212, 255, 0.25);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-4);
}

h3 {
    font-size: clamp(20px, 2.5vw, 26px);
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

/* ===================================
   LAYOUT
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--surface-alt);
}

.section-header {
    margin-bottom: var(--space-12);
}

.section-header.text-center {
    text-align: center;
}

.section-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-3);
    display: block;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.section-header.text-center .section-subtitle {
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--accent);
    transition: color 0.2s ease;
}

.logo:hover {
    color: var(--primary);
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-accent {
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    padding: 12px 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface-white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6);
}

.mobile-nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 18px;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--primary);
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 0;
}

.btn-ghost:hover {
    color: var(--accent);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-4);
}

.hero-content h1 {
    color: white;
    margin-bottom: var(--space-5);
}

.hero-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-8);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    margin-bottom: var(--space-10);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-light);
    font-size: 14px;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.floating-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.floating-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.floating-label {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        margin-top: var(--space-8);
    }

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ===================================
   STATS BAR
   =================================== */

.stats-bar {
    background: var(--surface-white);
    padding: var(--space-10) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-content {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: var(--space-5) 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */

.services-overview {
    padding: 100px 0;
    background: var(--surface-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--surface);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: var(--space-3);
    font-size: 20px;
}

.service-card p {
    margin-bottom: var(--space-4);
    font-size: 15px;
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.service-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.service-link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SMART HOME SECTION
   =================================== */

.smart-home-section {
    padding: 100px 0;
    background: var(--surface-alt);
}

.smart-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.smart-home-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.smart-home-content h2 {
    margin-bottom: var(--space-4);
}

.smart-home-content > p {
    margin-bottom: var(--space-8);
}

.smart-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

.smart-feature {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.smart-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.smart-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.smart-feature-text h4 {
    margin-bottom: var(--space-1);
    font-size: 16px;
}

.smart-feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .smart-home-grid {
        grid-template-columns: 1fr;
    }

    .smart-home-image {
        order: -1;
    }
}

/* ===================================
   DATA SECURITY SECTION
   =================================== */

.data-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.data-security-content h2 {
    margin-bottom: var(--space-4);
}

.data-security-content > p {
    margin-bottom: var(--space-8);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.security-feature {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.security-check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-check svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.security-text h4 {
    margin-bottom: var(--space-1);
    font-size: 16px;
}

.security-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.data-security-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .data-security-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: var(--surface-dark);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    color: white;
    margin-bottom: var(--space-4);
}

.footer-accent {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 300px;
}

.footer-column h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a,
.footer-links li {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--gradient-primary);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero-content .hero-tagline {
    color: var(--accent);
}

.page-hero-content h1 {
    color: white;
    margin-bottom: var(--space-4);
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
}

/* ===================================
   SERVICES DETAIL PAGES
   =================================== */

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.services-detail-grid.reverse {
    direction: rtl;
}

.services-detail-grid.reverse > * {
    direction: ltr;
}

.service-category-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.services-detail-content h2 {
    margin-bottom: var(--space-4);
}

.services-detail-content > p {
    margin-bottom: var(--space-6);
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.service-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.services-detail-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .services-detail-grid.reverse {
        direction: ltr;
    }

    .services-detail-image {
        order: -1;
    }
}

/* ===================================
   PREMIUM SECTION
   =================================== */

.premium-section {
    background: var(--gradient-primary);
    color: white;
}

.premium-section h2 {
    color: white;
}

.premium-label {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.premium-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
}

.premium-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.premium-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.premium-content {
    padding: var(--space-6);
}

.premium-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.premium-content > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--space-5);
    line-height: 1.6;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.premium-features li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.premium-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 1024px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.product-category-card {
    background: var(--surface-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.product-category-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.product-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.product-category-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-2);
}

.product-category-card p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    margin-bottom: var(--space-4);
}

.about-content > p {
    margin-bottom: var(--space-4);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* CEO Section */
.ceo-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
}

.ceo-content h2 {
    margin-bottom: var(--space-2);
}

.ceo-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-6);
}

.ceo-content > p {
    margin-bottom: var(--space-4);
}

.ceo-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    border-left: 4px solid var(--accent);
    padding-left: var(--space-6);
    margin: var(--space-8) 0;
}

.ceo-contact {
    display: flex;
    gap: var(--space-4);
}

.ceo-image {
    display: flex;
    justify-content: center;
}

.ceo-image-placeholder {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-image-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .ceo-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-content {
        order: 1;
    }

    .ceo-quote {
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-left: 0;
        padding-top: var(--space-6);
    }

    .ceo-contact {
        justify-content: center;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.value-card {
    background: var(--surface-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: var(--space-3);
}

.value-card p {
    font-size: 15px;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Overview Grid */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-overview-card {
    background: var(--surface-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    border-color: var(--accent);
}

.service-overview-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.service-overview-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-overview-card h4 {
    font-size: 16px;
    margin-bottom: var(--space-2);
}

.service-overview-card p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.contact-card {
    background: var(--surface-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: var(--space-2);
}

.contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.contact-form-wrapper {
    background: var(--surface-white);
    padding: var(--space-10);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: var(--space-8);
}

.form-header h2 {
    margin-bottom: var(--space-2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    background: var(--surface);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface-white);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
}

.form-checkbox a {
    color: var(--accent);
}

/* Contact Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.info-box {
    background: var(--surface-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.info-box.highlight {
    background: var(--primary);
    border-color: var(--primary);
}

.info-box.highlight h3 {
    color: white;
}

.info-box.highlight p {
    color: var(--text-light);
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: var(--space-3);
}

.info-box p {
    font-size: 14px;
    margin-bottom: var(--space-4);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
}

.phone-link svg {
    width: 24px;
    height: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
    font-size: 14px;
}

.service-list svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--surface);
}

.faq-question h4 {
    font-size: 16px;
    margin: 0;
}

.faq-toggle {
    color: var(--accent);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-5);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-section {
    padding: 40px 0 100px;
    background: var(--surface);
}

.legal-container {
    max-width: 900px;
    background: var(--surface-white);
    padding: var(--space-12);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-6);
    border-bottom: 3px solid var(--accent);
}

.legal-container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    margin-top: var(--space-10);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border-color);
    color: var(--primary);
}

.legal-container h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.legal-container p {
    margin-bottom: var(--space-5);
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin-left: var(--space-6);
    margin-bottom: var(--space-6);
    list-style: disc;
}

.legal-container li {
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.legal-table tr {
    border-bottom: 1px solid var(--border-color);
}

.legal-table tr:last-child {
    border-bottom: none;
}

.legal-table td {
    padding: var(--space-5);
    vertical-align: top;
    line-height: 1.6;
}

.legal-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    width: 200px;
    background: var(--surface);
}

@media (max-width: 768px) {
    .legal-container {
        padding: var(--space-6);
    }

    .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table td:first-child {
        width: 100%;
        background: var(--surface);
        padding-bottom: var(--space-2);
    }

    .legal-table td:last-child {
        padding-top: var(--space-2);
    }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.section-animatable {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-animatable.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.service-card,
.value-card,
.contact-card,
.premium-card,
.product-category-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.service-card.visible,
.value-card.visible,
.contact-card.visible,
.premium-card.visible,
.product-category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }

/* ===================================
   RESPONSIVE TYPOGRAPHY
   =================================== */

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-4);
    }
}
