@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --dark-bg: #0a1628;
    --dark-secondary: #0f2440;
    --dark-tertiary: #132d4a;
    --dark-card: #0d1e35;
    --accent-red: #dc2626;
    --accent-red-light: #ef4444;
    --accent-red-dark: #b91c1c;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.55);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-light-strong: rgba(255, 255, 255, 0.22);
    --sidebar-width: 280px;
    --header-height: 80px;
    --marquee-height: 54px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-red: 0 0 20px rgba(220, 38, 38, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
    --gold-deep: #9a7b2f;
    --gold-mid: #c9a227;
    --gold-surface: #e2c56a;
    --gold-primary: #8a6a1f;
    --gold-bright: #fff8e7;
    --gold-dark: #6b4f14;
    --gold-muted: rgba(107, 79, 20, 0.45);
    --gold-line: rgba(120, 90, 24, 0.35);
    --gold-text: #3d2e0f;
    --gold-text-soft: #5c4618;
    --gold-highlight: #fffdf5;
    --gold-shadow: #a8842a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
}

.highlight {
    color: var(--accent-red);
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: var(--transition-smooth);
    overflow-x: hidden;
    max-width: calc(100vw - var(--sidebar-width));
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    border-right: 1px solid var(--border-light);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    overflow-y: auto;
    overflow-x: hidden;
}

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

.sidebar-logo {
    padding: 30px 25px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.sidebar-logo .logo-image {
    display: block;
    width: min(100%, 180px);
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.sidebar-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sidebar-logo p {
    font-size: 0.7rem;
    color: var(--accent-red-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    position: relative;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--text-white);
}

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before {
    transform: scaleY(1);
}

.sidebar-nav a:hover::after,
.sidebar-nav a.active::after {
    opacity: 1;
}

.sidebar-nav a .nav-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.3s ease;
}

.sidebar-nav a:hover .nav-icon,
.sidebar-nav a.active .nav-icon {
    color: rgba(255, 255, 255, 0.92);
}

.sidebar-nav a .nav-text {
    position: relative;
    z-index: 1;
    flex: 1;
}

.sidebar-social {
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
}

.sidebar-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-social-links a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.sidebar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    box-shadow: var(--shadow-red);
}

.sidebar-contact a:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
    color: var(--text-white);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.45);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(15, 36, 64, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .mobile-logo {
    display: flex;
    align-items: center;
    max-width: calc(100% - 52px);
}

.mobile-header .logo-image {
    width: auto;
    max-width: min(165px, 52vw);
    height: auto;
    max-height: 42px;
    margin: 0;
    object-fit: contain;
}

.sidebar-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.sidebar-contact {
    padding: 15px 25px 25px;
    text-align: center;
    flex-shrink: 0;
}

.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.site-header {
    position: relative;
    z-index: 20;
    flex-shrink: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    padding: 0 50px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    isolation: isolate;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.hero-visual .site-header {
    background: rgba(10, 22, 40, 0.88);
    box-shadow: none;
}

.hero-visual .site-header.is-scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 400;
    font-style: italic;
}

.header-tagline span {
    color: var(--accent-red-light);
    font-weight: 600;
    font-style: normal;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.header-phone i {
    color: var(--accent-red);
}

.header-phone a:hover {
    color: var(--accent-red-light);
}

.header-cta {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    box-shadow: var(--shadow-red);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.45);
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
}

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

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

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

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-tagline-bar {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-zone {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    border: none;
    display: block;
    pointer-events: none;
}

.hero-section {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .hero-section {
        padding: 24px 30px 16px;
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.06) 58%, rgba(255, 255, 255, 0.22) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-red-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 45%; top: 30%; animation-delay: 3s; }
.particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 4.5s; }
.particle:nth-child(5) { left: 80%; top: 40%; animation-delay: 6s; }
.particle:nth-child(6) { left: 15%; top: 80%; animation-delay: 2s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 0.7; }
    80% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 760px;
    padding: 0 24px;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px 38px 30px;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
    border: 1px solid rgba(255, 255, 255, 0.38);
    animation: fadeInUp 0.9s ease-out both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: none;
}

.hero-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
}

.hero-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-red-dark);
    line-height: 1.2;
    padding-right: 0;
}

.hero-title {
    font-size: 2.15rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
    color: #0a1628;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--accent-red);
    font-weight: 700;
}

.hero-title .highlight::after {
    display: none;
}

.hero-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-dark));
    border-radius: 3px;
    margin: 18px auto 16px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(10, 22, 40, 0.72);
    font-weight: 400;
    margin-bottom: 26px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    animation: none;
}

.hero-panel .hero-buttons {
    animation: none;
}

.hero-panel .btn-outline {
    border-color: rgba(10, 22, 40, 0.22);
    color: #0a1628;
    background: transparent;
}

.hero-panel .btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.05);
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(10, 22, 40, 0.55);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220, 38, 38, 0.45);
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    padding: 15px 40px;
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(245, 245, 245, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--text-white);
    color: var(--text-white);
    transform: translateY(-3px);
    background: rgba(245, 245, 245, 0.06);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.78rem;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 1s both;
}

@media (min-width: 1025px) {
    .hero-scroll-indicator {
        bottom: 12px;
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

.hero-marquee-strip {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    background:
        linear-gradient(
            180deg,
            var(--gold-highlight) 0%,
            #f3e2a8 12%,
            var(--gold-surface) 38%,
            var(--gold-mid) 62%,
            var(--gold-shadow) 88%,
            #c49b2a 100%
        );
    border-top: 1px solid rgba(255, 252, 235, 0.95);
    border-bottom: 1px solid rgba(107, 79, 20, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(90, 68, 18, 0.25),
        0 6px 20px rgba(120, 90, 30, 0.18);
    overflow: hidden;
    padding: 0;
}

.hero-marquee-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 42%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0.18) 58%,
        transparent 100%
    );
    animation: heroGoldShine 7s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

.hero-marquee-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(196, 155, 42, 0.55) 0%,
        transparent 7%,
        transparent 93%,
        rgba(196, 155, 42, 0.55) 100%
    );
    pointer-events: none;
    z-index: 2;
}

@keyframes heroGoldShine {
    0% { left: -120%; }
    55% { left: 140%; }
    100% { left: 140%; }
}

.hero-marquee {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: heroMarqueeScroll 50s linear infinite;
    position: relative;
    z-index: 1;
}

.hero-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-marquee-item i {
    font-size: 0.95rem;
    color: var(--gold-dark);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

.hero-marquee-item span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-marquee-sep {
    display: inline-flex;
    align-items: center;
    color: var(--gold-muted);
    font-size: 0.45rem;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 6px;
}

@keyframes heroMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

body.page-home {
    background: #ffffff;
}

body.page-home .main-content--home {
    background: #ffffff;
    min-height: auto;
}

body.page-home .hero-visual {
    min-height: 100vh;
    max-height: none;
    height: auto;
}

@media (max-width: 1024px) {
    body.page-home .main-content--home {
        padding-top: 0;
    }
}
.hero-metrics {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.hero-metrics-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hero-metric {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    transition: background 0.3s ease;
}

.hero-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    height: 56%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.hero-metric:hover {
    background: #f8fafc;
}

.hero-metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a1628 0%, #0f2440 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.15);
}

.hero-metric-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 2.85rem);
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.hero-metric-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.45;
    max-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.home-performance {
    position: relative;
    z-index: 4;
    padding: 56px 24px 72px;
    background:
        radial-gradient(circle at 20% 0%, rgba(220, 38, 38, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 80% 100%, rgba(15, 36, 64, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-performance-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.home-performance-card {
    position: relative;
    border-radius: 28px;
    padding: 2px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(10, 22, 40, 0.14),
        0 8px 24px rgba(10, 22, 40, 0.08);
}

.home-performance-border {
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 0deg,
        #dc2626,
        #ef4444,
        #0f2440,
        #dc2626,
        #fbbf24,
        #dc2626
    );
    animation: homePerformanceBorderSpin 8s linear infinite;
    z-index: 0;
}

.home-performance-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 42%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 58%,
        transparent 100%
    );
    transform: translateX(-120%);
    animation: homePerformanceShine 6s ease-in-out infinite;
    pointer-events: none;
}

.home-performance-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        linear-gradient(160deg, #0a1628 0%, #0f2440 52%, #132d4a 100%);
    overflow: hidden;
}

.home-performance-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(220, 38, 38, 0.18) 0%, transparent 38%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 35%);
    pointer-events: none;
}

.home-performance-copy {
    position: relative;
    z-index: 1;
}

.home-performance-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: homePerformancePulse 3.5s ease-in-out infinite;
}

.home-performance-eyebrow i {
    color: var(--accent-red-light);
}

.home-performance-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
    max-width: 18ch;
}

.home-performance-title span {
    color: var(--accent-red-light);
    font-style: italic;
}

.home-performance-text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 56ch;
    margin-bottom: 24px;
}

.home-performance-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.home-performance-pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
}

.home-performance-pills li i {
    color: var(--accent-red-light);
    font-size: 0.72rem;
}

.home-performance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-performance-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.home-performance-btn--primary {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: #fff;
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35);
}

.home-performance-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(220, 38, 38, 0.45);
}

.home-performance-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.home-performance-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.home-performance-visual {
    position: relative;
    z-index: 1;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-performance-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-performance-orbit--1 {
    width: 240px;
    height: 240px;
    animation: homePerformanceOrbit 14s linear infinite;
}

.home-performance-orbit--2 {
    width: 190px;
    height: 190px;
    border-color: rgba(220, 38, 38, 0.22);
    animation: homePerformanceOrbit 10s linear infinite reverse;
}

.home-performance-orbit--3 {
    width: 140px;
    height: 140px;
    border-style: dashed;
    animation: homePerformanceOrbit 18s linear infinite;
}

.home-performance-icon {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #fff;
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.95), rgba(185, 28, 28, 0.95));
    box-shadow:
        0 0 0 12px rgba(220, 38, 38, 0.12),
        0 18px 40px rgba(220, 38, 38, 0.35);
    animation: homePerformanceFloat 4.5s ease-in-out infinite;
}

.home-performance-badge {
    position: absolute;
    right: 8%;
    bottom: 12%;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(10, 22, 40, 0.18);
    text-align: center;
    animation: homePerformanceBadge 5s ease-in-out infinite;
}

.home-performance-badge strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--accent-red);
    font-weight: 800;
}

.home-performance-badge span {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #475569;
}

@keyframes homePerformanceBorderSpin {
    to { transform: rotate(360deg); }
}

@keyframes homePerformanceShine {
    0%, 35% { transform: translateX(-120%); }
    55%, 100% { transform: translateX(120%); }
}

@keyframes homePerformancePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
    50% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.12); }
}

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

@keyframes homePerformanceOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes homePerformanceBadge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
}

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

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

.section {
    padding: 100px 50px;
    position: relative;
    background: var(--dark-bg);
}

.section:not(.section-dark) {
    background: #ffffff;
    color: #0a1628;
}

.section:not(.section-dark) .section-label {
    color: var(--accent-red);
}

.section:not(.section-dark) .section-title {
    color: #0a1628;
}

.section:not(.section-dark) .section-title .highlight {
    color: var(--accent-red);
}

.section:not(.section-dark) .section-subtitle {
    color: rgba(10, 22, 40, 0.72);
}

.section:not(.section-dark) .section-divider {
    background: var(--accent-red);
}

.section:not(.section-dark) .category-card,
.section:not(.section-dark) .pilot-form,
.section:not(.section-dark) .info-card,
.section:not(.section-dark) .gallery-filter,
.section:not(.section-dark) .faq-item {
    background: var(--dark-secondary);
    border-color: rgba(255, 255, 255, 0.1);
}

.section:not(.section-dark) .gallery-filter {
    color: var(--text-gray);
}

.section:not(.section-dark) .gallery-filter:hover {
    color: var(--text-white);
}

.section:not(.section-dark) .btn-outline {
    border-color: #0a1628;
    color: #0a1628;
}

.section:not(.section-dark) .btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.06);
}

.section-dark {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 50%, var(--dark-secondary) 100%);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-red-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--accent-red-light);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-red);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 70px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-tertiary), var(--dark-card));
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--accent-red);
    border-right: 3px solid rgba(255, 255, 255, 0.45);
    border-radius: 0 0 20px 0;
    opacity: 0.55;
    pointer-events: none;
}

.about-text .section-label {
    display: block;
    text-align: left;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text h2 .highlight {
    color: var(--accent-red-light);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 25px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.about-features li i {
    color: var(--accent-red);
    font-size: 1rem;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-red);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: var(--shadow-card);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-red-light);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: var(--shadow-card);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-code {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 1;
}

.category-body {
    padding: 28px 26px 30px;
}

.category-body h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.category-subtitle {
    font-size: 0.82rem;
    color: var(--accent-red-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-body > p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 14px;
}

.category-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-duration i {
    color: var(--accent-red);
}

.category-advantages {
    margin-bottom: 22px;
}

.category-advantages li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 5px 0;
}

.category-advantages li i {
    color: var(--accent-red);
    font-size: 0.75rem;
}

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

.pricing-table-wrap {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--dark-card);
    box-shadow: var(--shadow-card);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.pricing-table thead {
    background: linear-gradient(135deg, rgba(15, 36, 64, 0.95), rgba(10, 22, 40, 0.95));
}

.pricing-table th {
    padding: 18px 22px;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-table td {
    padding: 20px 22px;
    font-size: 0.92rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: var(--transition-smooth);
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr.recommended {
    background: rgba(220, 38, 38, 0.06);
    border-left: 3px solid var(--accent-red);
}

.pricing-table tbody tr.recommended td:first-child {
    color: var(--text-white);
    font-weight: 600;
}

.pricing-table td strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-red-light);
}

.pricing-table td ul {
    list-style: none;
}

.pricing-table td ul li {
    padding: 3px 0;
    font-size: 0.85rem;
    position: relative;
    padding-left: 16px;
}

.pricing-table td ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 0.7rem;
}

.badge-recommended {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    vertical-align: middle;
}

.form-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pilot-form {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
}

.pilot-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a8be' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--accent-red);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check label {
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.6;
    cursor: pointer;
}

.form-check label a {
    color: var(--accent-red-light);
    text-decoration: underline;
}

.form-check label a:hover {
    color: var(--accent-red);
}

.form-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 16px;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--accent-red-light);
}

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

.info-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: rgba(220, 38, 38, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.info-card i {
    font-size: 1.8rem;
    color: var(--accent-red);
    margin-bottom: 14px;
}

.info-card i.fa-whatsapp {
    color: #25d366;
}

.info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card a {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.info-card a:hover {
    color: var(--accent-red-light);
}

.info-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: var(--shadow-card);
}

.team-photo {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.08);
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
    pointer-events: none;
}

.team-info {
    padding: 22px 20px 26px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.team-info p {
    font-size: 0.82rem;
    color: var(--accent-red-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-filter {
    padding: 10px 22px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: var(--text-gray);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-filter:hover {
    border-color: var(--accent-red);
    color: var(--text-white);
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    border-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--text-white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 36, 64, 0.8);
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 36, 64, 0.8);
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
    max-width: 600px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.overall-rating .stars {
    display: flex;
    gap: 4px;
}

.overall-rating .stars i {
    color: var(--accent-red-light);
    font-size: 1rem;
}

.overall-rating span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px 36px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent-red-light);
    font-size: 0.95rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-red);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-card));
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(160, 168, 190, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.open {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question i {
    color: var(--accent-red);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text-gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item i.fa-whatsapp {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-item strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item a {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-red-light);
}

.contact-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

.contact-map {
    margin-top: 16px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-card);
}

.contact-map iframe {
    display: block;
    width: 100%;
    filter: grayscale(30%) contrast(1.05);
}

.contact-form {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
}

.site-footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 80px 50px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo-image {
    display: block;
    width: min(100%, 180px);
    height: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.35);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-column ul li a i {
    font-size: 0.6rem;
    color: var(--accent-red);
}

.footer-column ul li a:hover {
    color: var(--accent-red-light);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--accent-red);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.footer-contact-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-contact-item a:hover {
    color: var(--accent-red-light);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 50px 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-anpc-badge {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: var(--transition-smooth);
}

.footer-anpc-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.footer-anpc-badge img {
    display: block;
    width: min(100%, 250px);
    height: auto;
    aspect-ratio: 250 / 50;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

.footer-copyright {
    max-width: 520px;
    line-height: 1.6;
}

.footer-bottom p .accent {
    color: var(--accent-red-light);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--accent-red-light);
}

.cb-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 16px;
}

.cb-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.cb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-red-light);
    flex-shrink: 0;
}

.cb-text {
    flex: 1;
    min-width: 0;
}

.cb-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.cb-text p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 300;
}

.cb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cb-accept {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--text-white);
    border: none;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cb-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.cb-essential {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(245, 245, 245, 0.2);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cb-essential:hover {
    border-color: var(--text-white);
    color: var(--text-white);
}

.cb-settings {
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.cb-settings:hover {
    color: var(--accent-red-light);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9500;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition-smooth);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        max-width: 100vw;
        padding-top: 112px;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-tagline-bar {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 98;
        background: linear-gradient(135deg, rgba(15, 36, 64, 0.98), rgba(10, 22, 40, 0.98));
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border-light);
        padding: 10px 20px;
        text-align: center;
    }

    .mobile-tagline-bar .header-tagline {
        font-size: 0.9rem;
    }

    .site-header .header-left {
        display: none;
    }

    .hero-visual {
        height: calc(100vh - 112px);
        min-height: calc(100vh - 112px);
        max-height: calc(100vh - 112px);
    }

    .hero-zone {
        flex: 1 1 auto;
        min-height: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 70px 30px;
    }

    .site-header {
        padding: 0 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 60px 30px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .hero-metric:nth-child(1)::after,
    .hero-metric:nth-child(3)::after {
        display: none;
    }

    .home-performance-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-performance-visual {
        min-height: 220px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

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

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

    .cb-inner {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-panel {
        padding: 26px 24px 24px;
        border-radius: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0;
    }

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

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .home-performance {
        padding: 40px 16px 56px;
    }

    .home-performance-grid {
        padding: 24px 20px;
    }

    .home-performance-title {
        max-width: none;
    }

    .home-performance-actions {
        flex-direction: column;
    }

    .home-performance-btn {
        width: 100%;
        justify-content: center;
    }

    .home-performance-badge {
        right: 4%;
        bottom: 8%;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

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

    .hero-metrics-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-metric {
        padding: 28px 16px;
    }

    .hero-metric::after {
        display: none !important;
    }

    .hero-metric-value {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .pilot-form {
        padding: 28px 22px;
    }

    .pricing-table-wrap {
        border-radius: 12px;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table tr {
        margin-bottom: 16px;
        padding: 20px;
        background: rgba(15, 36, 64, 0.4);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-table tr.recommended {
        border-color: rgba(220, 38, 38, 0.3);
    }

    .pricing-table td {
        padding: 8px 0;
        border-bottom: none;
        text-align: left;
    }

    .pricing-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        margin-bottom: 4px;
        font-weight: 600;
    }

    .pricing-table td:last-child {
        padding-top: 14px;
    }

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

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

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter {
        padding: 8px 16px;
        font-size: 0.72rem;
    }

    .lightbox {
        padding: 50px 20px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 20px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .footer-badges {
        padding: 0 20px 22px;
        flex-direction: column;
    }

    .footer-anpc-badge {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .footer-anpc-badge img {
        width: 100%;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .site-header {
        padding: 0 15px;
    }

    .header-cta {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .hero-marquee-item {
        padding: 14px 28px;
    }

    .hero-marquee-item span {
        font-size: 0.72rem;
    }

    .cb-inner {
        padding: 18px 20px;
    }

    .cb-actions {
        flex-direction: column;
        width: 100%;
    }

    .cb-accept,
    .cb-essential,
    .cb-settings {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-panel {
        padding: 22px 18px 20px;
    }

    .hero-divider {
        margin: 14px auto 12px;
    }

    .hero-badge-text {
        font-size: 0.62rem;
        letter-spacing: 1.5px;
    }

    .hero-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

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

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

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

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

    .hero-marquee {
        animation-duration: 35s;
    }
}

.page-hero {
    position: relative;
    padding: 120px 50px 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(15, 36, 64, 0.9));
    border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

.page-hero-breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.page-hero-breadcrumb a {
    color: var(--accent-red-light);
}

.legal-page {
    padding-top: 40px;
}

.section.legal-page {
    background: #ffffff;
    color: #0a1628;
}

.section.legal-page .legal-intro p,
.section.legal-page .legal-section p,
.section.legal-page .legal-section dd,
.section.legal-page .legal-section li,
.section.legal-page .legal-updated {
    color: rgba(10, 22, 40, 0.88);
}

.section.legal-page .legal-section h2 {
    color: #b91c1c;
}

.section.legal-page .legal-section h3.legal-subtitle {
    color: #0a1628;
    font-size: 1.05rem;
    margin: 18px 0 10px;
}

.section.legal-page .legal-section a {
    color: #b91c1c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section.legal-page .legal-section a:hover {
    color: #dc2626;
}

.section.legal-page .legal-section dt {
    color: #0a1628;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 32px;
}

.legal-intro p {
    margin-bottom: 14px;
    line-height: 1.85;
}

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

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 32px;
    padding: 28px;
    background: #f8fafc;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 16px;
}

.legal-section h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.legal-section p {
    margin-bottom: 10px;
    line-height: 1.85;
}

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

.legal-definitions {
    display: grid;
    gap: 14px;
}

.legal-definitions dt {
    font-weight: 700;
    font-size: 0.92rem;
}

.legal-definitions dd {
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid rgba(220, 38, 38, 0.35);
    line-height: 1.75;
}

.legal-list {
    margin: 12px 0 16px 20px;
    display: grid;
    gap: 8px;
}

.legal-list li {
    line-height: 1.75;
}

.legal-links li {
    word-break: break-word;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }
}
