/*
 * Fynquarel - Soundproof windows for mental wellness
 * Полностью адаптивный главный CSS для всех страниц сайта
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary: #A8C3E0;
    --primary-light: #c3d7ea;
    --primary-dark: #8baed0;
    --primary-transparent: rgba(168, 195, 224, 0.9);
    --secondary: #F4F5F6;
    --secondary-dark: #e6e7e8;
    --accent: #B8C9A6;
    --accent-dark: #a8b996;
    --text: #36454F;
    --text-light: #6c7a85;
    --text-dark: #2a3740;
    --text-white: #ffffff;
    --background: #ffffff;
    --background-light: #f9fafb;

    /* Typography */
    --heading-font: 'Lora', serif;
    --body-font: 'Nunito Sans', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;   /* 12px */
    --text-sm: 0.875rem;  /* 14px */
    --text-base: 1rem;    /* 16px */
    --text-md: 1.125rem;  /* 18px */
    --text-lg: 1.25rem;   /* 20px */
    --text-xl: 1.5rem;    /* 24px */
    --text-2xl: 1.75rem;  /* 28px */
    --text-3xl: 2rem;     /* 32px */
    --text-4xl: 2.5rem;   /* 40px */
    --text-5xl: 3rem;     /* 48px */

    /* Spacing */
    --space-xxxs: 0.125rem; /* 2px */
    --space-xxs: 0.25rem;   /* 4px */
    --space-xs: 0.5rem;     /* 8px */
    --space-sm: 0.75rem;    /* 12px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-xxl: 3rem;      /* 48px */
    --space-xxxl: 4rem;     /* 64px */
    --site-header-height: 80px;

    /* Borders */
    --border-radius-xs: 0.125rem;  /* 2px */
    --border-radius-sm: 0.25rem;   /* 4px */
    --border-radius-md: 0.5rem;    /* 8px */
    --border-radius-lg: 1rem;      /* 16px */
    --border-radius-xl: 1.5rem;    /* 24px */
    --border-radius-full: 9999px;
    --border-width-thin: 1px;
    --border-width-normal: 2px;
    --border-width-thick: 3px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);

    /* Z-index layers */
    --z-below: -1;
    --z-normal: 1;
    --z-above: 10;
    --z-header: 100;
    --z-modal: 200;
    --z-tooltip: 300;
    --z-max: 999;
}

/* ===== RESET AND BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--site-header-height);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

/* Ensure content is pushed down to account for fixed header */
body::before {
    content: '';
    display: block;
    height: var(--site-header-height);
    margin-top: calc(-1 * var(--site-header-height));
    visibility: hidden;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-weight: 600;
    color: var(--text);
}

h1 {
    font-size: var(--text-4xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-3xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-xl);
}

h4 {
    font-size: var(--text-lg);
}

h5 {
    font-size: var(--text-md);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover, a:focus {
    color: var(--primary);
    text-decoration: underline;
    outline: none;
}

a:active {
    transform: translateY(1px);
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button {
    cursor: pointer;
    font-family: var(--body-font);
    border: none;
    background: none;
    padding: 0;
    color: inherit;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

::selection {
    background-color: var(--primary-light);
    color: var(--text-dark);
}

section {
    padding: var(--space-xxl) 0;
    position: relative;
}

/* Fix for iOS input styling */
input,
textarea,
select,
button {
    -webkit-appearance: none;
    border-radius: 0;
}

/* Remove Chrome's focus outline on inputs */
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== CONTAINER ===== */
.fynquarel-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== HEADER ===== */
.fynquarel-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    height: var(--site-header-height);
    transition: all var(--transition-normal);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/*.fynquarel-header.scrolled {*/
/*    box-shadow: var(--shadow-md);*/
/*    height: calc(var(--site-header-height) * 0.8);*/
/*}*/

.fynquarel-header-inner {
    position: relative;
    top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.fynquarel-logo {
    position: relative;
    /*z-index: calc(var(--z-header) + 10);*/
}

.fynquarel-logo img {
    width: auto;
    height: 70px;
    display: block;
    transition: all var(--transition-normal);
}

/*.fynquarel-header.scrolled .fynquarel-logo img {*/
/*    transform: scale(0.9);*/
/*}*/

.fynquarel-nav {
    height: 100%;
}

.fynquarel-nav ul {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    height: 100%;
}

.fynquarel-nav li {
    height: 100%;
    display: flex;
    align-items: center;
}

.fynquarel-nav a {
    color: var(--text);
    font-weight: 600;
    position: relative;
    padding: 0 var(--space-xs);
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.fynquarel-nav a.active::after,
.fynquarel-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform-origin: right center;
    transform: scaleX(1);
    transition: transform var(--transition-normal);
}

.fynquarel-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.fynquarel-nav a:hover::after {
    transform-origin: left center;
    transform: scaleX(1);
}

.fynquarel-nav a.fynquarel-btn {
    border-radius: var(--border-radius-md);
    padding: var(--space-sm) var(--space-lg);
    height: auto;
}

.fynquarel-nav a.fynquarel-btn::after {
    display: none;
}

/* Menu toggle */
.fynquarel-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: calc(var(--z-header) + 10);
}

.fynquarel-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-sm);
    transform-origin: center;
}

.fynquarel-menu-toggle.open span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.fynquarel-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.fynquarel-menu-toggle.open span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu overlay */
.fynquarel-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-header) - 1);
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
}

.fynquarel-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* ===== BUTTONS ===== */
.fynquarel-btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: var(--text-base);
    text-decoration: none !important;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.fynquarel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-30deg);
    transition: transform 0.5s ease;
}

.fynquarel-btn:hover::before {
    transform: translateX(100%) skewX(-30deg);
}

.fynquarel-btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 2px 4px rgba(168, 195, 224, 0.3);
}

.fynquarel-btn-primary:hover,
.fynquarel-btn-primary:focus {
    background-color: var(--primary-dark);
    color: var(--text-white);
    box-shadow: 0 4px 8px rgba(168, 195, 224, 0.5);
    transform: translateY(-2px);
}

.fynquarel-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(168, 195, 224, 0.3);
}

.fynquarel-btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 4px rgba(168, 195, 224, 0.1);
}

.fynquarel-btn-outline:hover,
.fynquarel-btn-outline:focus {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 8px rgba(168, 195, 224, 0.3);
    transform: translateY(-2px);
}

.fynquarel-btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(168, 195, 224, 0.1);
}

.fynquarel-btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

.fynquarel-btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
}

.fynquarel-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Button group */
.fynquarel-btn-group {
    display: flex;
    gap: var(--space-md);
}

/* ===== HERO SECTION ===== */
.fynquarel-hero {
    padding-top: calc(var(--site-header-height) + var(--space-xl));
    padding-bottom: var(--space-xxxl);
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.fynquarel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/8.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.fynquarel-hero-small {
    padding-top: calc(var(--site-header-height) + var(--space-lg));
    padding-bottom: var(--space-xxl);
}

.fynquarel-hero .fynquarel-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.fynquarel-hero-content {
    flex: 1;
    min-width: 280px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fynquarel-hero-image {
    flex: 1;
    min-width: 280px;
    position: relative;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fynquarel-hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.fynquarel-hero-image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.fynquarel-hero h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    color: var(--text);
    position: relative;
    padding-bottom: var(--space-sm);
}

.fynquarel-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.fynquarel-hero p {
    font-size: var(--text-md);
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    max-width: 600px;
}

.fynquarel-hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===== SECTION HEADERS ===== */
.fynquarel-section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fynquarel-section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-md);
    display: inline-block;
}

.fynquarel-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.fynquarel-section-header p {
    color: var(--text-light);
    font-size: var(--text-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BENEFITS SECTION ===== */
.fynquarel-benefits {
    padding: var(--space-xxxl) 0;
    position: relative;
    background-color: var(--background);
    overflow: hidden;
}

.fynquarel-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/7.webp');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.fynquarel-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.fynquarel-benefit-card {
    padding: var(--space-lg);
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.fynquarel-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.fynquarel-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fynquarel-benefit-card:hover::before {
    transform: scaleX(1);
}

.fynquarel-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.fynquarel-benefit-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: all var(--transition-normal);
}

.fynquarel-benefit-card:hover .fynquarel-benefit-icon::after {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.2);
}

.fynquarel-benefit-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    transition: color var(--transition-normal);
}

.fynquarel-benefit-card:hover h3 {
    color: var(--primary-dark);
}

/* ===== PRODUCTS SECTION ===== */
.fynquarel-products {
    padding: var(--space-xxxl) 0;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.fynquarel-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.02), transparent);
}

.fynquarel-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.fynquarel-product-card {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--background);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.03);
}

.fynquarel-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fynquarel-product-image {
    flex: 1;
    min-width: 280px;
    overflow: hidden;
}

.fynquarel-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.fynquarel-product-card:hover .fynquarel-product-image img {
    transform: scale(1.05);
}

.fynquarel-product-content {
    flex: 1;
    min-width: 280px;
    padding: var(--space-xl);
    position: relative;
}

.fynquarel-product-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-normal);
}

.fynquarel-product-card:hover .fynquarel-product-content::before {
    transform: scaleY(1);
}

.fynquarel-product-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-normal);
}

.fynquarel-product-card:hover h3 {
    color: var(--primary-dark);
}

.fynquarel-product-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.fynquarel-product-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
}

.fynquarel-product-features {
    margin: var(--space-lg) 0;
}

.fynquarel-product-features li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-xl);
}

.fynquarel-product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
}

/* ===== TESTIMONIALS SECTION ===== */
.fynquarel-testimonials {
    padding: var(--space-xxxl) 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.fynquarel-testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 300px;
    color: var(--primary-light);
    font-family: var(--heading-font);
    opacity: 0.1;
    z-index: 0;
    line-height: 0;
}

.fynquarel-testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.fynquarel-testimonial {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.fynquarel-testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.fynquarel-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fynquarel-testimonial:hover::after {
    transform: scaleX(1);
}

.fynquarel-testimonial-quote {
    position: relative;
    padding: var(--space-md) 0;
}

.fynquarel-testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: var(--heading-font);
}

.fynquarel-testimonial-author {
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: var(--space-md);
}

.fynquarel-testimonial-author h4 {
    margin-bottom: var(--space-xxs);
    font-size: var(--text-md);
    transition: color var(--transition-normal);
}

.fynquarel-testimonial:hover .fynquarel-testimonial-author h4 {
    color: var(--primary-dark);
}

.fynquarel-testimonial-author p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.fynquarel-cta {
    background-color: var(--primary);
    padding: var(--space-xxxl) 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.fynquarel-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), transparent);
    z-index: 1;
}

.fynquarel-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background-image: url('../images/6.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.fynquarel-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fynquarel-cta h2 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-size: var(--text-3xl);
}

.fynquarel-cta p {
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    font-size: var(--text-md);
}

.fynquarel-cta .fynquarel-btn-primary {
    background-color: var(--text-white);
    color: var(--primary-dark);
}

.fynquarel-cta .fynquarel-btn-primary:hover {
    background-color: var(--secondary);
}

.fynquarel-cta .fynquarel-btn-outline {
    border-color: var(--text-white);
    color: var(--text-white);
}

.fynquarel-cta .fynquarel-btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-dark);
}

/* ===== FOOTER ===== */
.fynquarel-footer {
    background-color: var(--text);
    color: var(--text-white);
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.fynquarel-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.fynquarel-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.fynquarel-footer-col {
    margin-bottom: var(--space-lg);
}

.fynquarel-footer h4 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
    position: relative;
    padding-bottom: var(--space-xs);
    display: inline-block;
}

.fynquarel-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.fynquarel-footer-links li {
    margin-bottom: var(--space-sm);
}

.fynquarel-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: var(--space-sm);
    display: inline-block;
}

.fynquarel-footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.fynquarel-footer-links a:hover {
    color: var(--text-white);
    padding-left: var(--space-md);
    text-decoration: none;
}

.fynquarel-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.fynquarel-footer-links a.active {
    color: var(--primary-light);
}

.fynquarel-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
}

.fynquarel-contact-info i {
    margin-right: var(--space-sm);
    font-size: var(--text-lg);
    color: var(--primary);
    position: relative;
    top: 3px;
}

.fynquarel-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    position: relative;
    z-index: 1;
}

/* ===== COOKIE CONSENT ===== */
.fynquarel-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text);
    color: var(--text-white);
    padding: var(--space-lg);
    z-index: var(--z-modal);
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
}

.fynquarel-cookie-consent.visible {
    display: block;
    animation: slideUp var(--transition-normal);
}

.fynquarel-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.fynquarel-cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 280px;
}

.fynquarel-cookie-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ===== CONTACT PAGE ===== */
.fynquarel-contact-section {
    padding: var(--space-xxxl) 0;
    background-color: var(--background);
    position: relative;
}

.fynquarel-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/9.webp');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.fynquarel-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    position: relative;
    right: 13px;
    z-index: 1;
}

.fynquarel-contact-info-box {
    background-color: var(--secondary);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    height: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.fynquarel-contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 30%;
    background-image: url('../images/5.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.fynquarel-contact-info-box h3 {
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
    display: inline-block;
    z-index: 1;
}

.fynquarel-contact-info-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.fynquarel-contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.fynquarel-contact-item {
    display: flex;
    align-items: flex-start;
}

.fynquarel-contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    color: var(--primary-dark);
    font-size: var(--text-lg);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.fynquarel-contact-item:hover .fynquarel-contact-icon {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.fynquarel-contact-text h4 {
    margin-bottom: var(--space-xs);
    font-size: var(--text-md);
    transition: color var(--transition-normal);
}

.fynquarel-contact-item:hover .fynquarel-contact-text h4 {
    color: var(--primary-dark);
}

.fynquarel-contact-map {
    height: 100%;
    min-height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.fynquarel-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 1;
}

.fynquarel-contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.fynquarel-contact-form {
    margin-top: var(--space-xxl);
    background-color: var(--background);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.fynquarel-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    z-index: 0;
}

.fynquarel-form-row {
    margin-bottom: var(--space-lg);
}

.fynquarel-form-group {
    margin-bottom: var(--space-lg);
}

.fynquarel-form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text);
}

.fynquarel-form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: var(--text-base);
    transition: all var(--transition-normal);
    background-color: var(--background-light);
}

.fynquarel-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 195, 224, 0.2);
}

.fynquarel-form-control.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

textarea.fynquarel-form-control {
    min-height: 150px;
    resize: vertical;
}

.fynquarel-form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    position: relative;
}

.fynquarel-form-checkbox input {
    margin-right: var(--space-sm);
    margin-top: 5px;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-xs);
    position: relative;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.fynquarel-form-checkbox input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.fynquarel-form-checkbox input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: var(--text-xs);
    font-weight: bold;
}

.fynquarel-form-checkbox input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 195, 224, 0.2);
}

.fynquarel-form-checkbox.error input {
    border-color: #e74c3c;
}

.fynquarel-form-submit {
    text-align: right;
}

/* ===== THANK YOU PAGE ===== */
.fynquarel-thank-you {
    padding-top: calc(var(--site-header-height) + var(--space-lg));
    padding-bottom: var(--space-xxl);
    text-align: center;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.fynquarel-thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/4.webp');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.fynquarel-thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-xl);
    background-color: var(--secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
}

.fynquarel-thank-you h1 {
    margin-bottom: var(--space-lg);
    font-size: var(--text-3xl);
}

.fynquarel-thank-you p {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    font-size: var(--text-md);
}

.fynquarel-icon-large {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    display: inline-block;
    position: relative;
}

.fynquarel-icon-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

/* ===== 404 PAGE ===== */
.fynquarel-error {
    padding-top: calc(var(--site-header-height) + var(--space-lg));
    padding-bottom: var(--space-xxl);
    text-align: center;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.fynquarel-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/3.webp');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.fynquarel-error-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
}

.fynquarel-error h1 {
    font-size: 8rem;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.fynquarel-error h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent);
    border-radius: var(--border-radius-full);
}

.fynquarel-error h2 {
    margin-bottom: var(--space-lg);
    font-size: var(--text-2xl);
}

.fynquarel-error p {
    margin-bottom: var(--space-xl);
    color: var(--text-light);
    font-size: var(--text-md);
}

/* ===== LEGAL PAGES ===== */
.fynquarel-legal-content {
    padding-top: calc(var(--site-header-height) + var(--space-lg));
    padding-bottom: var(--space-xxl);
    max-width: 900px;
    margin: 0 auto;
}

.fynquarel-legal-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background-color: var(--background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.fynquarel-legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.fynquarel-legal-section h1 {
    font-size: var(--text-3xl);
    color: var(--text);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.fynquarel-legal-section h2 {
    font-size: var(--text-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--primary-light);
}

.fynquarel-legal-section h3 {
    font-size: var(--text-lg);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.fynquarel-legal-section p,
.fynquarel-legal-section ul,
.fynquarel-legal-section ol {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    color: var(--text);
}

.fynquarel-legal-section ul,
.fynquarel-legal-section ol {
    padding-left: var(--space-xl);
}

.fynquarel-legal-section ul li,
.fynquarel-legal-section ol li {
    margin-bottom: var(--space-sm);
    position: relative;
}

.fynquarel-legal-section ul li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--primary);
}

.fynquarel-legal-section ol {
    counter-reset: item;
    list-style-type: none;
}

.fynquarel-legal-section ol li {
    counter-increment: item;
}

.fynquarel-legal-section ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: -25px;
    color: var(--primary);
    font-weight: 600;
}

.fynquarel-legal-meta {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    font-style: italic;
}

.fynquarel-legal-contact {
    background-color: var(--secondary);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    margin-top: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.fynquarel-legal-contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    background-image: url('../images/2.webp');
    background-size: cover;
    opacity: 0.05;
}

.fynquarel-legal-contact h3 {
    margin-top: 0;
    position: relative;
}

.fynquarel-legal-navigation {
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===== TECH PAGES ===== */
.fynquarel-tech-hero {
    background-image: linear-gradient(rgba(244, 245, 246, 0.9), rgba(244, 245, 246, 0.7)), url('../images/1.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.fynquarel-tech-section {
    padding: var(--space-xxl) 0;
}

.fynquarel-tech-section:nth-child(even) {
    background-color: var(--background);
}

.fynquarel-tech-section:nth-child(odd) {
    background-color: var(--secondary);
}

.fynquarel-tech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xl);
}

.fynquarel-tech-content {
    flex: 1;
    min-width: 320px;
}

.fynquarel-tech-image {
    flex: 1;
    min-width: 320px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.fynquarel-tech-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.fynquarel-tech-image:hover img {
    transform: scale(1.05);
}

.fynquarel-tech-badge {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    background-color: var(--primary);
    color: var(--text-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.fynquarel-tech-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
    position: relative;
    padding-bottom: var(--space-sm);
}

.fynquarel-tech-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.fynquarel-tech-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.fynquarel-tech-features {
    margin-top: var(--space-lg);
}

.fynquarel-tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.fynquarel-tech-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    color: var(--primary-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.fynquarel-tech-feature:hover .fynquarel-tech-feature-icon {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.fynquarel-tech-feature-text h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.2rem;
    transition: color var(--transition-normal);
}

.fynquarel-tech-feature:hover .fynquarel-tech-feature-text h3 {
    color: var(--primary-dark);
}

.fynquarel-tech-table-container {
    overflow-x: auto;
    margin-top: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.fynquarel-tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-lg);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.fynquarel-tech-table th,
.fynquarel-tech-table td {
    padding: var(--space-md);
    text-align: left;
    border: 1px solid #e0e0e0;
}

.fynquarel-tech-table th {
    background-color: var(--primary);
    color: var(--text-white);
    font-weight: 600;
}

.fynquarel-tech-table tr:nth-child(even) {
    background-color: var(--secondary);
}

.fynquarel-tech-table td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

.fynquarel-tech-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    margin-top: var(--space-xl);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fynquarel-tech-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== TABLES ===== */
.fynquarel-table-container {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.fynquarel-table {
    width: 100%;
    border-collapse: collapse;
}

.fynquarel-table th,
.fynquarel-table td {
    padding: var(--space-md);
    text-align: left;
    border: 1px solid #ddd;
}

.fynquarel-table th {
    background-color: var(--primary-light);
    color: var(--text);
    font-weight: 600;
}

.fynquarel-table tr:nth-child(even) {
    background-color: var(--secondary);
}

.fynquarel-table tr:hover {
    background-color: rgba(168, 195, 224, 0.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn var(--transition-normal) forwards;
}

.animate-slide-up {
    animation: slideInUp var(--transition-normal) forwards;
}

.animate-slide-left {
    animation: slideInLeft var(--transition-normal) forwards;
}

.animate-slide-right {
    animation: slideInRight var(--transition-normal) forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* ===== UTILITY CLASSES ===== */
.fynquarel-text-center {
    text-align: center;
}

.fynquarel-text-left {
    text-align: left;
}

.fynquarel-text-right {
    text-align: right;
}

.fynquarel-mt-sm { margin-top: var(--space-sm); }
.fynquarel-mt-md { margin-top: var(--space-md); }
.fynquarel-mt-lg { margin-top: var(--space-lg); }
.fynquarel-mt-xl { margin-top: var(--space-xl); }

.fynquarel-mb-sm { margin-bottom: var(--space-sm); }
.fynquarel-mb-md { margin-bottom: var(--space-md); }
.fynquarel-mb-lg { margin-bottom: var(--space-lg); }
.fynquarel-mb-xl { margin-bottom: var(--space-xl); }

.fynquarel-hidden {
    display: none !important;
}

.fynquarel-visible {
    display: block !important;
}

.fynquarel-flex {
    display: flex;
}

.fynquarel-flex-col {
    flex-direction: column;
}

.fynquarel-items-center {
    align-items: center;
}

.fynquarel-justify-center {
    justify-content: center;
}

.fynquarel-justify-between {
    justify-content: space-between;
}

.fynquarel-gap-sm { gap: var(--space-sm); }
.fynquarel-gap-md { gap: var(--space-md); }
.fynquarel-gap-lg { gap: var(--space-lg); }

.fynquarel-w-full {
    width: 100%;
}

.fynquarel-h-full {
    height: 100%;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .fynquarel-container {
        width: 95%;
    }

    :root {
        --site-header-height: 70px;
    }

    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    h3 {
        font-size: var(--text-xl);
    }

    .fynquarel-tech-content h2 {
        font-size: var(--text-2xl);
    }

    .fynquarel-hero h1 {
        font-size: var(--text-3xl);
    }

    .fynquarel-section-header h2 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 992px) {
    :root {
        --site-header-height: 60px;
    }

    html {
        font-size: 15px;
    }

    .fynquarel-menu-toggle {
        display: flex;
    }

    .fynquarel-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--background);
        box-shadow: var(--shadow-lg);
        padding: 80px var(--space-lg) var(--space-lg);
        transition: all var(--transition-normal);
        z-index: calc(var(--z-header) - 1);
        overflow-y: auto;
    }

    .fynquarel-nav.open {
        right: 0;
    }

    .fynquarel-nav ul {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .fynquarel-nav li {
        width: 100%;
        height: auto;
    }

    .fynquarel-nav a {
        display: block;
        padding: var(--space-md) 0;
        height: auto;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .fynquarel-nav a::after,
    .fynquarel-nav a.active::after,
    .fynquarel-nav a:hover::after {
        display: none;
    }

    .fynquarel-nav a.fynquarel-btn {
        margin-top: var(--space-md);
        text-align: center;
    }

    .fynquarel-product-card {
        flex-direction: column;
    }

    .fynquarel-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .fynquarel-cookie-buttons {
        justify-content: center;
    }

    .fynquarel-process-steps::before {
        left: 30px;
    }

    .fynquarel-process-step,
    .fynquarel-process-step:nth-child(even) {
        flex-direction: column;
        padding-left: 60px;
    }

    .fynquarel-process-number {
        left: 30px;
        transform: translateX(-50%);
        top: 0;
    }

    .fynquarel-process-content {
        width: 100%;
        margin-top: 30px;
    }

    .fynquarel-tech-container {
        flex-direction: column;
    }

    .fynquarel-tech-section:nth-child(odd) .fynquarel-tech-container {
        flex-direction: column-reverse;
    }

    .fynquarel-tech-content,
    .fynquarel-tech-image {
        width: 100%;
    }

    .fynquarel-tech-content h2 {
        font-size: var(--text-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --site-header-height: 60px;
    }

    html {
        font-size: 14px;
    }

    h1 {
        font-size: var(--text-2xl);
    }

    h2 {
        font-size: var(--text-xl);
    }

    h3 {
        font-size: var(--text-lg);
    }

    section {
        padding: var(--space-xl) 0;
    }

    .fynquarel-hero {
        padding-top: calc(var(--site-header-height) + var(--space-md));
        padding-bottom: var(--space-xl);
    }

    .fynquarel-hero-small {
        padding-top: calc(var(--site-header-height) + var(--space-md));
        padding-bottom: var(--space-lg);
    }

    .fynquarel-hero h1 {
        font-size: var(--text-2xl);
    }

    .fynquarel-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .fynquarel-hero-buttons .fynquarel-btn {
        width: 100%;
        text-align: center;
    }

    .fynquarel-section-header h2 {
        font-size: var(--text-xl);
    }

    .fynquarel-wellness-intro::after {
        width: 100%;
        opacity: 0.1;
    }

    .fynquarel-benefit-card,
    .fynquarel-stat-card,
    .fynquarel-expert-quote,
    .fynquarel-area-card {
        padding: var(--space-md);
    }

    .fynquarel-footer-grid {
        grid-template-columns: 1fr;
    }

    .fynquarel-error h1 {
        font-size: var(--text-5xl);
    }

    .fynquarel-contact-form {
        padding: var(--space-lg);
    }

    .fynquarel-form-submit {
        text-align: center;
    }

    .fynquarel-form-submit .fynquarel-btn {
        width: 100%;
    }

    .fynquarel-legal-section {
        padding: var(--space-lg);
    }

    .fynquarel-legal-section h1 {
        font-size: var(--text-xl);
    }

    .fynquarel-legal-section h2 {
        font-size: var(--text-lg);
    }

    .fynquarel-table th,
    .fynquarel-table td {
        padding: var(--space-sm);
        font-size: 0.9rem;
    }

    .fynquarel-tech-feature {
        flex-direction: column;
    }

    .fynquarel-tech-feature-icon {
        margin-bottom: var(--space-sm);
        margin-right: 0;
    }

    .fynquarel-tech-table th,
    .fynquarel-tech-table td {
        padding: var(--space-sm);
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    :root {
        --site-header-height: 60px;
    }

    .fynquarel-container {
        width: 92%;
        padding: 0 var(--space-sm);
    }

    h1 {
        font-size: var(--text-xl);
    }

    h2 {
        font-size: var(--text-lg);
    }

    .fynquarel-hero-small {
        padding-top: calc(var(--site-header-height) + var(--space-md));
    }

    .fynquarel-benefit-icon,
    .fynquarel-contact-icon,
    .fynquarel-benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .fynquarel-cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .fynquarel-cookie-buttons .fynquarel-btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }

    .fynquarel-decibel-marker {
        font-size: 0.8rem;
    }

    .fynquarel-expert-avatar {
        width: 50px;
        height: 50px;
    }

    .fynquarel-process-content {
        padding: var(--space-md);
    }

    .fynquarel-area-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .fynquarel-error h1 {
        font-size: var(--text-4xl);
    }

    .fynquarel-error h2 {
        font-size: var(--text-lg);
    }

    .fynquarel-map-container {
        height: 300px;
    }

    .fynquarel-contact-info-box {
        padding: var(--space-lg);
    }

    .fynquarel-thank-you-content,
    .fynquarel-calculator-container {
        padding: var(--space-md);
    }

    .fynquarel-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .fynquarel-btn-group .fynquarel-btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }

    .fynquarel-tech-content h2 {
        font-size: var(--text-lg);
    }

    .fynquarel-tech-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .fynquarel-header,
    .fynquarel-cookie-consent,
    .fynquarel-menu-toggle,
    .fynquarel-cta,
    .fynquarel-footer,
    .fynquarel-btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background-color: #fff;
    }

    body::before {
        display: none;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    .fynquarel-hero,
    .fynquarel-thank-you,
    section {
        padding: 1cm 0;
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    .fynquarel-container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
}