/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --black: #000000;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --white: #ffffff;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-inter);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-price {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--red-800);
    color: var(--primary-red);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: rgba(220, 38, 38, 0.1);
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--red-700);
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--red-800);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-red);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 50%, #7f1d1d 100%);
    opacity: 0.9;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--red-800);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s infinite;
    filter: blur(3rem);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    background: var(--red-700);
    border-radius: 50%;
    opacity: 0.05;
    animation: pulse 3s infinite 1s;
    filter: blur(4rem);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
    padding: 5rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 9999px;
    color: var(--primary-red);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-red);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: var(--primary-red);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    max-width: 35rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-badge {
    padding: 0.5rem 1rem;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--red-800);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

.hero-video-container {
    position: relative;
}

.glow-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--red-800));
    border-radius: 1rem;
    filter: blur(2rem);
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.hero-video-container:hover .glow-effect {
    opacity: 0.3;
}

.video-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--gray-900), var(--black));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-800);
    transition: all 0.5s ease;
}

.video-wrapper:hover {
    border-color: rgba(220, 38, 38, 0.5);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    transition: transform 0.5s ease;
}

.video-wrapper:hover video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    padding: 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
}

.video-overlay p {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.progress-line {
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(to right, var(--primary-red), transparent);
    border-radius: 0.125rem;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.floating-1 {
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: rgba(220, 38, 38, 0.2);
    animation: ping 3s infinite;
}

.floating-2 {
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: rgba(220, 38, 38, 0.3);
    animation: pulse 3s infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary-red);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--primary-red);
    border-radius: 0.125rem;
    animation: pulse 2s infinite;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    padding: 1rem;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 64rem;
    width: 100%;
    margin: 2rem auto;
}

.modal-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-red);
}

.modal-video {
    background: var(--gray-900);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0;
}

.modal-video video {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    background: var(--black);
}

.modal-info {
    background: var(--gray-900);
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
}

.modal-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40%, 43% {
        transform: translate(-50%, -30px);
    }
    70% {
        transform: translate(-50%, -15px);
    }
    90% {
        transform: translate(-50%, -4px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.text-red {
    color: var(--primary-red);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 48rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, var(--primary-red) 1px, transparent 0);
    background-size: 50px 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-800);
    transition: all 0.5s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--red-800), var(--primary-red));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 2rem rgba(220, 38, 38, 0.25);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-red);
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

.feature-line {
    height: 0.25rem;
    background: linear-gradient(to right, var(--red-700), transparent);
    border-radius: 0.125rem;
    margin-top: 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-line {
    transform: scaleX(1);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--gray-950);
}

.benefits-content {
    max-width: 88rem;
    margin: 0 auto;
}

.benefit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefit-section.reverse .benefit-media {
    order: 2;
}

.benefit-section.reverse .benefit-content {
    order: 1;
}

.benefit-media {
    position: relative;
}

.media-container {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--gray-800);
    aspect-ratio: 16/10;
    overflow: hidden;
}

.media-container video,
.media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.media-container:hover video,
.media-container:hover img {
    transform: scale(1.05);
}

.video-overlay-protection {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: default;
    pointer-events: none;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: end;
    padding: 1.5rem;
    border-radius: 1rem;
}

.image-overlay svg {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.image-overlay span {
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 500;
}

.benefit-badge {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-content h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-content > p {
    font-size: 1.25rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-item:hover {
    background: rgba(17, 24, 39, 0.5);
}

.benefit-item svg {
    width: 2rem;
    height: 2rem;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    padding: 0.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover svg {
    transform: scale(1.1);
}

.benefit-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.benefit-item:hover span {
    color: var(--primary-red);
}

.bottom-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-800);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Specifications Section */
.specifications {
    padding: 5rem 0;
    background: var(--gray-950);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.spec-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-800);
    transition: all 0.5s ease;
}

.spec-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

.spec-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.spec-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 1rem;
}

.spec-icon.display {
    background: linear-gradient(135deg, var(--primary-red), var(--red-800));
}

.spec-icon.hardware {
    background: linear-gradient(135deg, var(--red-700), var(--red-900));
}

.spec-icon.connectivity {
    background: linear-gradient(135deg, var(--red-800), #7f1d1d);
}

.spec-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.spec-item:hover {
    background: rgba(17, 24, 39, 0.3);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-key {
    color: var(--gray-400);
    font-weight: 500;
}

.spec-value {
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

.tech-summary {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.summary-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.summary-stat .stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--black);
}

.gallery-carousel {
    position: relative;
}

.gallery-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex-shrink: 0;
    width: 20rem;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid var(--gray-800);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    border-color: rgba(220, 38, 38, 0.5);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-overlay h3 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.gallery-line {
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(to right, var(--primary-red), transparent);
    border-radius: 0.125rem;
}

.gallery-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: rgba(220, 38, 38, 0.8);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(8px);
}

.gallery-item:hover h3 {
    color: var(--primary-red);
}

.gallery-item h4 {
    color: var(--white);
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.gallery-item:hover h4 {
    color: var(--primary-red);
}

.gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--black);
}

.pricing-content {
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, var(--gray-900), var(--black));
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid var(--gray-800);
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
}

.pricing-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.pricing-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background: rgba(127, 29, 29, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

.pricing-main {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 9999px;
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    gap: 0.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.current-price {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
}

.original-price {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-description {
    color: var(--gray-400);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-section {
    margin-bottom: 2rem;
}

.btn-purchase {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.pricing-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-800);
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.feature-item svg {
    width: 2rem;
    height: 2rem;
    background: var(--red-700);
    color: var(--white);
    border-radius: 50%;
    padding: 0.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--white);
    font-weight: 500;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.info-card {
    background: rgba(17, 24, 39, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-800);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--gray-950);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    transition: all 0.5s ease;
}

.review-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

.review-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

.review-card:hover .review-image img {
    transform: scale(1.1);
}

.review-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(220, 38, 38, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    backdrop-filter: blur(8px);
}

.review-content {
    padding: 2rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.review-text {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.5);
}

.reviewer-details h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reviewer-details p {
    color: var(--primary-red);
    font-size: 0.875rem;
}

.review-line {
    height: 0.25rem;
    background: linear-gradient(to right, var(--red-700), transparent);
    border-radius: 0.125rem;
    margin-top: 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.review-card:hover .review-line {
    transform: scaleX(1);
}

.rating-summary {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.rating-info p {
    color: var(--gray-400);
}

.rating-quote {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid var(--gray-900);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--red-700);
    color: var(--white);
    transform: scale(1.1);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(0.25rem);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.contact-item svg {
    color: var(--primary-red);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.newsletter h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem 0 0 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-red);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    background: var(--red-700);
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-900);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-red);
}

.footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(to right, var(--red-800), var(--primary-red), var(--red-800));
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .section-header h2 {
        font-size: 4rem;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 1100px;
        padding: 0 2rem;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-media {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .benefit-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benefit-section.reverse .benefit-media,
    .benefit-section.reverse .benefit-content {
        order: unset;
    }
    
    .pricing-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .price-display {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Portrait (320px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header Mobile */
    .desktop-nav,
    .desktop-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-content {
        height: 70px;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-actions .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .video-wrapper {
        padding: 1rem;
    }
    
    /* Sections Mobile */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Features Mobile */
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
    
    /* Benefits Mobile */
    .benefits {
        padding: 3rem 0;
    }
    
    .benefit-section {
        margin-bottom: 3rem;
    }
    
    .media-container {
        padding: 1rem;
        aspect-ratio: 16/9;
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        gap: 0.25rem;
    }
    
    .benefit-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .benefit-item svg {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0.375rem;
        margin-right: 0.75rem;
    }
    
    .benefit-item span {
        font-size: 1rem;
    }
    
    .bottom-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Specifications Mobile */
    .specifications {
        padding: 3rem 0;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-card {
        padding: 1.5rem;
    }
    
    .spec-header h3 {
        font-size: 1.25rem;
    }
    
    .spec-item {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .spec-value {
        text-align: left;
        font-size: 0.9rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-item {
        width: 280px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    /* Pricing Mobile */
    .pricing {
        padding: 3rem 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .pricing-main {
        gap: 2rem;
    }
    
    .discount-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .original-price {
        font-size: 1.25rem;
    }
    
    .btn-purchase {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.75rem;
    }
    
    .pricing-features h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        gap: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card h4 {
        font-size: 0.9rem;
    }
    
    .info-card p {
        font-size: 0.75rem;
    }
    
    /* Reviews Mobile */
    .reviews {
        padding: 3rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-content {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .reviewer-avatar {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .reviewer-details h4 {
        font-size: 0.9rem;
    }
    
    .reviewer-details p {
        font-size: 0.75rem;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .rating-quote {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .newsletter h5 {
        font-size: 0.9rem;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 0.625rem 0.75rem;
    }
    
    .newsletter-form button {
        padding: 0.625rem 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        margin: 1rem auto;
    }
    
    .modal-close {
        top: -0.25rem;
        right: -0.25rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .modal-video video {
        max-height: 50vh;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .modal-info .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Header Extra Small */
    .header-content {
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    /* Hero Extra Small */
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-actions .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .video-wrapper {
        padding: 0.75rem;
    }
    
    /* Sections Extra Small */
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Features Extra Small */
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Benefits Extra Small */
    .benefit-content h3 {
        font-size: 1.375rem;
    }
    
    .benefit-content > p {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 0.625rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .bottom-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Specifications Extra Small */
    .spec-card {
        padding: 1.25rem;
    }
    
    .spec-header h3 {
        font-size: 1.125rem;
    }
    
    .spec-item {
        padding: 0.5rem;
    }
    
    .spec-key,
    .spec-value {
        font-size: 0.85rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Gallery Extra Small */
    .gallery-item {
        width: 240px;
    }
    
    .gallery-overlay {
        padding: 0.75rem;
    }
    
    .gallery-overlay h3 {
        font-size: 0.9rem;
    }
    
    .gallery-overlay p {
        font-size: 0.7rem;
    }
    
    .gallery-number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
    
    /* Pricing Extra Small */
    .pricing-card {
        padding: 1.25rem;
    }
    
    .current-price {
        font-size: 2.25rem;
    }
    
    .original-price {
        font-size: 1.125rem;
    }
    
    .btn-purchase {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .pricing-features h3 {
        font-size: 1.125rem;
    }
    
    .feature-item {
        padding: 0.625rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .trust-number {
        font-size: 1.125rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    /* Reviews Extra Small */
    .review-content {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .reviewer-avatar {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .reviewer-details h4 {
        font-size: 0.85rem;
    }
    
    .reviewer-details p {
        font-size: 0.7rem;
    }
    
    .rating-number {
        font-size: 2.25rem;
    }
    
    .rating-quote {
        font-size: 0.9rem;
    }
    
    /* Footer Extra Small */
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
    }
    
    .footer-links a,
    .contact-item {
        font-size: 0.85rem;
    }
    
    .newsletter h5 {
        font-size: 0.85rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        font-size: 0.85rem;
        padding: 0.5rem 0.625rem;
    }
    
    .footer-bottom p,
    .footer-legal a {
        font-size: 0.75rem;
    }
    
    /* Modal Extra Small */
    .modal-close {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .modal-info {
        padding: 1.25rem;
    }
    
    .modal-info h3 {
        font-size: 1.125rem;
    }
    
    .modal-info p {
        font-size: 0.85rem;
    }
    
    .modal-info .btn-primary {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}