/* ============================================
   AUTOSKLO H&D - Main Stylesheet
   Modern, responsive design with glass-inspired aesthetics
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0066FF;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --primary-bg: #EBF3FF;

    --dark: #0a1628;
    --dark-800: #111d33;
    --dark-700: #1a2744;
    --dark-600: #243352;
    --dark-500: #2a3f6a;

    --gray-900: #1a1d26;
    --gray-800: #2d3142;
    --gray-700: #404659;
    --gray-600: #5c6178;
    --gray-500: #7c8198;
    --gray-400: #9ca1b5;
    --gray-300: #c5c9d6;
    --gray-200: #e2e5ed;
    --gray-100: #f2f4f8;
    --gray-50: #f8f9fb;

    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 24px 48px rgba(10, 22, 40, 0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;

    --container: 1200px;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
    color: var(--white);
}

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

/* ---------- Utility ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

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

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--gray-800);
    border-color: var(--gray-300);
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

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

.btn--white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
    height: var(--header-h);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 32px;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-icon {
    height: 36px;
    width: auto;
    display: block;
}

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

.header__nav-link {
    display: block;
    padding: 8px 14px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--primary);
    background: var(--primary-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
}

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

.header__cta {
    font-size: 14px;
    padding: 10px 20px;
}

/* Burger */
.header__burger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--dark);
}

.section--gray {
    background: var(--gray-50);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-bg);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section__tag--light {
    background: rgba(77, 148, 255, 0.15);
    color: var(--primary-light);
}

.section__title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.section__title--light {
    color: var(--white);
}

.section__desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

.section__desc--light {
    color: var(--gray-400);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 102, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 198, 255, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 22, 40, 0.25) 0%,
            rgba(10, 22, 40, 0.15) 40%,
            rgba(10, 22, 40, 0.35) 100%),
        linear-gradient(90deg,
            rgba(0, 102, 255, 0.06) 0%,
            transparent 60%);
}

/* Hero photo variant - white text */
.hero--photo .hero__badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero--photo .hero__badge-dot {
    background: #34d399;
}

.hero--photo .hero__title {
    color: var(--white);
}

.hero--photo .text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero--photo .hero__subtitle {
    color: rgba(255, 255, 255, 0.80);
}

.hero--photo .hero__stats {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero--photo .hero__stat-number {
    color: var(--white);
}

.hero--photo .hero__stat-label {
    color: rgba(255, 255, 255, 0.65);
}

.hero--photo .hero__scroll a {
    color: rgba(255, 255, 255, 0.5);
}

.hero--photo .hero__scroll a:hover {
    color: var(--white);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero__subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll a {
    color: var(--gray-400);
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    overflow: hidden;
}

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

.service-card--featured {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.service-card--featured:hover {
    border-color: var(--primary-dark);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__desc {
    color: var(--white);
}

.service-card--featured .service-card__features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card__desc {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.service-card__features li svg {
    flex-shrink: 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.service-card__link:hover {
    gap: 10px;
}

.service-card__link--white {
    color: var(--white);
}

.service-card__link--white:hover {
    color: var(--white);
}

/* ============================================
   ORDER CTA (blue banner after services)
   ============================================ */
.order-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0052cc 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.order-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

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

.order-cta__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.order-cta__desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.order-cta__desc strong {
    color: var(--white);
}

.order-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.order-cta__badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.order-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}

.order-cta__badge svg {
    color: rgba(255,255,255,0.9);
}

/* ============================================
   BRANCHES / MAP
   ============================================ */
/* Background map decoration */
.branches {
    position: relative;
    overflow: hidden;
}

.branches__bg-map {
    position: absolute;
    inset: 0;
    background: url('../img/mapa.png') center 40% / 70% no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

/* Branch list + detail grid */
.branches__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

/* Branch list panel */
.branches__list-panel {
    background: var(--dark-800);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--dark-500);
}

.branches__list-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.branches__list-title svg {
    color: var(--primary-light);
}

.branches__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.branches__grid li {
    padding: 9px 14px;
    color: var(--gray-400);
    font-size: 13px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.branches__grid li:hover {
    background: var(--dark-600);
    color: var(--white);
}

.branches__grid li.branches__list-item--active {
    background: var(--primary);
    color: var(--white);
}

/* Branch sidebar */
.branches__sidebar {
    background: var(--dark-800);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--dark-500);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.branches__sidebar-default {
    text-align: center;
    padding: 24px 0;
    color: var(--gray-400);
}

.branches__sidebar-default svg {
    margin: 0 auto 16px;
}

.branches__sidebar-default h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.branches__sidebar-default p {
    font-size: 14px;
    color: var(--gray-500);
}

.branches__detail-header {
    margin-bottom: 20px;
}

.branches__detail-type {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.branches__detail-city {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
}

.branches__detail-company {
    color: var(--gray-400);
    font-size: 14px;
}

.branches__detail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.branches__detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-300);
    font-size: 14px;
}

.branches__detail-row svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-light);
}

.branches__detail-row a {
    color: var(--primary-light);
}

.branches__detail-row--desc {
    align-items: flex-start;
}

.branches__detail-row--desc span {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

.btn--block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.branches__detail-row span a {
    color: var(--primary-light);
}

/* ============================================
   PARTNERS
   ============================================ */
.partners__section {
    margin-bottom: 48px;
}

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

.partners__subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--gray-800);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    min-height: 80px;
}

.partner-card:hover {
    border-color: var(--primary-bg);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.partner-card__logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
}

.partner-card__img {
    max-width: 130px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all var(--transition);
}

.partner-card:hover .partner-card__img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-card--text {
    text-align: center;
}

.partner-card--text span {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-600);
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.partner-card--text:hover span {
    color: var(--primary);
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.reviews__header .section__header {
    margin-bottom: 0;
}

.reviews__google {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.reviews__google-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.reviews__google-rating {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    font-family: var(--font-heading);
}

.reviews__google-stars {
    display: flex;
    gap: 2px;
    margin: 2px 0;
}

.reviews__google-stars svg {
    width: 16px;
    height: 16px;
    fill: #FBBC04;
}

.reviews__google-count {
    font-size: 13px;
    color: var(--gray-500);
}

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

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: var(--primary-bg);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.review-card__stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBC04;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    flex: 1;
    margin-bottom: 20px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.review-card__source {
    font-size: 12px;
    color: var(--gray-400);
}

.reviews__cta {
    text-align: center;
}

.reviews__cta .btn {
    gap: 8px;
}

/* ============================================
   GALLERY PREVIEW (homepage)
   ============================================ */
.gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.gallery-preview__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
}

.gallery-preview__item--wide {
    grid-column: span 1;
}

.gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-preview__item:hover img {
    transform: scale(1.06);
}

.gallery-preview__cta {
    text-align: center;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery__filter {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.gallery__filter--active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__img {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover .gallery__img img {
    transform: scale(1.06);
}

.gallery__item--wide .gallery__img {
    aspect-ratio: 16/9;
}

.gallery__caption {
    padding: 16px 20px;
    background: var(--white);
}

.gallery__caption h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.gallery__caption p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Hidden gallery items during filter */
.gallery__item.hidden {
    display: none;
}

/* ============================================
   BLOG
   ============================================ */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card__img {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6a 100%);
}

.blog-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.06);
}

.blog-card__category {
    position: relative;
    z-index: 1;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.blog-card__content {
    padding: 24px;
}

.blog-card__date {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: gap var(--transition);
}

.blog-card__link:hover {
    gap: 10px;
}

/* ============================================
   FAQ
   ============================================ */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.08);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    list-style: none;
    transition: color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
    content: '';
}

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

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--gray-400);
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq__answer {
    padding: 0 24px 20px;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.faq__answer a {
    font-weight: 600;
}

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

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

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.contact__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
}

.contact__card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact__card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact__card a {
    color: var(--gray-800);
    font-weight: 600;
}

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

.contact__socials {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.contact__social {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    transition: all var(--transition);
}

.contact__social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

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

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input::placeholder {
    color: var(--gray-400);
}

.form__input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237c8198' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form__checkbox label {
    cursor: pointer;
}

.form__checkbox a {
    font-weight: 600;
}

.form__hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta {
    padding: 0 0 100px;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #0044aa 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__title {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
}

.cta__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
    color: var(--gray-400);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer__logo-icon {
    height: 30px;
    width: auto;
    display: block;
}

.footer__about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__company-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__company-info small {
    font-size: 12px;
    color: var(--gray-500);
}

.footer__links h4,
.footer__links-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--dark-500);
    font-size: 13px;
}

.footer__bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__bottom-links a {
    color: var(--gray-500);
    font-size: 13px;
}

.footer__bottom-links a:hover {
    color: var(--white);
}

.footer__bottom-links span {
    color: var(--dark-500);
}

.footer__credit {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--dark-500);
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.footer__credit a {
    color: #fde047;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 0 8px rgba(253, 224, 71, 0.35);
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
    animation: creditGlow 3s ease-in-out infinite;
}

.footer__credit a:hover {
    color: #fff8c2;
    text-shadow: 0 0 14px rgba(253, 224, 71, 0.85), 0 0 28px rgba(253, 224, 71, 0.4);
    animation: none;
}

@keyframes creditGlow {
    0%, 100% { text-shadow: 0 0 6px rgba(253, 224, 71, 0.25); }
    50%      { text-shadow: 0 0 14px rgba(253, 224, 71, 0.7), 0 0 24px rgba(253, 224, 71, 0.25); }
}

@media (prefers-reduced-motion: reduce) {
    .footer__credit a { animation: none; }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ============================================
   FLOATING REGISTRATION BUTTON
   ============================================ */
.register-float {
    position: fixed;
    bottom: 92px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 28px;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
    z-index: 999;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.register-float:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.5);
    color: var(--white);
}

.register-float svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .register-float {
        bottom: 88px;
        right: 16px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 140px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BLOG PAGE & ARTICLE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

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

.breadcrumb svg {
    flex-shrink: 0;
    color: var(--gray-300);
}

.breadcrumb span:last-child {
    color: var(--gray-800);
    font-weight: 500;
}

/* Blog Hero */
.blog-hero {
    padding: calc(var(--header-h) + 48px) 0 48px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.blog-hero__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.blog-hero__desc {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.7;
}

/* Blog hero with photo background (mild filter, readable text) */
.blog-hero--photo {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h) + 88px) 0 88px;
    background: var(--dark);
}

.blog-hero--photo .blog-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero--photo .blog-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    filter: saturate(0.92) contrast(1.02);
}

.blog-hero--photo .blog-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.4) 45%, rgba(10, 22, 40, 0.7) 100%),
        linear-gradient(90deg, rgba(0, 102, 255, 0.18) 0%, transparent 65%);
}

.blog-hero--photo .container {
    position: relative;
    z-index: 1;
}

.blog-hero--photo .blog-hero__title {
    color: var(--white);
    text-shadow: 0 2px 16px rgba(10, 22, 40, 0.45);
}

.blog-hero--photo .blog-hero__desc {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(10, 22, 40, 0.35);
}

.blog-hero--photo .breadcrumb,
.blog-hero--photo .breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
}

.blog-hero--photo .breadcrumb a:hover {
    color: var(--white);
}

.blog-hero--photo .breadcrumb span:last-child {
    color: var(--white);
    font-weight: 600;
}

.blog-hero--photo .breadcrumb svg {
    color: rgba(255, 255, 255, 0.4);
}

/* Blog Listing */
.blog-listing .blog__grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog card title links */
.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card__title a:hover {
    color: var(--primary);
}

.blog-card__img {
    display: block;
    text-decoration: none;
}

/* Active nav link */
.header__nav-link--active {
    color: var(--primary) !important;
    font-weight: 600;
}

/* Language Switcher */
.header__lang {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
    margin-left: 4px;
    padding-left: 12px;
    border-left: 1px solid var(--gray-200);
}

.header__lang-link {
    display: block;
    padding: 4px 6px;
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header__lang-link:hover {
    color: var(--gray-800);
}

.header__lang-link--active {
    color: var(--primary);
    pointer-events: none;
}

/* CTA Mini */
.cta-mini {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta-mini__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    background: var(--dark);
    border-radius: var(--radius-xl);
}

.cta-mini__text h2 {
    color: var(--white);
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 8px;
}

.cta-mini__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.cta-mini__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-mini__actions .btn--primary {
    color: var(--white);
}

.cta-mini__actions .btn--outline {
    color: var(--white);
    border-color: var(--white);
}

.cta-mini__actions .btn--outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Article Styles */
.article {
    padding: calc(var(--header-h) + 48px) 0 80px;
}

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

.article__header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.article__category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.article__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-500);
}

/* Article Body */
.article__body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-800);
}

.article__lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-100);
}

.article__body h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--gray-900);
}

.article__body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--gray-900);
}

.article__body p {
    margin-bottom: 16px;
}

.article__body ul,
.article__body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article__body ul {
    list-style: disc;
}

.article__body ol {
    list-style: decimal;
}

.article__body li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.article__body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article__body a:hover {
    color: var(--primary-dark);
}

/* Article Highlight Box */
.article__highlight {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--primary-bg);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article__highlight h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
}

.article__highlight p {
    font-size: 15px;
    margin: 0;
    color: var(--gray-700);
}

/* Article Table */
.article__table-wrap {
    margin: 24px 0;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.article__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.article__table th {
    padding: 14px 20px;
    background: var(--gray-50);
    font-weight: 600;
    text-align: left;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
}

.article__table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.article__table tr:last-child td {
    border-bottom: 0;
}

/* Article CTA */
.article__cta {
    margin: 48px 0;
    padding: 36px;
    background: var(--dark);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article__cta h3 {
    color: var(--white);
    font-size: 22px;
    margin: 0 0 12px;
}

.article__cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0 0 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.article__cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article__cta-actions .btn {
    text-decoration: none;
}

.article__cta-actions .btn--primary {
    color: var(--white);
}

.article__cta-actions .btn--outline {
    color: var(--white);
    border-color: var(--white);
}

.article__cta-actions .btn--outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Related Articles */
.article__related {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.article__related h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.article__related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.article__related-card {
    display: block;
    padding: 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.article__related-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.article__related-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.article__related-card h4 {
    font-size: 16px;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 12px;
}

.article__related-card .footer__links-title {
    color: var(--gray-900);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.article__related-card .blog-card__link {
    font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .header__inner {
        gap: 12px;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - var(--header-h));
        background: var(--white);
        padding: 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .header__nav.open {
        transform: translateX(0);
    }

    .header__nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .header__nav-link {
        font-size: 18px;
        padding: 14px 16px;
    }

    .header__burger {
        display: flex;
    }

    .header__phone span {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__lang {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }

    .header__lang-link {
        padding: 3px 5px;
        font-size: 10px;
    }

    .header__actions {
        gap: 8px;
    }

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

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

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

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

    .branches__sidebar {
        position: static;
    }

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

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

    .gallery-preview__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-preview__item--wide {
        grid-column: span 2;
    }

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

    .gallery__item--wide {
        grid-column: span 2;
    }

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

    .blog-listing .blog__grid {
        grid-template-columns: 1fr;
    }

    .cta-mini__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .cta-mini__actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

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

@media (max-width: 640px) {
    :root {
        --header-h: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .header__logo-icon {
        height: 28px;
    }

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

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

    .branches__list-panel {
        padding: 16px;
    }

    .branches__grid li {
        font-size: 12px;
        padding: 8px 10px;
    }

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

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

    .reviews__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-preview__grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview__item--wide {
        grid-column: span 1;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }

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

    .contact__form-wrap {
        padding: 24px;
    }

    .order-cta__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 32px;
    }

    .order-cta__badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .faq__question {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq__answer {
        padding: 0 20px 16px;
        font-size: 14px;
    }

    .article__body {
        font-size: 16px;
    }

    .article__lead {
        font-size: 17px;
    }

    .article__cta {
        padding: 28px 20px;
    }

    .article__cta-actions {
        flex-direction: column;
    }

    .article__cta-actions .btn {
        width: 100%;
    }

    .article__table {
        font-size: 13px;
    }

    .article__table th,
    .article__table td {
        padding: 10px 14px;
    }
}

/* ============================================
   COOKIE CONSENT BAR
   ============================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1726;
    color: var(--gray-300);
    padding: 24px 0;
    z-index: 10000;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-bar__text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-bar__text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-bar__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-bar__btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-bar__btn--accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-bar__btn--accept:hover {
    background: var(--primary-dark);
}

.cookie-bar__btn--reject {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-600);
}

.cookie-bar__btn--reject:hover {
    border-color: var(--gray-400);
    color: var(--white);
}

.cookie-bar__btn--settings {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid var(--primary-light);
}

.cookie-bar__btn--settings:hover {
    background: rgba(0, 102, 255, 0.1);
}

/* Cookie settings modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.visible {
    display: flex;
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal__content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.cookie-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px;
}

.cookie-modal__close:hover {
    color: var(--gray-800);
}

.cookie-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.cookie-modal__desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
}

.cookie-option__info {
    flex: 1;
}

.cookie-option__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cookie-option__desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: 24px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.cookie-toggle__slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    justify-content: flex-end;
}

.cookie-modal__btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-modal__btn--save {
    background: var(--primary);
    color: var(--white);
}

.cookie-modal__btn--save:hover {
    background: var(--primary-dark);
}

.cookie-modal__btn--all {
    background: var(--gray-100);
    color: var(--gray-700);
}

.cookie-modal__btn--all:hover {
    background: var(--gray-200);
}

/* Privacy page */
.privacy-section {
    padding: 120px 0 80px;
}

.privacy-section h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 28px;
    margin-bottom: 12px;
}

.privacy-section p,
.privacy-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.privacy-section ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-section ul li {
    margin-bottom: 6px;
}

.privacy-section strong {
    color: var(--gray-800);
}

@media (max-width: 640px) {
    .cookie-bar__inner {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-bar__btn {
        text-align: center;
    }

    .cookie-modal__content {
        padding: 24px;
    }

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

/* ---------- Print styles ---------- */
@media print {
    .header, .whatsapp-float, .register-float, .back-to-top, .hero__scroll, .cookie-bar, .cookie-modal {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
        break-inside: avoid;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
