/* =============================================
   KICKSBERG - MODERN DESIGN SYSTEM
   Modern Theme with Dark Colors & Red Accents
   ============================================= */

/* CSS Variables - Design System */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --bg-dark: #0f0f0f;
    --text-dark: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --accent-primary: #e63946;
    --accent-secondary: #ff6b6b;
    --accent-dark: #c1121f;
    --border-color: #2a2a2a;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.5);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

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

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

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo-svg {
    width: 420px;
    height: 120px;
    margin-bottom: 20px;
    mix-blend-mode: screen;
    border-radius: 12px;
    object-fit: contain;
}

.header-logo {
    width: 360px;
    height: 90px;
    mix-blend-mode: screen;
    border-radius: 12px;
    object-fit: contain;
    object-position: left center;
}

.footer-logo {
    width: 225px;
    height: 60px;
    mix-blend-mode: screen;
    border-radius: 12px;
    object-fit: contain;
    object-position: left center;
}

.preloader-text {
    font-size: 1rem;
    color: var(--accent-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =============================================
   COOKIE POPUP
   ============================================= */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    padding: 24px;
    z-index: 9998;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--accent-primary);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.cookie-popup.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cookie-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cookie-btn {
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-btn-accept {
    background: var(--accent-primary);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
    border-color: var(--text-muted);
    color: var(--text-light);
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--accent-primary);
    transition: var(--transition-fast);
}

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

/* =============================================
   CONTAINER
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-small {
    max-width: 800px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.main-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.subsection-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.card-heading {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.paragraph {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.paragraph-small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.paragraph-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 12px;
    display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--text-dark);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   DISCLOSURE BAR
   ============================================= */
.disclosure-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.disclosure-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.disclosure-text strong {
    color: var(--text-light);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

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

/* =============================================
   HAMBURGER MENU
   ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-secondary);
    z-index: 175;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 80px 30px 40px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

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

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
}

.hero-price {
    margin-bottom: 24px;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.bullet-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.bullet-icon {
    margin-right: 8px;
    color: var(--accent-primary);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-large);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.hero-image-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-image-caption {
    padding-top: 16px;
    text-align: center;
}

.caption-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.caption-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
    padding: clamp(60px, 8vw, 90px) 0;
    border-top: 1px solid var(--border-color);
}

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

.section-header-centered {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

/* =============================================
   COMPARISON GRID
   ============================================= */
.comparison-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr 1.1fr;
    gap: 20px;
    margin-top: 40px;
}

.comparison-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 24px 0;
}

.comparison-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 16px 0;
    border-bottom: 1px dashed var(--border-color);
}

.comparison-label:last-child {
    border-bottom: none;
}

.comparison-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    position: relative;
}

.comparison-card.featured {
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-medium);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.comparison-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.row-mobile-title {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.row-value {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

/* =============================================
   SHOWCASE GRID
   ============================================= */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.editorial-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.editorial-block {
    background: var(--bg-card);
    border-radius: 12px;
    padding: clamp(24px, 5vw, 40px);
    border: 1px solid var(--border-color);
}

.editorial-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.feature-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--accent-primary);
}

/* =============================================
   OFFER CARD (STICKY)
   ============================================= */
.offer-aside {
    position: sticky;
    top: 110px;
    z-index: 10;
}

.offer-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-large);
    padding: 30px;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge-accent {
    background: var(--accent-primary);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
}

.offer-badge {
    background: var(--bg-secondary);
    color: #4CAF50;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #4CAF50;
}

.offer-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0;
}

.offer-details-list {
    padding: 0;
    margin: 20px 0;
}

.details-item {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.details-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.trust-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

/* =============================================
   REVIEWS GRID
   ============================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.stars-row {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.user-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 12px 0;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-trigger:hover {
    color: var(--accent-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-top: 8px;
    padding-bottom: 16px;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    color: var(--accent-primary);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-copyright {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.legal-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-box {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: clamp(24px, 5vw, 50px);
    margin: 40px 0 60px;
}

.legal-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-block {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.contact-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-grid,
    .showcase-grid,
    .comparison-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-labels {
        display: none;
    }

    .row-mobile-title {
        display: block;
    }

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

    .offer-aside {
        position: relative;
        top: 0;
    }

    .hero-content {
        text-align: center;
    }

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

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

    .footer-grid {
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-inner {
        min-height: 65px;
        padding: 8px 0;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .preloader-logo {
        font-size: 2rem;
    }

    .main-heading {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .section-heading {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .hero-price .price-current {
        font-size: 2rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
