/* ==========================================================================
   FensterEinbau - Main Stylesheet
   Window Installation Service Vienna & Austria
   ========================================================================== */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Primary Colors */
    --fe-primary: #1e40af;
    --fe-primary-dark: #1e3a8a;
    --fe-primary-light: #3b82f6;

    /* Secondary Colors */
    --fe-secondary: #f59e0b;
    --fe-secondary-dark: #d97706;
    --fe-secondary-light: #fbbf24;

    /* Accent Colors */
    --fe-accent: #10b981;
    --fe-accent-dark: #059669;
    --fe-accent-light: #34d399;

    /* Neutral Colors */
    --fe-white: #ffffff;
    --fe-gray-50: #f9fafb;
    --fe-gray-100: #f3f4f6;
    --fe-gray-200: #e5e7eb;
    --fe-gray-300: #d1d5db;
    --fe-gray-400: #9ca3af;
    --fe-gray-500: #6b7280;
    --fe-gray-600: #4b5563;
    --fe-gray-700: #374151;
    --fe-gray-800: #1f2937;
    --fe-gray-900: #111827;

    /* Semantic Colors */
    --fe-success: #10b981;
    --fe-warning: #f59e0b;
    --fe-error: #ef4444;
    --fe-info: #3b82f6;

    /* Background Colors */
    --fe-bg-light: #fafaf8;
    --fe-bg-dark: #1e3a5f;
    --fe-bg-darker: #0f172a;

    /* Typography */
    --fe-font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --fe-font-size-xs: 0.75rem;
    --fe-font-size-sm: 0.875rem;
    --fe-font-size-base: 1rem;
    --fe-font-size-lg: 1.125rem;
    --fe-font-size-xl: 1.25rem;
    --fe-font-size-2xl: 1.5rem;
    --fe-font-size-3xl: 1.875rem;
    --fe-font-size-4xl: 2.25rem;
    --fe-font-size-5xl: 3rem;

    /* Spacing */
    --fe-spacing-xs: 0.25rem;
    --fe-spacing-sm: 0.5rem;
    --fe-spacing-md: 1rem;
    --fe-spacing-lg: 1.5rem;
    --fe-spacing-xl: 2rem;
    --fe-spacing-2xl: 3rem;
    --fe-spacing-3xl: 4rem;
    --fe-spacing-4xl: 6rem;

    /* Border Radius */
    --fe-radius-sm: 0.25rem;
    --fe-radius-md: 0.5rem;
    --fe-radius-lg: 0.75rem;
    --fe-radius-xl: 1rem;
    --fe-radius-2xl: 1.5rem;
    --fe-radius-full: 9999px;

    /* Shadows */
    --fe-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --fe-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --fe-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --fe-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --fe-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --fe-transition-fast: 150ms ease;
    --fe-transition-base: 300ms ease;
    --fe-transition-slow: 500ms ease;

    /* Z-index */
    --fe-z-dropdown: 100;
    --fe-z-sticky: 500;
    --fe-z-fixed: 1000;
    --fe-z-modal: 1100;
    --fe-z-tooltip: 1200;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--fe-font-family);
    font-size: var(--fe-font-size-base);
    line-height: 1.6;
    color: var(--fe-gray-800);
    background-color: var(--fe-white);
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Container & Utilities
   ========================================================================== */
.fe-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--fe-spacing-lg);
}

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

.fe-section-light {
    background-color: var(--fe-bg-light);
}

.fe-section-dark {
    background-color: var(--fe-bg-dark);
    color: var(--fe-white);
}

/* Section Header */
.fe-section-header {
    text-align: center;
    margin-bottom: var(--fe-spacing-3xl);
}

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

.fe-section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--fe-spacing-sm);
    background: linear-gradient(135deg, var(--fe-primary), var(--fe-primary-light));
    color: var(--fe-white);
    padding: var(--fe-spacing-sm) var(--fe-spacing-lg);
    border-radius: var(--fe-radius-full);
    font-size: var(--fe-font-size-sm);
    font-weight: 600;
    margin-bottom: var(--fe-spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fe-section-title {
    font-size: var(--fe-font-size-4xl);
    font-weight: 700;
    color: var(--fe-gray-900);
    margin-bottom: var(--fe-spacing-md);
    line-height: 1.2;
}

.fe-section-dark .fe-section-title {
    color: var(--fe-white);
}

.fe-section-desc {
    font-size: var(--fe-font-size-lg);
    color: var(--fe-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.fe-section-subtitle {
    font-size: var(--fe-font-size-lg);
    color: var(--fe-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.fe-section-dark .fe-section-subtitle {
    color: var(--fe-gray-300);
}

/* Buttons */
.fe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fe-spacing-sm);
    padding: var(--fe-spacing-md) var(--fe-spacing-xl);
    font-size: var(--fe-font-size-base);
    font-weight: 600;
    border-radius: var(--fe-radius-lg);
    transition: all var(--fe-transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.fe-btn-primary {
    background: linear-gradient(135deg, var(--fe-primary), var(--fe-primary-dark));
    color: var(--fe-white);
}

.fe-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--fe-shadow-lg);
}

.fe-btn-secondary {
    background: linear-gradient(135deg, var(--fe-secondary), var(--fe-secondary-dark));
    color: var(--fe-white);
}

.fe-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--fe-shadow-lg);
}

.fe-btn-outline {
    background: transparent;
    border-color: var(--fe-primary);
    color: var(--fe-primary);
}

.fe-btn-outline:hover {
    background: var(--fe-primary);
    color: var(--fe-white);
}

.fe-btn-white {
    background: var(--fe-white);
    color: var(--fe-primary);
}

.fe-btn-white:hover {
    background: var(--fe-gray-100);
    transform: translateY(-2px);
}

.fe-btn-lg {
    padding: var(--fe-spacing-lg) var(--fe-spacing-2xl);
    font-size: var(--fe-font-size-lg);
}

/* ==========================================================================
   Header
   ========================================================================== */
/* ==========================================================================
   Header - Unique Design with Amber/Slate Palette
   ========================================================================== */
.wm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s ease;
}

.wm-header.is-scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Progress Bar */
.wm-header-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.wm-header-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    transition: width 0.15s ease-out;
}

/* Header Container */
.wm-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

/* Logo */
.wm-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.wm-logo-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wm-logo:hover .wm-logo-symbol {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.wm-logo-window {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 3px;
}

.wm-logo-pane {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.wm-logo:hover .wm-logo-pane:nth-child(1),
.wm-logo:hover .wm-logo-pane:nth-child(4) {
    background: rgba(255, 255, 255, 1);
}

.wm-logo-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wm-logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.wm-logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Navigation */
.wm-nav {
    justify-self: center;
}

.wm-nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wm-nav-link {
    position: relative;
    display: block;
    padding: 0.625rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.wm-nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 1.125rem;
    right: 1.125rem;
    height: 2px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.wm-nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header Actions */
.wm-header-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.wm-btn-blog {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.wm-btn-blog img {
    opacity: 0.8;
    filter: brightness(0) invert(1);
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.wm-btn-blog:hover {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.wm-btn-blog:hover img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(70%) sepia(50%) saturate(1500%) hue-rotate(360deg) brightness(100%) contrast(95%);
}

.wm-btn-call {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wm-btn-call:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.wm-btn-call-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.wm-btn-call-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.wm-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    transition: all 0.3s ease;
}

.wm-btn-cta img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.wm-btn-cta:hover {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
    transform: translateY(-2px);
}

.wm-btn-cta:hover img {
    transform: translateX(3px);
}

/* Mobile Toggle */
.wm-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wm-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.wm-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.wm-nav-toggle.is-active .wm-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.wm-nav-toggle.is-active .wm-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.wm-nav-toggle.is-active .wm-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Overlay */
.wm-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wm-nav-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   Hero Section - Clean Full-Width Design
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Background */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 58, 95, 0.75) 50%,
        rgba(15, 23, 42, 0.85) 100%
    );
}

/* Inner Container */
.hero__inner {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 2rem 100px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Content */
.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 2rem;
    width: fit-content;
}

.hero__badge img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero__badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* Title */
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: #60a5fa;
}

/* Description */
.hero__desc {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

/* Actions */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero__btn--primary {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.hero__btn--primary:hover {
    background: #2563eb;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.hero__btn--primary img {
    filter: brightness(0) invert(1);
}

.hero__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stats Bar */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: auto;
}

.hero__stat {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: background 0.3s ease;
}

.hero__stat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero__stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.hero__stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fe-hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Visual */
.fe-hero-visual {
    position: relative;
}

.fe-hero-card {
    background: var(--fe-white);
    border-radius: var(--fe-radius-2xl);
    padding: var(--fe-spacing-xl);
    box-shadow: var(--fe-shadow-2xl);
}

.fe-hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--fe-spacing-md);
    margin-bottom: var(--fe-spacing-lg);
    padding-bottom: var(--fe-spacing-lg);
    border-bottom: 1px solid var(--fe-gray-200);
}

.fe-hero-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fe-primary), var(--fe-primary-light));
    border-radius: var(--fe-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-hero-card-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.fe-hero-card-title {
    font-size: var(--fe-font-size-lg);
    font-weight: 700;
    color: var(--fe-gray-900);
}

.fe-hero-card-list {
    display: flex;
    flex-direction: column;
    gap: var(--fe-spacing-md);
}

.fe-hero-card-item {
    display: flex;
    align-items: center;
    gap: var(--fe-spacing-md);
    padding: var(--fe-spacing-md);
    background: var(--fe-gray-50);
    border-radius: var(--fe-radius-lg);
}

.fe-hero-card-item img {
    width: 24px;
    height: 24px;
}

.fe-hero-card-item span {
    font-size: var(--fe-font-size-sm);
    color: var(--fe-gray-700);
}

/* Floating Elements */
.fe-hero-floating {
    position: absolute;
    background: var(--fe-white);
    border-radius: var(--fe-radius-xl);
    padding: var(--fe-spacing-md) var(--fe-spacing-lg);
    box-shadow: var(--fe-shadow-xl);
    animation: feFloat 3s ease-in-out infinite;
}

.fe-hero-floating-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.fe-hero-floating-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: 1s;
}

.fe-hero-floating-3 {
    bottom: 5%;
    right: 5%;
    animation-delay: 2s;
}

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

/* ==========================================================================
   Trust Section - Modern Glassmorphic Design
   ========================================================================== */
.trust {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trust::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trust__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.trust__header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust__label {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.trust__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust__card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.trust__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.trust__card:hover::before {
    transform: scaleX(1);
}

.trust__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.trust__card:hover .trust__icon {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    transform: scale(1.1) rotate(5deg);
}

.trust__icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(1000%) hue-rotate(200deg);
    transition: filter 0.3s ease;
}

.trust__card:hover .trust__icon img {
    filter: brightness(0) invert(1);
}

.trust__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.trust__card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Stats Row */
.trust__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.trust__stats::before {
    content: "";
    position: absolute;
    inset: 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='%23ffffff' 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");
    pointer-events: none;
}

.trust__stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust__stat-num {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust__stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Trust Section Responsive */
@media (max-width: 1024px) {
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust {
        padding: 4rem 0;
    }

    .trust__header {
        margin-bottom: 2rem;
    }

    .trust__grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .trust__card {
        padding: 1.5rem 1rem;
    }

    .trust__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .trust__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trust {
        padding: 3rem 0;
    }

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

    .trust__card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 1.25rem;
    }

    .trust__icon {
        margin: 0;
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .trust__card-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .trust__card-text {
        font-size: 0.85rem;
    }

    .trust__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .trust__stat-num {
        font-size: 1.75rem;
    }

    .trust__stat-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .trust {
        padding: 2.5rem 0;
    }

    .trust__container {
        padding: 0 1rem;
    }

    .trust__header {
        margin-bottom: 1.5rem;
    }

    .trust__label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .trust__title {
        font-size: 1.5rem;
    }

    .trust__grid {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .trust__card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .trust__icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 0.75rem;
    }

    .trust__icon img {
        width: 24px;
        height: 24px;
    }

    .trust__card-title {
        font-size: 0.9rem;
    }

    .trust__card-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* ==========================================================================
   Services Section - Bento Grid Design
   ========================================================================== */
.services {
    padding: 5rem 0;
    background: #fff;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services__label {
    display: inline-block;
    background: #f1f5f9;
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.services__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
}

.services__desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.25rem;
}

/* Base Card */
.services__card {
    background: #f8fafc;
    border-radius: 1.25rem;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.services__card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services__card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: transparent;
}

.services__card:hover::before {
    transform: scaleX(1);
}

/* Large Card */
.services__card--lg {
    grid-column: span 2;
}

/* Featured Card */
.services__card--featured {
    background: linear-gradient(145deg, #1e3a5f 0%, #0f172a 100%);
    border-color: transparent;
}

.services__card--featured:hover {
    background: linear-gradient(145deg, #234b77 0%, #1e293b 100%);
}

.services__card--featured::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.services__card--featured .services__card-title,
.services__card--featured .services__card-text {
    color: #fff;
}

.services__card--featured .services__list li {
    color: rgba(255, 255, 255, 0.85);
}

.services__card--featured .services__list li::before {
    color: #fbbf24;
}

.services__card--featured .services__num {
    color: rgba(255, 255, 255, 0.2);
}

.services__card--featured .services__icon {
    background: rgba(255, 255, 255, 0.1);
}

.services__card--featured .services__icon img {
    filter: brightness(0) invert(1);
}

/* Number */
.services__num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    transition: color 0.3s ease;
}

.services__card:hover .services__num {
    color: #cbd5e1;
}

/* Badge */
.services__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
}

/* Card Content */
.services__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

/* Icon */
.services__icon {
    width: 52px;
    height: 52px;
    background: #e0f2fe;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.services__card:hover .services__icon {
    background: #3b82f6;
    transform: scale(1.05);
}

.services__icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(800%) hue-rotate(200deg);
    transition: filter 0.3s ease;
}

.services__card:hover .services__icon img {
    filter: brightness(0) invert(1);
}

/* Title & Text */
.services__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.services__card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 1rem;
}

/* List */
.services__list {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.services__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
}

.services__list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services__card--lg {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }

    .services__header {
        margin-bottom: 2.5rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
        gap: 1rem;
    }

    .services__card--lg {
        grid-column: span 2;
    }

    .services__card {
        padding: 1.5rem;
    }

    .services__num {
        font-size: 2rem;
    }

    .services__icon {
        width: 46px;
        height: 46px;
    }

    .services__icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .services__card--lg {
        grid-column: span 1;
    }

    .services__card {
        padding: 1.25rem;
    }

    .services__card-content {
        margin-top: 1.5rem;
    }

    .services__num {
        font-size: 1.75rem;
        top: 1rem;
        right: 1rem;
    }

    .services__badge {
        top: 1rem;
        left: 1rem;
    }

    .services__card-title {
        font-size: 1rem;
    }

    .services__card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .services {
        padding: 2.5rem 0;
    }

    .services__container {
        padding: 0 1rem;
    }

    .services__header {
        margin-bottom: 2rem;
    }

    .services__label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .services__title {
        font-size: 1.5rem;
    }

    .services__desc {
        font-size: 0.9rem;
    }

    .services__grid {
        gap: 0.75rem;
    }

    .services__card {
        padding: 1rem;
        border-radius: 1rem;
    }

    .services__card-content {
        margin-top: 1.25rem;
    }

    .services__num {
        font-size: 1.5rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .services__badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        top: 0.75rem;
        left: 0.75rem;
    }

    .services__icon {
        width: 40px;
        height: 40px;
        border-radius: 0.625rem;
    }

    .services__icon img {
        width: 20px;
        height: 20px;
    }

    .services__card-title {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }

    .services__card-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .services__list {
        margin-top: 0.75rem;
        gap: 0.35rem;
    }

    .services__list li {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Materials Section - Simple Grid Cards
   ========================================================================== */
.mats {
    padding: 5rem 0;
    background: #f8fafc;
}

.mats__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mats__head {
    text-align: center;
    margin-bottom: 3rem;
}

.mats__label {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.mats__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* Grid */
.mats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card */
.mats__card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mats__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

/* Best Card */
.mats__card--best {
    border-color: #3b82f6;
    background: linear-gradient(180deg, #eff6ff 0%, #fff 30%);
}

.mats__card--best:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

/* Premium Card */
.mats__card--premium {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 30%);
}

.mats__card--premium:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

/* Tag */
.mats__tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
}

.mats__tag--gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Icon */
.mats__icon {
    width: 72px;
    height: 72px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.mats__card:hover .mats__icon {
    background: #dbeafe;
    transform: scale(1.08);
}

.mats__card--best .mats__icon {
    background: #dbeafe;
}

.mats__card--premium .mats__icon {
    background: #fef3c7;
}

.mats__icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(800%) hue-rotate(200deg);
}

.mats__card--premium .mats__icon img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(600%) hue-rotate(5deg);
}

/* Name & Desc */
.mats__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.mats__desc {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 1.25rem;
    line-height: 1.4;
}

/* Pros */
.mats__pros {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    text-align: left;
}

.mats__pros li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #374151;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.mats__pros li:last-child {
    border-bottom: none;
}

.mats__pros li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Cons */
.mats__cons {
    text-align: left;
    margin-bottom: 1rem;
}

.mats__cons span {
    font-size: 0.8rem;
    color: #ef4444;
}

/* Footer */
.mats__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.mats__for {
    font-size: 0.8rem;
    color: #64748b;
}

/* Mats Responsive */
@media (max-width: 1024px) {
    .mats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mats {
        padding: 4rem 0;
    }

    .mats__head {
        margin-bottom: 2.5rem;
    }

    .mats__grid {
        gap: 1.25rem;
    }

    .mats__card {
        padding: 1.5rem 1.25rem;
    }

    .mats__icon {
        width: 64px;
        height: 64px;
    }

    .mats__icon img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .mats {
        padding: 3rem 0;
    }

    .mats__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mats__card {
        padding: 1.5rem;
    }

    .mats__name {
        font-size: 1.125rem;
    }
}

@media (max-width: 375px) {
    .mats {
        padding: 2.5rem 0;
    }

    .mats__container {
        padding: 0 1rem;
    }

    .mats__head {
        margin-bottom: 2rem;
    }

    .mats__label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .mats__title {
        font-size: 1.5rem;
    }

    .mats__grid {
        gap: 1.25rem;
    }

    .mats__card {
        padding: 1.25rem 1rem;
        border-radius: 0.875rem;
    }

    .mats__tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        top: -10px;
    }

    .mats__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .mats__icon img {
        width: 28px;
        height: 28px;
    }

    .mats__name {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .mats__desc {
        font-size: 0.85rem;
    }

    .mats__pros {
        margin: 1rem 0;
        gap: 0.35rem;
    }

    .mats__pros li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }

    .mats__cons {
        padding: 0.5rem 0.75rem;
    }

    .mats__cons span {
        font-size: 0.75rem;
    }

    .mats__footer {
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    .mats__for {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why__head {
    text-align: center;
    margin-bottom: 60px;
}

.why__label {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.why__title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px;
    line-height: 1.2;
}

.why__desc {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why__grid .why__card:nth-child(even) {
    transform: translateY(40px);
}

.why__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    border-left: 4px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    overflow: hidden;
}

.why__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.why__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12);
}

.why__card:hover::before {
    transform: scaleY(1);
}

.why__grid .why__card:nth-child(even):hover {
    transform: translateY(34px);
}

.why__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.why__card:hover .why__num {
    color: rgba(59, 130, 246, 0.15);
}

.why__row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.why__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why__card:hover .why__icon {
    transform: rotate(-5deg) scale(1.05);
}

.why__icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(1500%) hue-rotate(201deg) brightness(98%) contrast(96%);
}

.why__name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.why__text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-left: 62px;
}

/* ==========================================================================
   Showcase Section (Before/After) - Premium Design
   ========================================================================== */
.showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.showcase__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.showcase__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.showcase__orb--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    right: -200px;
}

.showcase__orb--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.showcase__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.showcase__header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f59e0b;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.showcase__title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
}

.showcase__title span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Featured Project - Interactive Slider */
.showcase__featured {
    margin-bottom: 40px;
}

.showcase__compare {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.showcase__layer {
    position: absolute;
    inset: 0;
}

.showcase__layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase__layer--after {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.showcase__layer--before {
    z-index: 1;
}

.showcase__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.showcase__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase__handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
}

.showcase__arrows {
    display: flex;
    align-items: center;
    gap: 4px;
}

.showcase__arrows img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.showcase__arrows img:first-child {
    transform: rotate(180deg);
}

.showcase__tag {
    position: absolute;
    top: 24px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.showcase__tag--before {
    left: 24px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
}

.showcase__tag--after {
    right: 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.showcase__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 32px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase__name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.showcase__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.showcase__stats {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}

.showcase__stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase__stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase__stat-text {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* 3D Flip Cards */
.showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.showcase__card {
    perspective: 1000px;
}

.showcase__flip {
    position: relative;
    height: 380px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.showcase__card:hover .showcase__flip {
    transform: rotateY(180deg);
}

.showcase__front,
.showcase__back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.showcase__front img,
.showcase__back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase__back {
    transform: rotateY(180deg);
}

.showcase__glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

.showcase__glass--dark {
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.6) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 32px;
}

.showcase__card-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.showcase__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.showcase__card-meta {
    display: flex;
    gap: 16px;
}

.showcase__card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.showcase__card-meta img {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.showcase__card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.showcase__flip-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.showcase__flip-hint img {
    width: 14px;
    height: 14px;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    animation: hintArrow 1.5s ease-in-out infinite;
}

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

.showcase__card:hover .showcase__flip-hint {
    color: #f59e0b;
}

.showcase__card:hover .showcase__flip-hint img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(68%) sepia(63%) saturate(2000%) hue-rotate(360deg) brightness(103%) contrast(101%);
}

/* ==========================================================================
   Coverage Section - Austria-wide (Light Theme)
   ========================================================================== */
.coverage {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.coverage__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.coverage__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coverage__badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.coverage__title {
    font-size: 44px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin: 0 0 20px;
}

.coverage__title span {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage__desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 32px;
}

.coverage__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.coverage__stat {
    text-align: center;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.coverage__stat strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage__stat span {
    display: block;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.coverage__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}

.coverage__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
}

.coverage__cta img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.coverage__map {
    position: relative;
}

.coverage__regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.coverage__region {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.coverage__region:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.coverage__region--active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
    border-color: #3b82f6;
}

.coverage__dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

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

.coverage__region:nth-child(2) .coverage__dot { animation-delay: 0.2s; }
.coverage__region:nth-child(3) .coverage__dot { animation-delay: 0.4s; }
.coverage__region:nth-child(4) .coverage__dot { animation-delay: 0.6s; }
.coverage__region:nth-child(5) .coverage__dot { animation-delay: 0.8s; }
.coverage__region:nth-child(6) .coverage__dot { animation-delay: 1s; }
.coverage__region:nth-child(7) .coverage__dot { animation-delay: 1.2s; }
.coverage__region:nth-child(8) .coverage__dot { animation-delay: 1.4s; }
.coverage__region:nth-child(9) .coverage__dot { animation-delay: 1.6s; }

.coverage__name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.coverage__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverage__visual img {
    width: 100%;
    height: auto;
}

.coverage__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: coveragePulse 3s ease-in-out infinite;
}

@keyframes coveragePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.8); opacity: 0.1; }
}

/* ==========================================================================
   Steps Section (Work Process)
   ========================================================================== */
.steps {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.steps__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.steps__head {
    text-align: center;
    margin-bottom: 60px;
}

.steps__label {
    display: inline-block;
    background: #f0f9ff;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps__title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.25;
}

.steps__title span {
    color: #0ea5e9;
}

.steps__text {
    font-size: 17px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.steps__timeline {
    position: relative;
    padding-left: 50px;
}

.steps__line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, #0ea5e9 0%, #10b981 100%);
}

.steps__item {
    position: relative;
    margin-bottom: 32px;
}

.steps__item:last-child {
    margin-bottom: 0;
}

.steps__dot {
    position: absolute;
    left: -43px;
    top: 24px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #0ea5e9;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.steps__item:hover .steps__dot {
    background: #0ea5e9;
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.2);
}

.steps__dot--green {
    border-color: #10b981;
}

.steps__item:hover .steps__dot--green {
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.2);
}

.steps__card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px 28px 28px 90px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
}

.steps__item:hover .steps__card {
    background: #fff;
    border-color: #0ea5e9;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.12);
    transform: translateX(8px);
}

.steps__num {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    transition: all 0.3s ease;
}

.steps__item:hover .steps__num {
    color: #bae6fd;
}

.steps__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.steps__item:hover .steps__icon {
    transform: scale(1.1) rotate(-5deg);
}

.steps__icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.steps__icon--green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.steps__name {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.steps__desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.steps__card--highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #86efac;
}

.steps__item:hover .steps__card--highlight {
    border-color: #10b981;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.steps__item:hover .steps__card--highlight .steps__num {
    color: #86efac;
}

.steps__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #10b981;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 14px;
}

.steps__badge img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.steps__footer {
    text-align: center;
    margin-top: 50px;
}

.steps__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.steps__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.steps__btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Works Section (Portfolio) - Bento Grid
   ========================================================================== */
.works {
    background: #f8fafc;
    padding: 100px 0;
}

.works__header {
    text-align: center;
    margin-bottom: 50px;
}

.works__badge {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.works__title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.works__subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid */
.works__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-bottom: 40px;
}

.works__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.works__item--hero {
    grid-column: 1;
    grid-row: 1 / 3;
}

.works__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.works__item:hover .works__img {
    transform: scale(1.1);
}

.works__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.4s ease;
}

.works__item:hover .works__overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%);
}

.works__category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: fit-content;
}

.works__item--hero .works__category {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.works__name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.works__item--hero .works__name {
    font-size: 24px;
}

.works__info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.works__item--hero .works__info {
    font-size: 14px;
}

.works__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.works__price {
    font-size: 18px;
    font-weight: 800;
    color: #10b981;
}

.works__item--hero .works__price {
    font-size: 22px;
}

.works__time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
}

.works__time::before {
    content: '';
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.7)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Stats Bar */
.works__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #0f172a;
    border-radius: 16px;
    padding: 28px 20px;
}

.works__metric {
    text-align: center;
    position: relative;
}

.works__metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.works__metric-num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.works__metric-txt {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Works Responsive - 1024px */
@media (max-width: 1024px) {
    .works {
        padding: 80px 0;
    }

    .works__title {
        font-size: 36px;
    }

    .works__bento {
        grid-template-rows: repeat(2, 240px);
        gap: 16px;
    }

    .works__overlay {
        padding: 20px;
    }

    .works__name {
        font-size: 16px;
    }

    .works__item--hero .works__name {
        font-size: 20px;
    }
}

/* Works Responsive - 768px */
@media (max-width: 768px) {
    .works {
        padding: 60px 0;
    }

    .works__header {
        margin-bottom: 36px;
    }

    .works__title {
        font-size: 30px;
    }

    .works__subtitle {
        font-size: 16px;
    }

    .works__bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px repeat(3, 200px);
    }

    .works__item--hero {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .works__metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 16px;
    }

    .works__metric:nth-child(2)::after {
        display: none;
    }

    .works__metric-num {
        font-size: 24px;
    }
}

/* Works Responsive - 480px */
@media (max-width: 480px) {
    .works {
        padding: 50px 0;
    }

    .works__badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .works__title {
        font-size: 26px;
    }

    .works__subtitle {
        font-size: 15px;
    }

    .works__bento {
        grid-template-columns: 1fr;
        grid-template-rows: 260px repeat(5, 200px);
    }

    .works__item--hero {
        grid-column: 1;
        grid-row: 1;
    }

    .works__overlay {
        padding: 18px;
    }

    .works__category {
        font-size: 10px;
        padding: 4px 10px;
    }

    .works__name {
        font-size: 16px;
    }

    .works__item--hero .works__name {
        font-size: 18px;
    }

    .works__info {
        font-size: 12px;
    }

    .works__price {
        font-size: 16px;
    }

    .works__item--hero .works__price {
        font-size: 18px;
    }

    .works__metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        border-radius: 12px;
    }

    .works__metric::after {
        display: none;
    }

    .works__metric-num {
        font-size: 22px;
    }

    .works__metric-txt {
        font-size: 12px;
    }
}

/* Works Responsive - 375px */
@media (max-width: 375px) {
    .works {
        padding: 40px 0;
    }

    .works__title {
        font-size: 24px;
    }

    .works__bento {
        grid-template-rows: 220px repeat(5, 180px);
        gap: 12px;
    }

    .works__overlay {
        padding: 14px;
    }

    .works__name {
        font-size: 15px;
    }

    .works__item--hero .works__name {
        font-size: 17px;
    }

    .works__bottom {
        padding-top: 10px;
    }

    .works__price {
        font-size: 15px;
    }

    .works__metrics {
        padding: 20px 14px;
    }

    .works__metric-num {
        font-size: 20px;
    }
}

/* ==========================================================================
   Pricing Section - Table Style
   ========================================================================== */
.pricing {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: 100px 0;
}

.pricing__header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing__badge {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing__title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.pricing__subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Trust Pills */
.pricing__trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pricing__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing__pill img {
    opacity: 0.7;
}

/* Pricing Table */
.pricing__table {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing__row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 22px 30px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.pricing__row:last-child {
    border-bottom: none;
}

.pricing__row:hover {
    background: #f8fafc;
}

.pricing__row--highlight {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
}

.pricing__row--highlight:hover {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
}

.pricing__row--special {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.pricing__row--special:hover {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.04) 100%);
}

.pricing__service {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pricing__icon {
    width: 52px;
    height: 52px;
    background: #f1f5f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pricing__row:hover .pricing__icon {
    background: #e2e8f0;
    transform: scale(1.05);
}

.pricing__icon img {
    opacity: 0.8;
}

.pricing__info {
    min-width: 0;
}

.pricing__name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pricing__desc {
    font-size: 14px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing__cost {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 130px;
    justify-content: flex-end;
}

.pricing__from {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.pricing__amount {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pricing__unit {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.pricing__cost--discount .pricing__amount {
    color: #10b981;
}

/* Tags */
.pricing__tag {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing__tag--popular {
    background: #dbeafe;
    color: #1d4ed8;
}

.pricing__tag--premium {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.pricing__tag--eco {
    background: #dcfce7;
    color: #166534;
}

/* Notice */
.pricing__notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 30px;
}

.pricing__notice-icon {
    flex-shrink: 0;
}

.pricing__notice-icon img {
    filter: sepia(1) saturate(3) hue-rotate(10deg);
}

.pricing__notice-text {
    font-size: 14px;
    color: #92400e;
    line-height: 1.5;
}

/* CTA */
.pricing__cta {
    text-align: center;
}

.pricing__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.pricing__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.pricing__btn img {
    filter: brightness(0) invert(1);
}

.pricing__cta-note {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #94a3b8;
}

/* Pricing Responsive - 1024px */
@media (max-width: 1024px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing__title {
        font-size: 36px;
    }

    .pricing__row {
        padding: 20px 24px;
    }

    .pricing__amount {
        font-size: 28px;
    }
}

/* Pricing Responsive - 768px */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing__header {
        margin-bottom: 32px;
    }

    .pricing__title {
        font-size: 30px;
    }

    .pricing__subtitle {
        font-size: 16px;
    }

    .pricing__trust {
        margin-bottom: 36px;
    }

    .pricing__pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .pricing__row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }

    .pricing__service {
        gap: 14px;
    }

    .pricing__icon {
        width: 46px;
        height: 46px;
    }

    .pricing__cost {
        justify-content: flex-start;
    }

    .pricing__tag {
        position: absolute;
        top: 14px;
        right: 14px;
    }

    .pricing__notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .pricing__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Responsive - 480px */
@media (max-width: 480px) {
    .pricing {
        padding: 50px 0;
    }

    .pricing__badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .pricing__title {
        font-size: 26px;
    }

    .pricing__trust {
        gap: 10px;
    }

    .pricing__pill {
        padding: 7px 12px;
        font-size: 11px;
    }

    .pricing__table {
        border-radius: 16px;
    }

    .pricing__row {
        padding: 18px 16px;
    }

    .pricing__icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .pricing__icon img {
        width: 24px;
        height: 24px;
    }

    .pricing__name {
        font-size: 15px;
    }

    .pricing__desc {
        font-size: 13px;
    }

    .pricing__amount {
        font-size: 26px;
    }

    .pricing__notice {
        padding: 14px 18px;
        border-radius: 12px;
    }

    .pricing__btn {
        font-size: 15px;
        padding: 16px 28px;
    }
}

/* Pricing Responsive - 375px */
@media (max-width: 375px) {
    .pricing {
        padding: 40px 0;
    }

    .pricing__header {
        margin-bottom: 24px;
    }

    .pricing__badge {
        font-size: 9px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .pricing__title {
        font-size: 22px;
    }

    .pricing__subtitle {
        font-size: 14px;
    }

    .pricing__trust {
        gap: 8px;
        margin-bottom: 28px;
    }

    .pricing__pill {
        padding: 6px 10px;
        font-size: 10px;
        gap: 6px;
    }

    .pricing__pill img {
        width: 14px;
        height: 14px;
    }

    .pricing__table {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .pricing__row {
        padding: 14px 12px;
        gap: 10px;
    }

    .pricing__service {
        gap: 10px;
    }

    .pricing__icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .pricing__icon img {
        width: 20px;
        height: 20px;
    }

    .pricing__name {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .pricing__desc {
        font-size: 11px;
    }

    .pricing__from {
        font-size: 11px;
    }

    .pricing__amount {
        font-size: 22px;
    }

    .pricing__unit {
        font-size: 12px;
    }

    .pricing__tag {
        font-size: 9px;
        padding: 3px 8px;
        top: 10px;
        right: 10px;
    }

    .pricing__notice {
        padding: 12px 14px;
        border-radius: 10px;
        gap: 8px;
    }

    .pricing__notice-icon img {
        width: 18px;
        height: 18px;
    }

    .pricing__notice-text {
        font-size: 12px;
    }

    .pricing__cta {
        margin-top: 20px;
    }

    .pricing__btn {
        font-size: 14px;
        padding: 14px 24px;
        border-radius: 10px;
    }

    .pricing__btn img {
        width: 18px;
        height: 18px;
    }

    .pricing__cta-note {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* ==========================================================================
   Guarantee Section - Modern Grid
   ========================================================================== */
.guarantee {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.guarantee__badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.4);
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.guarantee__title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.guarantee__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Grid Layout */
.guarantee__grid {
    display: grid;
    grid-template-columns: 1fr repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Hero Number */
.guarantee__hero {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.guarantee__hero::before {
    content: '';
    position: absolute;
    inset: 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='%23ffffff' fill-opacity='0.05'%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") repeat;
}

.guarantee__number {
    font-size: 140px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.guarantee__hero-text {
    text-align: center;
    position: relative;
}

.guarantee__hero-label {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.guarantee__hero-sub {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

/* Feature Cards */
.guarantee__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s ease;
}

.guarantee__card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-5px);
}

.guarantee__card-icon {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.guarantee__card:hover .guarantee__card-icon {
    background: rgba(14, 165, 233, 0.25);
    transform: scale(1.1);
}

.guarantee__card-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.guarantee__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.guarantee__card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Bottom Bar */
.guarantee__bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.guarantee__bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.guarantee__bar-item img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* Guarantee Responsive - 1024px */
@media (max-width: 1024px) {
    .guarantee {
        padding: 80px 0;
    }

    .guarantee__title {
        font-size: 38px;
    }

    .guarantee__grid {
        gap: 16px;
    }

    .guarantee__number {
        font-size: 110px;
    }

    .guarantee__hero-label {
        font-size: 26px;
    }

    .guarantee__card {
        padding: 24px;
    }
}

/* Guarantee Responsive - 768px */
@media (max-width: 768px) {
    .guarantee {
        padding: 60px 0;
    }

    .guarantee__header {
        margin-bottom: 40px;
    }

    .guarantee__title {
        font-size: 32px;
    }

    .guarantee__subtitle {
        font-size: 16px;
    }

    .guarantee__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .guarantee__hero {
        grid-column: 1 / 3;
        grid-row: auto;
        padding: 40px 30px;
        flex-direction: row;
        gap: 24px;
    }

    .guarantee__number {
        font-size: 80px;
    }

    .guarantee__hero-label {
        font-size: 22px;
        letter-spacing: 2px;
    }

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

    .guarantee__bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .guarantee__bar-item {
        font-size: 13px;
    }
}

/* Guarantee Responsive - 480px */
@media (max-width: 480px) {
    .guarantee {
        padding: 50px 0;
    }

    .guarantee__badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .guarantee__title {
        font-size: 28px;
    }

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

    .guarantee__hero {
        grid-column: 1;
        flex-direction: column;
        padding: 32px 24px;
    }

    .guarantee__number {
        font-size: 90px;
    }

    .guarantee__hero-label {
        font-size: 24px;
    }

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

    .guarantee__card {
        padding: 22px;
        text-align: center;
    }

    .guarantee__card-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 18px;
    }

    .guarantee__card-title {
        font-size: 16px;
    }

    .guarantee__card-text {
        font-size: 13px;
    }

    .guarantee__bar {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }

    .guarantee__bar-item {
        font-size: 12px;
        flex-direction: column;
        gap: 6px;
    }
}

/* Guarantee Responsive - 375px */
@media (max-width: 375px) {
    .guarantee {
        padding: 40px 0;
    }

    .guarantee__header {
        margin-bottom: 32px;
    }

    .guarantee__badge {
        font-size: 9px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .guarantee__title {
        font-size: 22px;
    }

    .guarantee__subtitle {
        font-size: 14px;
    }

    .guarantee__grid {
        gap: 12px;
        margin-bottom: 24px;
    }

    .guarantee__hero {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .guarantee__number {
        font-size: 64px;
    }

    .guarantee__hero-label {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .guarantee__hero-sub {
        font-size: 13px;
    }

    .guarantee__card {
        padding: 16px;
        border-radius: 12px;
        text-align: center;
    }

    .guarantee__card-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 12px;
        border-radius: 10px;
    }

    .guarantee__card-icon img {
        width: 22px;
        height: 22px;
    }

    .guarantee__card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .guarantee__card-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .guarantee__bar {
        padding: 14px;
        border-radius: 12px;
        gap: 10px;
    }

    .guarantee__bar-item {
        font-size: 10px;
        gap: 5px;
    }

    .guarantee__bar-item img {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   Issues Section - Timeline Style
   ========================================================================== */
.issues {
    background: #fafaf8;
    padding: 80px 0;
}

.issues__header {
    text-align: center;
    margin-bottom: 48px;
}

.issues__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.issues__title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.issues__list {
    max-width: 800px;
    margin: 0 auto 48px;
}

.issues__item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    margin-bottom: 0;
}

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

.issues__num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.issues__line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(180deg, #0ea5e9 0%, #e2e8f0 100%);
    border-radius: 2px;
    margin-top: 8px;
}

.issues__item--last .issues__line {
    display: none;
}

.issues__content {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    transition: all 0.25s ease;
    border: 1px solid #f1f5f9;
}

.issues__item:hover .issues__content {
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
}

.issues__item:hover .issues__num {
    transform: scale(1.1);
}

.issues__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.issues__icon img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2038%) hue-rotate(176deg) brightness(101%) contrast(91%);
}

.issues__body {
    flex: 1;
}

.issues__name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.issues__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.issues__cause,
.issues__fix {
    padding: 12px;
    border-radius: 10px;
}

.issues__cause {
    background: #fef2f2;
}

.issues__fix {
    background: #f0fdf4;
}

.issues__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.issues__tag--red {
    background: #ef4444;
    color: #fff;
}

.issues__tag--green {
    background: #10b981;
    color: #fff;
}

.issues__cause p,
.issues__fix p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Issues CTA */
.issues__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 28px 36px;
}

.issues__cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.issues__cta-text {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.issues__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.issues__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Issues Responsive */
@media (max-width: 1024px) {
    .issues {
        padding: 64px 0;
    }

    .issues__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .issues {
        padding: 48px 0;
    }

    .issues__header {
        margin-bottom: 36px;
    }

    .issues__title {
        font-size: 26px;
    }

    .issues__item {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .issues__num {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }

    .issues__content {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin-bottom: 16px;
    }

    .issues__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .issues__name {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .issues__details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .issues__cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .issues__cta-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .issues__title {
        font-size: 22px;
    }

    .issues__item {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .issues__num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .issues__content {
        padding: 16px;
    }

    .issues__icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .issues__icon img {
        width: 24px;
        height: 24px;
    }

    .issues__cause,
    .issues__fix {
        padding: 10px;
    }

    .issues__cause p,
    .issues__fix p {
        font-size: 12px;
    }

    .issues__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 375px) {
    .issues {
        padding: 40px 0;
    }

    .issues__header {
        margin-bottom: 28px;
    }

    .issues__label {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .issues__title {
        font-size: 20px;
    }

    .issues__list {
        margin-bottom: 28px;
    }

    .issues__item {
        grid-template-columns: 32px 1fr;
        gap: 10px;
    }

    .issues__num {
        width: 32px;
        height: 32px;
        font-size: 12px;
        border-radius: 8px;
    }

    .issues__line {
        width: 2px;
        margin-top: 6px;
    }

    .issues__content {
        padding: 14px;
        gap: 12px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .issues__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }

    .issues__icon img {
        width: 22px;
        height: 22px;
    }

    .issues__name {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .issues__details {
        gap: 8px;
    }

    .issues__cause,
    .issues__fix {
        padding: 8px;
        border-radius: 8px;
    }

    .issues__tag {
        font-size: 10px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .issues__cause p,
    .issues__fix p {
        font-size: 11px;
        line-height: 1.4;
    }

    .issues__cta {
        padding: 18px 14px;
        border-radius: 12px;
        gap: 16px;
    }

    .issues__cta-title {
        font-size: 16px;
    }

    .issues__cta-text {
        font-size: 12px;
    }

    .issues__cta-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    .issues__cta-btn img {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   Company Section
   ========================================================================== */
.company {
    padding: 80px 0;
    background: #fff;
}

.company__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.company__visual {
    position: relative;
}

.company__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.company__image img {
    width: 100%;
    height: auto;
    display: block;
}

.company__stats {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
}

.company__stat {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.company__stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.company__stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.company__content {
    padding-left: 20px;
}

.company__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.company__title {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.company__highlight {
    color: #0ea5e9;
}

.company__text {
    margin-bottom: 32px;
}

.company__text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
}

.company__text p:last-child {
    margin-bottom: 0;
}

.company__text strong {
    color: #1e293b;
}

.company__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.company__feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.company__feature:hover {
    background: #e0f2fe;
    border-color: #bae6fd;
}

.company__feature img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2038%) hue-rotate(176deg) brightness(101%) contrast(91%);
}

.company__feature span {
    font-size: 14px;
    font-weight: 600;
    color: #0c4a6e;
}

.company__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.company__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.company__btn img {
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.company__btn:hover img {
    transform: translateX(4px);
}

/* Company Responsive */
@media (max-width: 1024px) {
    .company {
        padding: 64px 0;
    }

    .company__grid {
        gap: 48px;
    }

    .company__title {
        font-size: 32px;
    }

    .company__stats {
        bottom: -24px;
        left: 20px;
        right: 20px;
    }

    .company__stat {
        padding: 16px;
    }

    .company__stat-num {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .company {
        padding: 48px 0;
    }

    .company__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .company__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .company__stats {
        bottom: -20px;
        left: 16px;
        right: 16px;
    }

    .company__stat {
        padding: 14px 12px;
    }

    .company__stat-num {
        font-size: 22px;
    }

    .company__stat-label {
        font-size: 11px;
    }

    .company__content {
        padding-left: 0;
        text-align: center;
    }

    .company__title {
        font-size: 28px;
    }

    .company__features {
        justify-content: center;
    }

    .company__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .company__title {
        font-size: 24px;
    }

    .company__title br {
        display: none;
    }

    .company__text p {
        font-size: 15px;
    }

    .company__stats {
        flex-direction: column;
        gap: 8px;
        bottom: -60px;
        left: 12px;
        right: 12px;
    }

    .company__grid {
        gap: 80px;
    }

    .company__feature {
        padding: 8px 12px;
    }

    .company__feature span {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .company {
        padding: 32px 0;
    }

    .company__grid {
        gap: 70px;
    }

    .company__image {
        border-radius: 14px;
    }

    .company__stats {
        bottom: -50px;
        left: 10px;
        right: 10px;
        gap: 6px;
    }

    .company__stat {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .company__stat-num {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .company__stat-label {
        font-size: 10px;
    }

    .company__label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .company__title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .company__text {
        margin-bottom: 24px;
    }

    .company__text p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .company__features {
        gap: 8px;
        margin-bottom: 24px;
    }

    .company__feature {
        padding: 6px 10px;
        border-radius: 8px;
    }

    .company__feature img {
        width: 16px;
        height: 16px;
    }

    .company__feature span {
        font-size: 12px;
    }

    .company__btn {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 10px;
    }

    .company__btn img {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
    padding: 80px 0;
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.testimonials__summary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.testimonials__badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.testimonials__badge img {
    filter: brightness(0) invert(1);
}

.testimonials__rating {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonials__stars {
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonials__count {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.testimonials__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.testimonials__link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.testimonials__link img {
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.testimonials__link:hover img {
    transform: translateX(4px);
}

.testimonials__header {
    margin-bottom: 28px;
}

.testimonials__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.testimonials__title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.testimonials__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.testimonials__card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.testimonials__quote {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 72px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonials__text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials__avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.testimonials__info {
    flex: 1;
}

.testimonials__name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.testimonials__service {
    font-size: 13px;
    color: #64748b;
}

.testimonials__meta {
    text-align: right;
}

.testimonials__card-stars {
    display: block;
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.testimonials__date {
    font-size: 12px;
    color: #94a3b8;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials {
        padding: 64px 0;
    }

    .testimonials__layout {
        grid-template-columns: 240px 1fr;
        gap: 36px;
    }

    .testimonials__summary {
        padding: 28px 20px;
    }

    .testimonials__rating {
        font-size: 48px;
    }

    .testimonials__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 48px 0;
    }

    .testimonials__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials__summary {
        position: static;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        align-items: center;
        text-align: left;
        padding: 20px 24px;
    }

    .testimonials__badge {
        width: 52px;
        height: 52px;
        margin: 0;
        grid-row: span 2;
    }

    .testimonials__rating {
        font-size: 32px;
        margin-bottom: 0;
    }

    .testimonials__stars {
        font-size: 16px;
        margin-bottom: 0;
        grid-column: 2;
    }

    .testimonials__count {
        display: none;
    }

    .testimonials__link {
        grid-row: span 2;
        padding: 10px 16px;
    }

    .testimonials__title {
        font-size: 26px;
    }

    .testimonials__card {
        padding: 24px;
    }

    .testimonials__quote {
        font-size: 56px;
        top: 12px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials__summary {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }

    .testimonials__badge {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .testimonials__badge img {
        width: 24px;
        height: 24px;
    }

    .testimonials__rating {
        font-size: 28px;
    }

    .testimonials__stars {
        font-size: 14px;
    }

    .testimonials__link {
        grid-column: span 2;
        justify-content: center;
        margin-top: 8px;
    }

    .testimonials__title {
        font-size: 22px;
    }

    .testimonials__card {
        padding: 20px;
    }

    .testimonials__text {
        font-size: 14px;
    }

    .testimonials__author {
        flex-wrap: wrap;
        gap: 12px;
    }

    .testimonials__avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .testimonials__meta {
        width: 100%;
        display: flex;
        justify-content: space-between;
        text-align: left;
        padding-top: 12px;
        border-top: 1px solid #f1f5f9;
    }
}

@media (max-width: 375px) {
    .testimonials {
        padding: 32px 0;
    }

    .testimonials__summary {
        padding: 14px 16px;
        gap: 10px;
        border-radius: 12px;
    }

    .testimonials__badge {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .testimonials__badge img {
        width: 20px;
        height: 20px;
    }

    .testimonials__rating {
        font-size: 24px;
    }

    .testimonials__stars {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .testimonials__count {
        font-size: 11px;
    }

    .testimonials__link {
        font-size: 12px;
        padding: 10px 16px;
        border-radius: 8px;
    }

    .testimonials__title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .testimonials__list {
        gap: 12px;
    }

    .testimonials__card {
        padding: 14px;
        border-radius: 12px;
    }

    .testimonials__quote {
        font-size: 36px;
        top: 6px;
        right: 10px;
    }

    .testimonials__text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .testimonials__author {
        gap: 10px;
    }

    .testimonials__avatar {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .testimonials__name {
        font-size: 13px;
    }

    .testimonials__service {
        font-size: 11px;
    }

    .testimonials__meta {
        padding-top: 10px;
    }

    .testimonials__date {
        font-size: 11px;
    }

    .testimonials__rating-small {
        font-size: 12px;
    }
}

/* ==========================================================================
   Articles Section
   ========================================================================== */
.articles {
    padding: 80px 0;
    background: #fff;
}

.articles__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
}

.articles__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.articles__title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.articles__desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.articles__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0ea5e9;
    padding: 12px 20px;
    background: #f0f9ff;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.articles__all:hover {
    background: #e0f2fe;
}

.articles__all img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2038%) hue-rotate(176deg) brightness(101%) contrast(91%);
    transition: transform 0.2s ease;
}

.articles__all:hover img {
    transform: translateX(4px);
}

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

.articles__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.articles__card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.articles__card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.articles__image {
    display: block;
    position: relative;
    overflow: hidden;
    height: 180px;
}

.articles__card--featured .articles__image {
    height: 100%;
    min-height: 300px;
}

.articles__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.articles__card:hover .articles__image img {
    transform: scale(1.05);
}

.articles__body {
    padding: 20px;
}

.articles__card--featured .articles__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}

.articles__date {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 10px;
}

.articles__card--featured .articles__date {
    color: rgba(255, 255, 255, 0.7);
}

.articles__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.articles__name a {
    color: #1e293b;
    transition: color 0.2s ease;
}

.articles__name a:hover {
    color: #0ea5e9;
}

.articles__card--featured .articles__name {
    font-size: 22px;
}

.articles__card--featured .articles__name a {
    color: #fff;
}

.articles__card--featured .articles__name a:hover {
    color: #7dd3fc;
}

.articles__excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
}

.articles__card--featured .articles__excerpt {
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles__read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0ea5e9;
    transition: gap 0.2s ease;
}

.articles__read:hover {
    gap: 10px;
}

.articles__card--featured .articles__read {
    color: #7dd3fc;
}

.articles__read img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2038%) hue-rotate(176deg) brightness(101%) contrast(91%);
}

.articles__card--featured .articles__read img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(20%) saturate(1000%) hue-rotate(176deg) brightness(103%) contrast(96%);
}

/* Articles Responsive */
@media (max-width: 1024px) {
    .articles {
        padding: 64px 0;
    }

    .articles__title {
        font-size: 30px;
    }

    .articles__grid {
        gap: 20px;
    }

    .articles__card--featured .articles__name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .articles {
        padding: 48px 0;
    }

    .articles__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .articles__title {
        font-size: 26px;
    }

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

    .articles__card--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .articles__card--featured .articles__image {
        height: 220px;
        min-height: auto;
    }

    .articles__card--featured .articles__body {
        position: relative;
        background: none;
        padding: 20px;
    }

    .articles__card--featured .articles__date {
        color: #94a3b8;
    }

    .articles__card--featured .articles__name {
        font-size: 18px;
    }

    .articles__card--featured .articles__name a {
        color: #1e293b;
    }

    .articles__card--featured .articles__excerpt {
        color: #64748b;
    }

    .articles__card--featured .articles__read {
        color: #0ea5e9;
    }

    .articles__card--featured .articles__read img {
        filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2038%) hue-rotate(176deg) brightness(101%) contrast(91%);
    }
}

@media (max-width: 480px) {
    .articles__title {
        font-size: 22px;
    }

    .articles__all {
        width: 100%;
        justify-content: center;
    }

    .articles__image {
        height: 160px;
    }

    .articles__body {
        padding: 16px;
    }

    .articles__name {
        font-size: 15px;
    }

    .articles__excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 375px) {
    .articles {
        padding: 32px 0;
    }

    .articles__header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .articles__label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .articles__title {
        font-size: 18px;
    }

    .articles__desc {
        font-size: 13px;
    }

    .articles__all {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 8px;
    }

    .articles__all img {
        width: 16px;
        height: 16px;
    }

    .articles__grid {
        gap: 14px;
    }

    .articles__card {
        border-radius: 12px;
    }

    .articles__image {
        height: 130px;
    }

    .articles__body {
        padding: 12px;
    }

    .articles__date {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .articles__name {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .articles__excerpt {
        font-size: 12px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    .articles__read {
        font-size: 12px;
        margin-top: 10px;
    }

    .articles__read img {
        width: 14px;
        height: 14px;
    }

    .articles__card--featured .articles__image {
        height: 180px;
    }

    .articles__card--featured .articles__body {
        padding: 14px;
    }

    .articles__card--featured .articles__name {
        font-size: 16px;
    }
}

/* ==========================================================================
   Fragen Section (FAQ)
   ========================================================================== */
.fragen {
    background: #fafaf8;
    padding: 80px 0;
}

.fragen__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}

.fragen__sidebar {
    position: sticky;
    top: 100px;
}

.fragen__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.fragen__title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.fragen__desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.fragen__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.fragen__contact:hover {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
}

.fragen__contact img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2038%) hue-rotate(176deg) brightness(101%) contrast(91%);
    transition: filter 0.25s ease;
}

.fragen__contact:hover img {
    filter: brightness(0) invert(1);
}

.fragen__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fragen__item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.25s ease;
}

.fragen__item:hover {
    border-color: #e2e8f0;
}

.fragen__item.fe-active {
    border-color: #0ea5e9;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.fragen__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
}

.fragen__num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.25s ease;
}

.fragen__item.fe-active .fragen__num {
    background: #0ea5e9;
    color: #fff;
}

.fragen__text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.fragen__toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    position: relative;
    border-radius: 8px;
    background: #f1f5f9;
    transition: all 0.25s ease;
}

.fragen__toggle::before,
.fragen__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #64748b;
    border-radius: 1px;
    transition: all 0.25s ease;
}

.fragen__toggle::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.fragen__toggle::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.fragen__item.fe-active .fragen__toggle {
    background: #0ea5e9;
}

.fragen__item.fe-active .fragen__toggle::before,
.fragen__item.fe-active .fragen__toggle::after {
    background: #fff;
}

.fragen__item.fe-active .fragen__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.fragen__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.fragen__answer p {
    padding: 0 24px 20px 76px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Fragen Responsive */
@media (max-width: 1024px) {
    .fragen {
        padding: 64px 0;
    }

    .fragen__layout {
        grid-template-columns: 260px 1fr;
        gap: 36px;
    }

    .fragen__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .fragen {
        padding: 48px 0;
    }

    .fragen__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fragen__sidebar {
        position: static;
        text-align: center;
    }

    .fragen__title {
        font-size: 26px;
    }

    .fragen__question {
        padding: 18px 20px;
        gap: 12px;
    }

    .fragen__num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 12px;
    }

    .fragen__text {
        font-size: 14px;
    }

    .fragen__toggle {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .fragen__toggle::before {
        width: 10px;
    }

    .fragen__toggle::after {
        height: 10px;
    }

    .fragen__answer p {
        padding: 0 20px 18px 64px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fragen__title {
        font-size: 22px;
    }

    .fragen__contact {
        width: 100%;
        justify-content: center;
    }

    .fragen__question {
        padding: 16px;
        gap: 10px;
    }

    .fragen__num {
        display: none;
    }

    .fragen__answer p {
        padding: 0 16px 16px 16px;
    }
}

@media (max-width: 375px) {
    .fragen {
        padding: 32px 0;
    }

    .fragen__layout {
        gap: 24px;
    }

    .fragen__label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .fragen__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .fragen__desc {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .fragen__contact {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 10px;
    }

    .fragen__contact img {
        width: 18px;
        height: 18px;
    }

    .fragen__list {
        gap: 10px;
    }

    .fragen__item {
        border-radius: 12px;
    }

    .fragen__question {
        padding: 14px 12px;
        gap: 8px;
    }

    .fragen__text {
        font-size: 13px;
        line-height: 1.4;
    }

    .fragen__toggle {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .fragen__toggle::before {
        width: 8px;
    }

    .fragen__toggle::after {
        height: 8px;
    }

    .fragen__answer p {
        padding: 0 12px 14px 12px;
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Contact Section (Kontakt)
   ========================================================================== */
.kontakt {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafaf8 0%, #f0ede8 100%);
}

.kontakt__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.kontakt__info {
    position: sticky;
    top: 100px;
}

.kontakt__label {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.kontakt__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.kontakt__desc {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 36px;
}

.kontakt__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.kontakt__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
}

.kontakt__item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.2);
}

.kontakt__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt__icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(1000%) hue-rotate(170deg);
}

.kontakt__data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kontakt__data-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.kontakt__data-value {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

.kontakt__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kontakt__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.kontakt__badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(400%) hue-rotate(115deg);
}

/* Contact Form Wrapper */
.kontakt__form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .kontakt {
        padding: 80px 0;
    }

    .kontakt__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .kontakt__info {
        position: static;
    }

    .kontakt__title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .kontakt {
        padding: 60px 0;
    }

    .kontakt__title {
        font-size: 28px;
    }

    .kontakt__desc {
        font-size: 16px;
    }

    .kontakt__form {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .kontakt__item {
        padding: 14px 16px;
    }

    .kontakt__icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .kontakt__data-value {
        font-size: 15px;
    }

    .kontakt__badges {
        gap: 10px;
    }

    .kontakt__badge {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .kontakt__title {
        font-size: 24px;
    }

    .kontakt__item {
        padding: 12px 14px;
        gap: 12px;
    }

    .kontakt__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
    }

    .kontakt__icon img {
        width: 20px;
        height: 20px;
    }

    .kontakt__data-label {
        font-size: 12px;
    }

    .kontakt__data-value {
        font-size: 14px;
    }

    .kontakt__form {
        padding: 24px 16px;
    }
}

@media (max-width: 375px) {
    .kontakt {
        padding: 40px 0;
    }

    .kontakt__grid {
        gap: 32px;
    }

    .kontakt__label {
        padding: 6px 14px;
        font-size: 11px;
        margin-bottom: 14px;
    }

    .kontakt__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .kontakt__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .kontakt__items {
        gap: 10px;
        margin-bottom: 24px;
    }

    .kontakt__item {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 12px;
    }

    .kontakt__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
    }

    .kontakt__icon img {
        width: 18px;
        height: 18px;
    }

    .kontakt__data-label {
        font-size: 11px;
    }

    .kontakt__data-value {
        font-size: 13px;
    }

    .kontakt__badges {
        gap: 8px;
    }

    .kontakt__badge {
        padding: 6px 10px;
        font-size: 11px;
        gap: 5px;
        border-radius: 8px;
    }

    .kontakt__badge img {
        width: 14px;
        height: 14px;
    }

    .kontakt__form {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .kontakt__form-title {
        font-size: 18px;
    }
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.fe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fe-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fe-input,
.fe-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid #e5e5e5;
    border-radius: 14px;
    background: #fafafa;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.fe-input::placeholder,
.fe-textarea::placeholder {
    color: #999;
}

.fe-input:hover,
.fe-textarea:hover {
    border-color: #d0d0d0;
    background: #fff;
}

.fe-input:focus,
.fe-textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.fe-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.fe-error {
    display: none;
    font-size: 13px;
    color: #ef4444;
    padding: 6px 0 0 4px;
}

.fe-success {
    display: none;
    padding: 18px 24px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #059669;
    text-align: center;
    margin-top: 8px;
}

/* Form Button */
.fe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fe-btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.fe-btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.fe-btn-primary:active {
    transform: translateY(0);
}

.fe-btn-block {
    width: 100%;
}

.fe-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Form Responsive */
@media (max-width: 768px) {
    .fe-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fe-input,
    .fe-textarea {
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 12px;
    }

    .fe-btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .fe-form {
        gap: 16px;
    }

    .fe-input,
    .fe-textarea {
        padding: 14px 16px;
    }

    .fe-btn {
        padding: 14px 24px;
    }

    .fe-success {
        padding: 14px 18px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .fe-input,
    .fe-textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    .fe-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ==========================================================================
   SEO Text Section (Ratgeber)
   ========================================================================== */
.ratgeber {
    padding: 100px 0;
    background: #fff;
}

.ratgeber__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.ratgeber__sidebar {
    position: sticky;
    top: 100px;
}

.ratgeber__sidebar-inner {
    background: linear-gradient(180deg, #fafaf8 0%, #f5f3f0 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ratgeber__label {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.ratgeber__sidebar-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.ratgeber__sidebar-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Navigation */
.ratgeber__nav {
    margin-bottom: 28px;
}

.ratgeber__nav-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.ratgeber__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ratgeber__nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.ratgeber__nav-list li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #d0d0d0;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ratgeber__nav-list li a:hover {
    background: #fff;
    color: #0ea5e9;
}

.ratgeber__nav-list li a:hover::before {
    background: #0ea5e9;
    transform: scale(1.3);
}

.ratgeber__sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.ratgeber__sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.4);
}

.ratgeber__sidebar-cta img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Content */
.ratgeber__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ratgeber__intro {
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.ratgeber__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
}

.ratgeber__intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Articles */
.ratgeber__article {
    padding: 32px 0;
    border-bottom: 1px solid #f0f0f0;
    scroll-margin-top: 100px;
}

.ratgeber__article:last-of-type {
    border-bottom: none;
}

.ratgeber__article-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.35;
}

.ratgeber__article p {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
}

.ratgeber__article strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* CTA Box */
.ratgeber__cta-box {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    border: 1px solid rgba(14, 165, 233, 0.15);
    text-align: center;
}

.ratgeber__cta-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ratgeber__cta-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 28px;
}

.ratgeber__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.35);
    transition: all 0.3s ease;
}

.ratgeber__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(14, 165, 233, 0.45);
}

.ratgeber__cta-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Ratgeber Responsive */
@media (max-width: 1024px) {
    .ratgeber {
        padding: 80px 0;
    }

    .ratgeber__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ratgeber__sidebar {
        position: static;
    }

    .ratgeber__sidebar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 28px;
    }

    .ratgeber__label {
        grid-column: span 2;
        justify-self: start;
        margin-bottom: 0;
    }

    .ratgeber__sidebar-title {
        grid-column: span 2;
    }

    .ratgeber__sidebar-desc {
        grid-column: span 2;
        margin-bottom: 0;
    }

    .ratgeber__nav {
        margin-bottom: 0;
    }

    .ratgeber__sidebar-cta {
        align-self: end;
    }

    .ratgeber__title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ratgeber {
        padding: 60px 0;
    }

    .ratgeber__sidebar-inner {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .ratgeber__label,
    .ratgeber__sidebar-title,
    .ratgeber__sidebar-desc {
        grid-column: span 1;
    }

    .ratgeber__nav {
        margin-bottom: 20px;
    }

    .ratgeber__nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .ratgeber__nav-list li a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .ratgeber__title {
        font-size: 28px;
    }

    .ratgeber__intro p {
        font-size: 16px;
    }

    .ratgeber__article {
        padding: 24px 0;
    }

    .ratgeber__article-title {
        font-size: 20px;
    }

    .ratgeber__cta-box {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .ratgeber__cta-title {
        font-size: 22px;
    }

    .ratgeber__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ratgeber__sidebar-inner {
        padding: 20px;
        border-radius: 20px;
    }

    .ratgeber__sidebar-title {
        font-size: 20px;
    }

    .ratgeber__nav-list {
        grid-template-columns: 1fr;
    }

    .ratgeber__title {
        font-size: 24px;
    }

    .ratgeber__article-title {
        font-size: 18px;
    }

    .ratgeber__article p {
        font-size: 15px;
    }

    .ratgeber__cta-box {
        padding: 24px 20px;
    }

    .ratgeber__cta-title {
        font-size: 20px;
    }

    .ratgeber__cta-box p {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .ratgeber {
        padding: 40px 0;
    }

    .ratgeber__sidebar-inner {
        padding: 16px;
        border-radius: 14px;
    }

    .ratgeber__label {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .ratgeber__sidebar-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .ratgeber__sidebar-desc {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .ratgeber__nav {
        margin-bottom: 16px;
    }

    .ratgeber__nav-list {
        gap: 4px;
    }

    .ratgeber__nav-list li a {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 6px;
    }

    .ratgeber__sidebar-cta {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 8px;
    }

    .ratgeber__sidebar-cta img {
        width: 16px;
        height: 16px;
    }

    .ratgeber__main {
        gap: 20px;
    }

    .ratgeber__title {
        font-size: 20px;
    }

    .ratgeber__intro p {
        font-size: 14px;
    }

    .ratgeber__article {
        padding: 18px 0;
    }

    .ratgeber__article-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .ratgeber__article p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ratgeber__article ul li {
        font-size: 13px;
    }

    .ratgeber__cta-box {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .ratgeber__cta-title {
        font-size: 16px;
    }

    .ratgeber__cta-box p {
        font-size: 13px;
    }

    .ratgeber__cta-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 8px;
    }

    .ratgeber__cta-btn img {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   Fixed Call Button
   ========================================================================== */
.fe-fixed-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--fe-primary), var(--fe-primary-dark));
    border-radius: var(--fe-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(30, 64, 175, 0.4);
    z-index: 9999;
    transition: all var(--fe-transition-base);
    animation: fePulse 2s infinite;
}

.fe-fixed-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.5);
}

.fe-fixed-call img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

@keyframes fePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(30, 64, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet & Below (1024px) */
@media (max-width: 1024px) {
    .fe-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fe-hero-badges {
        justify-content: center;
    }

    .fe-hero-buttons {
        justify-content: center;
    }

    .fe-hero-visual {
        display: none;
    }

    .fe-trust-grid {
        grid-template-columns: 1fr;
    }

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

    .fe-service-card-featured {
        grid-column: span 2;
    }

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

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

    .why__grid .why__card:nth-child(even) {
        transform: none;
    }

    .why__grid .why__card:nth-child(even):hover {
        transform: translateY(-6px);
    }

    /* Showcase 1024px */
    .showcase__compare {
        height: 400px;
    }

    .showcase__details {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }

    .showcase__stats {
        width: 100%;
        justify-content: space-around;
    }

    .showcase__grid {
        gap: 24px;
    }

    .showcase__flip {
        height: 320px;
    }

    /* Coverage 1024px */
    .coverage__inner {
        gap: 40px;
    }

    .coverage__title {
        font-size: 36px;
    }

    .coverage__regions {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .coverage__region {
        padding: 10px 12px;
    }

    .fe-warranty-grid {
        grid-template-columns: 1fr;
    }

    .fe-warranty-cert {
        position: static;
    }

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

    .fe-about-grid {
        grid-template-columns: 1fr;
    }

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

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

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

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .fe-hero-wrapper {
        gap: var(--fe-spacing-2xl);
    }

    /* Hero 1024px */
    .hero__inner {
        padding: 120px 1.5rem 80px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__desc {
        font-size: 1.125rem;
    }

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

    .hero__stat {
        padding: 1.25rem 0.75rem;
    }

    .hero__stat strong {
        font-size: 1.5rem;
    }

    .hero__stat span {
        font-size: 0.7rem;
    }

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

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

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

/* Header Tablet (1024px) */
@media (max-width: 1024px) {
    .wm-header-container {
        padding: 0.75rem 1.5rem;
        gap: 1.5rem;
    }

    .wm-logo-symbol {
        width: 40px;
        height: 40px;
    }

    .wm-logo-name {
        font-size: 1.1rem;
    }

    .wm-logo-tagline {
        display: none;
    }

    .wm-nav-list {
        gap: 0.25rem;
    }

    .wm-nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .wm-header-actions {
        gap: 0.5rem;
    }

    .wm-btn-blog {
        padding: 0.5rem;
    }

    .wm-btn-blog span {
        display: none;
    }

    .wm-btn-call {
        padding: 0.375rem 0.75rem 0.375rem 0.375rem;
    }

    .wm-btn-call-icon {
        width: 28px;
        height: 28px;
    }

    .wm-btn-call-text {
        display: none;
    }

    .wm-btn-call {
        padding: 0.375rem;
    }

    .wm-btn-cta {
        display: none;
    }
}

/* Mobile Menu (768px) */
@media (max-width: 768px) {
    /* Header Mobile */
    .wm-header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .wm-logo-symbol {
        width: 38px;
        height: 38px;
    }

    .wm-logo-name {
        font-size: 1.1rem;
    }

    .wm-logo-tagline {
        display: none;
    }

    .wm-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
        padding: 80px 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .wm-nav.is-open {
        transform: translateX(0);
    }

    .wm-nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        flex: 1;
        width: 100%;
    }

    .wm-nav-link {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .wm-nav-link:last-child {
        border-bottom: none;
    }

    .wm-nav-link::before {
        display: none;
    }

    .wm-nav-link:hover {
        background: rgba(245, 158, 11, 0.15);
        padding-left: 1.5rem;
    }

    .wm-header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-left: auto;
    }

    .wm-btn-blog {
        display: flex;
        padding: 0.5rem;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
    }

    .wm-btn-blog span {
        display: none;
    }

    .wm-btn-blog img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }

    .wm-btn-cta {
        display: none;
    }

    .wm-btn-call {
        display: none;
    }

    .wm-nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .wm-nav-overlay.is-visible {
        display: block;
        z-index: 1000;
    }

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

    .fe-section-title {
        font-size: var(--fe-font-size-2xl);
    }

    /* Hero Mobile */
    .hero__inner {
        padding: 90px 1.5rem 40px;
        min-height: auto;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__desc {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .hero__btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }

    .hero__stat {
        padding: 1.25rem 1rem;
    }

    .hero__stat strong {
        font-size: 1.5rem;
    }

    .hero__stat span {
        font-size: 0.7rem;
    }

    /* Trust */
    .fe-trust-wrapper {
        grid-template-columns: 1fr;
        gap: var(--fe-spacing-2xl);
    }

    .fe-services-grid {
        grid-template-columns: 1fr;
    }

    .fe-service-card-featured {
        grid-column: span 1;
    }

    .fe-materials-grid {
        grid-template-columns: 1fr;
    }

    /* Why Section 768px */
    .why {
        padding: 70px 0;
    }

    .why__head {
        margin-bottom: 40px;
    }

    .why__title {
        font-size: 32px;
    }

    .why__desc {
        font-size: 16px;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why__grid .why__card:nth-child(even) {
        transform: none;
    }

    .why__grid .why__card:nth-child(even):hover {
        transform: translateY(-6px);
    }

    .why__card {
        padding: 24px;
    }

    .why__num {
        font-size: 40px;
    }

    .why__text {
        padding-left: 0;
    }

    /* Showcase 768px */
    .showcase {
        padding: 80px 0;
    }

    .showcase__header {
        margin-bottom: 40px;
    }

    .showcase__title {
        font-size: 36px;
    }

    .showcase__subtitle {
        font-size: 16px;
    }

    .showcase__compare {
        height: 300px;
    }

    .showcase__tag {
        padding: 8px 14px;
        font-size: 11px;
    }

    .showcase__handle {
        width: 48px;
        height: 48px;
    }

    .showcase__details {
        padding: 20px;
    }

    .showcase__name {
        font-size: 20px;
    }

    .showcase__desc {
        font-size: 14px;
    }

    .showcase__stats {
        gap: 16px;
    }

    .showcase__stat {
        padding: 12px 16px;
    }

    .showcase__stat-num {
        font-size: 24px;
    }

    .showcase__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase__flip {
        height: 300px;
    }

    .showcase__card-title {
        font-size: 18px;
    }

    /* Coverage 768px */
    .coverage {
        padding: 70px 0;
    }

    .coverage__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coverage__content {
        text-align: center;
    }

    .coverage__title {
        font-size: 32px;
    }

    .coverage__desc {
        font-size: 16px;
    }

    .coverage__stats {
        justify-content: center;
    }

    .coverage__cta {
        width: 100%;
        justify-content: center;
    }

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

    .coverage__visual {
        display: none;
    }

    /* Steps Section */
    .steps {
        padding: 70px 0;
    }

    .steps__head {
        margin-bottom: 40px;
    }

    .steps__title {
        font-size: 30px;
    }

    .steps__text {
        font-size: 15px;
    }

    .steps__timeline {
        padding-left: 40px;
    }

    .steps__line {
        left: 12px;
    }

    .steps__dot {
        left: -34px;
        width: 16px;
        height: 16px;
    }

    .steps__card {
        padding: 22px 22px 22px 75px;
    }

    .steps__num {
        font-size: 36px;
        left: 18px;
    }

    .steps__icon {
        width: 44px;
        height: 44px;
    }

    .steps__icon img {
        width: 24px;
        height: 24px;
    }

    .steps__name {
        font-size: 17px;
    }

    .steps__desc {
        font-size: 14px;
    }

    .steps__footer {
        margin-top: 40px;
    }

    .steps__btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .fe-pricing-grid {
        grid-template-columns: 1fr;
    }

    .fe-problems-grid {
        grid-template-columns: 1fr;
    }

    .fe-about-features {
        grid-template-columns: 1fr;
    }

    .fe-reviews-grid {
        grid-template-columns: 1fr;
    }

    .fe-blog-grid {
        grid-template-columns: 1fr;
    }

    .fe-form-grid {
        grid-template-columns: 1fr;
    }

    .fe-form-group-full {
        grid-column: span 1;
    }

    .fe-fixed-call {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .fe-fixed-call img {
        width: 26px;
        height: 26px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .fe-container {
        padding: 0 var(--fe-spacing-md);
    }

    /* Header 480px */
    .wm-header-container {
        padding: 0.625rem 0.875rem;
    }

    .wm-logo-symbol {
        width: 34px;
        height: 34px;
        padding: 5px;
    }

    .wm-logo-name {
        font-size: 1rem;
    }

    .wm-btn-blog {
        width: 38px;
        height: 38px;
    }

    .wm-nav-toggle {
        width: 40px;
        height: 40px;
    }

    .wm-nav {
        width: 100%;
    }

    /* Hero 480px */
    .hero__inner {
        padding: 80px 1rem 32px;
    }

    .hero__badge {
        padding: 8px 16px;
    }

    .hero__badge span {
        font-size: 0.75rem;
    }

    .hero__title {
        font-size: 1.875rem;
    }

    .hero__desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero__btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero__stats {
        gap: 1px;
        border-radius: 12px;
    }

    .hero__stat {
        padding: 1rem 0.75rem;
    }

    .hero__stat strong {
        font-size: 1.25rem;
    }

    .fe-trust-certs {
        grid-template-columns: 1fr;
    }

    /* Why Section 480px */
    .why {
        padding: 60px 0;
    }

    .why__title {
        font-size: 26px;
    }

    .why__desc {
        font-size: 15px;
    }

    .why__card {
        padding: 20px;
    }

    .why__icon {
        width: 44px;
        height: 44px;
    }

    .why__icon img {
        width: 24px;
        height: 24px;
    }

    .why__name {
        font-size: 18px;
    }

    .why__text {
        font-size: 14px;
    }

    .why__num {
        font-size: 36px;
        top: 12px;
        right: 14px;
    }

    /* Showcase 480px */
    .showcase {
        padding: 60px 0;
    }

    .showcase__badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .showcase__title {
        font-size: 28px;
    }

    .showcase__subtitle {
        font-size: 14px;
    }

    .showcase__compare {
        height: 240px;
        border-radius: 16px;
    }

    .showcase__tag {
        top: 12px;
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 8px;
    }

    .showcase__tag--before {
        left: 12px;
    }

    .showcase__tag--after {
        right: 12px;
    }

    .showcase__handle {
        width: 40px;
        height: 40px;
    }

    .showcase__arrows img {
        width: 12px;
        height: 12px;
    }

    .showcase__details {
        padding: 16px;
        border-radius: 16px;
        margin-top: 20px;
    }

    .showcase__name {
        font-size: 18px;
    }

    .showcase__desc {
        font-size: 13px;
    }

    .showcase__stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .showcase__stat {
        flex: 1;
        min-width: 80px;
        padding: 10px 12px;
    }

    .showcase__stat-num {
        font-size: 20px;
    }

    .showcase__stat-text {
        font-size: 10px;
    }

    .showcase__flip {
        height: 260px;
    }

    .showcase__glass {
        padding: 16px;
    }

    .showcase__card-title {
        font-size: 16px;
    }

    .showcase__card-meta {
        gap: 12px;
    }

    .showcase__card-meta span {
        font-size: 12px;
    }

    .showcase__flip-hint {
        font-size: 12px;
    }

    /* Coverage 480px */
    .coverage {
        padding: 60px 0;
    }

    .coverage__badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .coverage__title {
        font-size: 26px;
    }

    .coverage__desc {
        font-size: 15px;
    }

    .coverage__stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .coverage__stat strong {
        font-size: 28px;
    }

    .coverage__stat span {
        font-size: 11px;
    }

    .coverage__cta {
        padding: 14px 24px;
        font-size: 15px;
    }

    .coverage__regions {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .coverage__region {
        padding: 10px 12px;
    }

    .coverage__name {
        font-size: 13px;
    }

    /* Steps 480px */
    .steps {
        padding: 60px 0;
    }

    .steps__head {
        margin-bottom: 32px;
    }

    .steps__label {
        font-size: 11px;
        padding: 6px 14px;
    }

    .steps__title {
        font-size: 26px;
    }

    .steps__text {
        font-size: 14px;
    }

    .steps__timeline {
        padding-left: 32px;
    }

    .steps__line {
        left: 10px;
    }

    .steps__dot {
        left: -28px;
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .steps__item {
        margin-bottom: 24px;
    }

    .steps__card {
        padding: 18px 18px 18px 65px;
        border-radius: 14px;
    }

    .steps__num {
        font-size: 32px;
        left: 14px;
    }

    .steps__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .steps__icon img {
        width: 22px;
        height: 22px;
    }

    .steps__name {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .steps__desc {
        font-size: 13px;
    }

    .steps__badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-top: 12px;
    }

    .steps__footer {
        margin-top: 32px;
    }

    .steps__btn {
        font-size: 14px;
        padding: 12px 24px;
        border-radius: 10px;
    }

    .fe-contact-badges {
        flex-direction: column;
    }
}

/* Extra Small Mobile (375px) */
@media (max-width: 375px) {
    html {
        font-size: 14px;
    }

    /* Header 375px */
    .wm-header-container {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .wm-logo-symbol {
        width: 30px;
        height: 30px;
        padding: 4px;
        border-radius: 6px;
    }

    .wm-logo-name {
        font-size: 0.9rem;
    }

    .wm-btn-blog {
        width: 36px;
        height: 36px;
        padding: 0.375rem;
    }

    .wm-btn-blog img {
        width: 18px;
        height: 18px;
    }

    .wm-nav-toggle {
        width: 36px;
        height: 36px;
        padding: 8px;
        gap: 4px;
        position: relative;
        z-index: 1002;
    }

    .wm-nav {
        width: 100%;
        padding: 70px 1rem 1.5rem;
    }

    .wm-nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    /* Hero 375px */
    .hero__inner {
        padding: 0 0.875rem 24px;
    }

    .hero__badge {
        padding: 6px 12px;
        margin-bottom: 1.5rem;
    }

    .hero__badge span {
        font-size: 0.7rem;
    }

    .hero__title {
        font-size: 1.625rem;
        margin-bottom: 1rem;
    }

    .hero__desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .hero__btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        gap: 8px;
    }

    .hero__stats {
        border-radius: 10px;
    }

    .hero__stat {
        padding: 0.875rem 0.5rem;
    }

    .hero__stat strong {
        font-size: 1.1rem;
    }

    .hero__stat span {
        font-size: 0.65rem;
    }

    .fe-section-label {
        font-size: var(--fe-font-size-xs);
        padding: var(--fe-spacing-xs) var(--fe-spacing-md);
    }

    /* Why Section 375px */
    .why {
        padding: 50px 0;
    }

    .why__container {
        padding: 0 16px;
    }

    .why__head {
        margin-bottom: 32px;
    }

    .why__label {
        font-size: 11px;
        padding: 5px 14px;
    }

    .why__title {
        font-size: 22px;
    }

    .why__desc {
        font-size: 14px;
    }

    .why__grid {
        gap: 12px;
    }

    .why__card {
        padding: 18px 16px;
    }

    .why__row {
        gap: 10px;
    }

    .why__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .why__icon img {
        width: 22px;
        height: 22px;
    }

    .why__name {
        font-size: 16px;
    }

    .why__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .why__num {
        font-size: 32px;
        top: 10px;
        right: 12px;
    }

    /* Showcase 375px */
    .showcase {
        padding: 50px 0;
    }

    .showcase__wrap {
        padding: 0 16px;
    }

    .showcase__header {
        margin-bottom: 32px;
    }

    .showcase__badge {
        font-size: 9px;
        padding: 5px 12px;
        letter-spacing: 1px;
    }

    .showcase__title {
        font-size: 24px;
    }

    .showcase__subtitle {
        font-size: 13px;
    }

    .showcase__featured {
        margin-bottom: 24px;
    }

    .showcase__compare {
        height: 200px;
        border-radius: 12px;
    }

    .showcase__tag {
        top: 10px;
        padding: 5px 8px;
        font-size: 9px;
    }

    .showcase__tag--before {
        left: 10px;
    }

    .showcase__tag--after {
        right: 10px;
    }

    .showcase__divider {
        width: 3px;
    }

    .showcase__handle {
        width: 36px;
        height: 36px;
    }

    .showcase__arrows img {
        width: 10px;
        height: 10px;
    }

    .showcase__details {
        padding: 14px;
        border-radius: 12px;
        margin-top: 16px;
    }

    .showcase__name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .showcase__desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .showcase__stats {
        gap: 8px;
    }

    .showcase__stat {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .showcase__stat-num {
        font-size: 18px;
    }

    .showcase__stat-text {
        font-size: 9px;
    }

    .showcase__grid {
        gap: 16px;
    }

    .showcase__flip {
        height: 220px;
        border-radius: 12px;
    }

    .showcase__front,
    .showcase__back {
        border-radius: 12px;
    }

    .showcase__glass {
        padding: 14px;
    }

    .showcase__card-tag {
        font-size: 9px;
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    .showcase__card-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .showcase__card-meta {
        gap: 10px;
    }

    .showcase__card-meta span {
        font-size: 11px;
    }

    .showcase__card-meta img {
        width: 12px;
        height: 12px;
    }

    .showcase__card-desc {
        font-size: 13px;
    }

    .showcase__flip-hint {
        font-size: 11px;
        margin-top: 12px;
    }

    .showcase__orb--1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .showcase__orb--2 {
        width: 250px;
        height: 250px;
        bottom: -80px;
        left: -80px;
    }

    /* Coverage 375px */
    .coverage {
        padding: 50px 0;
    }

    .coverage__container {
        padding: 0 16px;
    }

    .coverage__badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .coverage__title {
        font-size: 22px;
    }

    .coverage__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .coverage__stats {
        gap: 16px;
        margin-bottom: 28px;
    }

    .coverage__stat strong {
        font-size: 24px;
    }

    .coverage__stat span {
        font-size: 10px;
    }

    .coverage__cta {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    .coverage__map {
        margin-top: 10px;
    }

    .coverage__regions {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .coverage__region {
        padding: 8px 10px;
        border-radius: 8px;
    }

    .coverage__dot {
        width: 8px;
        height: 8px;
    }

    .coverage__name {
        font-size: 12px;
    }

    /* Steps 375px */
    .steps {
        padding: 50px 0;
    }

    .steps__container {
        padding: 0 16px;
    }

    .steps__head {
        margin-bottom: 28px;
    }

    .steps__label {
        font-size: 10px;
        padding: 5px 12px;
    }

    .steps__title {
        font-size: 22px;
    }

    .steps__text {
        font-size: 13px;
    }

    .steps__timeline {
        padding-left: 28px;
    }

    .steps__line {
        left: 8px;
        bottom: 40px;
    }

    .steps__dot {
        left: -24px;
        top: 20px;
        width: 12px;
        height: 12px;
    }

    .steps__item {
        margin-bottom: 20px;
    }

    .steps__card {
        padding: 16px 16px 16px 55px;
        border-radius: 12px;
    }

    .steps__num {
        font-size: 28px;
        left: 12px;
    }

    .steps__icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .steps__icon img {
        width: 20px;
        height: 20px;
    }

    .steps__name {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .steps__desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .steps__badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-top: 10px;
    }

    .steps__badge img {
        width: 12px;
        height: 12px;
    }

    .steps__footer {
        margin-top: 28px;
    }

    .steps__btn {
        font-size: 13px;
        padding: 11px 20px;
        border-radius: 8px;
        gap: 8px;
    }

    .steps__btn img {
        width: 18px;
        height: 18px;
    }
}

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