/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c10;
    color: #eef2f6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #141a22;
}
::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 20px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.6rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(230, 57, 70, 0.12);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 12, 16, 0.97);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    padding: 0.4rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
    filter: brightness(1.1);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #e63946;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #b0c0d4;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: #e63946;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ============================================================
   HERO - FULL RESPONSIVE BACKGROUND
   ============================================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    /* Responsive background */
    background: url('herobg.png') center center / cover no-repeat;
    background-attachment: fixed;
}

/* Fallback gradient if image fails */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 12, 16, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(10, 12, 16, 0.2) 100%);
    z-index: 1;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #e63946, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-glow.glow-1 {
    width: min(500px, 50vw);
    height: min(500px, 50vw);
    background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
    top: -15%;
    right: -5%;
}

.hero-glow.glow-2 {
    width: min(300px, 30vw);
    height: min(300px, 30vw);
    background: radial-gradient(circle, rgba(255, 107, 122, 0.04) 0%, transparent 70%);
    bottom: -10%;
    left: 20%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.5vw, 16px) clamp(28px, 3vw, 40px);
    border-radius: 60px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1vw, 1rem);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #e63946, #c92f3a);
    color: #fff;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(230, 57, 70, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(230, 57, 70, 0.25);
    border-color: #e63946;
    transform: translateY(-3px);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #ff6b7a);
    border-radius: 4px;
}

.section-title-center {
    text-align: center;
    display: block;
}

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    color: #8fa0b8;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    max-width: 600px;
    margin: 1.5rem auto 3rem;
    padding: 0 15px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: clamp(60px, 8vh, 100px) 0;
    background: #0f1217;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.2rem;
    color: #e63946;
}

.about-text p {
    color: #b0c0d4;
    margin-bottom: 1.2rem;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    background: #1a2129;
    padding: 1.4rem 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}

.stat-item:hover {
    border-color: #e63946;
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: #e63946;
}

.stat-label {
    color: #8fa0b8;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 500;
}

/* ============================================================
   GENERATOR SECTION
   ============================================================ */
.generator-section {
    padding: clamp(60px, 8vh, 100px) 0 clamp(40px, 5vh, 80px);
    background: #0a0c10;
    position: relative;
    overflow: hidden;
}

.generator-section::before {
    content: '';
    position: absolute;
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: min(600px, 60vw);
    height: min(600px, 60vw);
    background: radial-gradient(circle, rgba(230, 57, 70, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.generator-showcase {
    position: relative;
    padding: 20px 0;
}

/* Featured Generator */
.featured-generator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    background: linear-gradient(160deg, #141a22, #1a2129);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.5s ease;
}

.featured-generator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.04), transparent 60%);
    pointer-events: none;
}

.featured-image {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: #1e2733;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: clamp(200px, 30vh, 350px);
}

.featured-image .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e63946, #c92f3a);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
    z-index: 2;
}

.featured-image img {
    width: 100%;
    max-height: clamp(180px, 25vh, 300px);
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    transition: 0.6s;
    position: relative;
    z-index: 1;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-info {
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.featured-info .featured-tag {
    color: #e63946;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.featured-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.featured-info .featured-spec {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0.8rem 0;
}

.featured-info .featured-spec span {
    color: #8fa0b8;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-info .featured-spec i {
    color: #e63946;
}

.featured-info .featured-desc {
    color: #b0c0d4;
    line-height: 1.7;
    margin: 0.8rem 0 1.5rem;
    max-width: 450px;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.featured-info .featured-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.featured-info .featured-features span {
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    color: #b0c0d4;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-info .featured-features i {
    color: #f5b342;
    font-size: 0.7rem;
}

.featured-info .featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-featured {
    padding: clamp(10px, 1.2vw, 12px) clamp(24px, 2.5vw, 32px);
    background: linear-gradient(135deg, #e63946, #c92f3a);
    border: none;
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.25);
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.35);
}

.btn-featured-outline {
    padding: clamp(10px, 1.2vw, 12px) clamp(24px, 2.5vw, 32px);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.btn-featured-outline:hover {
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.08);
    transform: translateY(-3px);
}

/* Generator Thumbnails */
.generator-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(120px, 15vw, 200px), 1fr));
    gap: clamp(0.8rem, 1.2vw, 1.2rem);
    margin-top: 1rem;
}

.generator-thumb {
    background: #141a22;
    border-radius: 20px;
    padding: clamp(0.8rem, 1vw, 1.2rem) clamp(0.6rem, 0.8vw, 1rem);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.generator-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.generator-thumb:hover {
    border-color: #e63946;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.1);
}

.generator-thumb:hover::before {
    opacity: 1;
}

.generator-thumb.active {
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.06);
}

.generator-thumb img {
    width: 100%;
    height: clamp(50px, 8vw, 80px);
    object-fit: contain;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: 0.4s;
}

.generator-thumb:hover img {
    transform: scale(1.05);
}

.generator-thumb .thumb-name {
    font-size: clamp(0.6rem, 0.7vw, 0.75rem);
    font-weight: 600;
    color: #b0c0d4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.generator-thumb .thumb-power {
    font-size: clamp(0.5rem, 0.6vw, 0.65rem);
    color: #6a7b90;
}

.generator-thumb .thumb-active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #ff6b7a);
    opacity: 0;
    transition: 0.4s;
}

.generator-thumb.active .thumb-active-indicator {
    opacity: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: clamp(50px, 6vh, 80px) 0;
    background: #0f1217;
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: clamp(60px, 10vw, 120px);
    background: linear-gradient(90deg, #0f1217, transparent);
    z-index: 2;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: clamp(60px, 10vw, 120px);
    background: linear-gradient(270deg, #0f1217, transparent);
    z-index: 2;
    pointer-events: none;
}

.testimonial-marquee {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonial-marquee:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 clamp(280px, 30vw, 400px);
    background: rgba(20, 26, 34, 0.7);
    backdrop-filter: blur(12px);
    padding: clamp(1.2rem, 1.8vw, 2rem);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #f5b342;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.testimonial-card .quote-icon {
    color: #e63946;
    font-size: 1.8rem;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    color: #cfd9e6;
    font-style: italic;
    line-height: 1.7;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #c92f3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author .author-info strong {
    color: #fff;
    display: block;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.testimonial-author .author-info span {
    color: #8fa0b8;
    font-size: clamp(0.75rem, 0.8vw, 0.85rem);
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta-section {
    padding: clamp(50px, 6vh, 80px) 0 clamp(40px, 5vh, 60px);
    background: linear-gradient(135deg, #0a0c10, #141a22);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(145deg, #141a22, #1a2129);
    border-radius: 28px;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-cta-text h2 span {
    color: #e63946;
}

.contact-cta-text p {
    color: #b0c0d4;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-open-popup {
    padding: clamp(14px, 1.5vw, 16px) clamp(28px, 3vw, 40px);
    background: linear-gradient(135deg, #e63946, #c92f3a);
    border: none;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.85rem, 1vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.25);
    font-family: 'Inter', sans-serif;
}

.btn-open-popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(230, 57, 70, 0.35);
}

.btn-phone {
    padding: clamp(14px, 1.5vw, 16px) clamp(20px, 2vw, 30px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    color: #cfd9e6;
    font-weight: 600;
    font-size: clamp(0.85rem, 1vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-phone:hover {
    background: rgba(230, 57, 70, 0.12);
    border-color: #e63946;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   MODAL / POPUP
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, #141a22, #0f1217);
    border-radius: 32px;
    max-width: 750px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content::-webkit-scrollbar {
    width: 4px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 10px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 20px 0 0;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    width: clamp(34px, 4vw, 40px);
    height: clamp(34px, 4vw, 40px);
    border-radius: 50%;
    color: #b0c0d4;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.modal-close:hover {
    background: rgba(230, 57, 70, 0.2);
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    padding: clamp(1rem, 2vw, 0.5rem) clamp(1.5rem, 2.5vw, 2.5rem) clamp(1rem, 1.5vw, 1.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-header .header-icon {
    width: clamp(44px, 5vw, 54px);
    height: clamp(44px, 5vw, 54px);
    min-width: clamp(44px, 5vw, 54px);
    background: linear-gradient(135deg, #e63946, #c92f3a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    color: #fff;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
}

.modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    color: #fff;
}

.modal-header h3 span {
    color: #e63946;
}

.modal-body {
    padding: clamp(1.2rem, 2vw, 2rem) clamp(1.2rem, 2.5vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
}

.modal-body .form-subtitle {
    color: #8fa0b8;
    margin-bottom: 1.8rem;
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    text-align: left;
}

/* Location Section */
.location-section {
    background: rgba(30, 39, 51, 0.3);
    border-radius: 16px;
    padding: clamp(1rem, 1.5vw, 1.5rem);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.location-section .location-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-grid .form-group {
    margin-bottom: 0;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.city-tag {
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b0c0d4;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: rgba(230, 57, 70, 0.12);
    border-color: #e63946;
    color: #fff;
}

.city-tag.active {
    background: rgba(230, 57, 70, 0.15);
    border-color: #e63946;
    color: #e63946;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: clamp(0.75rem, 0.8vw, 0.82rem);
    color: #cfd9e6;
    margin-bottom: 0.4rem;
}

.form-group label .required {
    color: #e63946;
    margin-left: 2px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a7b90;
    font-size: 0.95rem;
    transition: 0.3s;
}

.input-wrapper textarea~i {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: clamp(12px, 1.2vw, 14px) clamp(14px, 1.5vw, 18px) clamp(12px, 1.2vw, 14px) clamp(36px, 4vw, 46px);
    background: #1e2733;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    transition: all 0.3s ease;
}

.form-group textarea {
    padding: clamp(12px, 1.2vw, 14px) clamp(14px, 1.5vw, 18px) clamp(12px, 1.2vw, 14px) clamp(36px, 4vw, 46px);
    min-height: clamp(80px, 10vh, 100px);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
    background: #232e3d;
}

.form-group input:focus+i,
.form-group textarea:focus+i {
    color: #e63946;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a6b80;
}

.form-group select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #1e2733;
    color: #fff;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a7b90;
    pointer-events: none;
}

.address-field {
    grid-column: 1 / -1;
}

.address-field .input-wrapper i {
    top: 20px;
    transform: none;
}

.address-field input {
    padding-left: 46px;
}

.phone-wrapper {
    display: flex;
    gap: 0.5rem;
}

.phone-wrapper .country-code {
    min-width: 80px;
    flex-shrink: 0;
}

.phone-wrapper .country-code select {
    padding-left: 14px;
    padding-right: 30px;
}

.phone-wrapper .country-code .select-arrow {
    right: 8px;
}

.phone-wrapper .phone-number {
    flex: 1;
}

.phone-wrapper .phone-number input {
    padding-left: 46px;
}

.form-submit-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-submit {
    flex: 1;
    min-width: clamp(160px, 20vw, 200px);
    padding: clamp(14px, 1.5vw, 16px) clamp(28px, 3vw, 40px);
    background: linear-gradient(135deg, #e63946, #c92f3a);
    border: none;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.85rem, 1vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.25);
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(230, 57, 70, 0.35);
}

.btn-submit:active {
    transform: scale(0.97);
}

.form-note {
    font-size: 0.82rem;
    color: #6a7b90;
}

.form-note i {
    color: #e63946;
    margin-right: 4px;
}

#modalFormFeedback {
    margin-top: 1.2rem;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 12px;
}

#modalFormFeedback.show {
    display: flex;
}

#modalFormFeedback.success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.15);
    color: #6fcf97;
}

#modalFormFeedback.error {
    background: rgba(235, 87, 87, 0.1);
    border: 1px solid rgba(235, 87, 87, 0.15);
    color: #eb5757;
}

/* ============================================================
   FOOTER - FULLY RESPONSIVE
   ============================================================ */
.footer {
    background: #06080b;
    padding: clamp(40px, 5vh, 60px) 0 clamp(20px, 3vh, 25px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 20vw, 250px), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: clamp(2rem, 3vh, 3rem);
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background: #e63946;
    border-radius: 4px;
}

.footer-section p,
.footer-section a {
    color: #8fa0b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    transition: 0.2s;
}

.footer-section a:hover {
    color: #e63946;
    padding-left: 4px;
}

.footer-section .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.6rem;
    color: #8fa0b8;
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
}

.footer-section .contact-line i {
    color: #e63946;
    width: 18px;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.social-links a {
    width: clamp(38px, 4vw, 42px);
    height: clamp(38px, 4vw, 42px);
    background: #161e27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd9e6;
    transition: 0.3s;
    text-decoration: none;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.social-links a:hover {
    background: #e63946;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.25);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: clamp(1.5rem, 2vh, 2rem);
    text-align: center;
    color: #6a7b90;
    font-size: clamp(0.75rem, 0.8vw, 0.85rem);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: clamp(20px, 3vh, 30px);
    right: clamp(20px, 3vw, 30px);
    width: clamp(44px, 5vw, 50px);
    height: clamp(44px, 5vw, 50px);
    background: linear-gradient(135deg, #e63946, #c92f3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    border: none;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large screens / TV */
@media (min-width: 1921px) {
    .container {
        max-width: 1600px;
    }
    .hero-content h1 {
        font-size: 5.5rem;
    }
}

/* Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    .featured-generator {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets / Small Laptops */
@media (max-width: 1024px) {
    .hero-grid {
        justify-content: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text .section-title {
        display: block;
        text-align: center;
    }
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .contact-cta-buttons {
        justify-content: center;
    }
    .featured-generator {
        grid-template-columns: 1fr;
    }
    .featured-info {
        padding: 0 clamp(1.2rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    }
    .featured-image {
        min-height: 250px;
    }
    .generator-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/* Landscape Tablets / Small Tablets */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: #0a0c10;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s ease;
        backdrop-filter: blur(12px);
    }
    .nav-links.active {
        left: 0;
    }
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
        min-height: 90dvh;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    .section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .address-field {
        grid-column: 1;
    }
    .phone-wrapper {
        flex-direction: column;
    }
    .phone-wrapper .country-code {
        min-width: 100%;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-content {
        margin: 10px;
        max-height: 98vh;
    }
    .modal-header {
        padding: 1rem 1.5rem 1rem;
        flex-wrap: wrap;
    }
    .modal-header h3 {
        font-size: 1.4rem;
    }
    .modal-body {
        padding: 1.5rem 1.5rem 2rem;
    }
    .contact-cta-text h2 {
        font-size: 1.6rem;
    }
    .city-tags {
        gap: 0.4rem;
    }
    .city-tag {
        font-size: 0.7rem;
        padding: 3px 12px;
    }
    .logo img {
        height: 38px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .featured-info h3 {
        font-size: 1.5rem;
    }
    .generator-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    .featured-image {
        min-height: 200px;
        padding: 1.5rem;
    }
    .featured-image img {
        max-height: 200px;
    }
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section .contact-line br {
        display: none;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .stat-item {
        padding: 1rem;
    }
    .testimonial-card {
        flex: 0 0 260px;
        padding: 1.2rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    .contact-cta-wrapper {
        padding: 1.5rem 1rem;
    }
    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-open-popup,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }
    .form-submit-row {
        flex-direction: column;
    }
    .btn-submit {
        width: 100%;
    }
    .modal-header .header-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
    }
    .modal-close {
        top: 10px;
        right: 10px;
        margin: 10px 14px 0 0;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .location-section {
        padding: 0.8rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px 12px 40px;
        font-size: 0.9rem;
    }
    .form-group textarea {
        min-height: 80px;
    }
    .hero {
        background-attachment: scroll;
        min-height: 85vh;
        min-height: 85dvh;
        padding: 100px 0 60px;
    }
    .featured-info h3 {
        font-size: 1.2rem;
    }
    .featured-info .featured-spec {
        gap: 0.8rem;
    }
    .generator-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.6rem;
    }
    .generator-thumb {
        padding: 0.6rem;
    }
    .generator-thumb img {
        height: 50px;
    }
    .generator-thumb .thumb-name {
        font-size: 0.6rem;
    }
    .generator-thumb .thumb-power {
        font-size: 0.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-section .contact-line {
        font-size: 0.8rem;
    }
    .social-links {
        gap: 0.6rem;
    }
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .featured-actions {
        flex-direction: column;
        width: 100%;
    }
    .featured-actions .btn-featured,
    .featured-actions .btn-featured-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    .logo-text {
        font-size: 0.9rem;
    }
    .logo img {
        height: 32px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .generator-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    .generator-thumb {
        padding: 0.4rem;
        border-radius: 14px;
    }
    .generator-thumb img {
        height: 40px;
    }
    .generator-thumb .thumb-name {
        font-size: 0.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section .contact-line {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .modal-content {
        border-radius: 20px;
    }
    .modal-header {
        padding: 0.8rem 1rem 0.8rem;
    }
    .modal-header h3 {
        font-size: 1.1rem;
    }
    .modal-body {
        padding: 1rem 1rem 1.5rem;
    }
}

/* Landscape orientation for phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 80px 0 40px;
    }
    .hero-content h1 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .featured-image {
        min-height: 150px;
        padding: 1rem;
    }
    .featured-image img {
        max-height: 150px;
    }
    .featured-generator {
        grid-template-columns: 1fr 1fr;
    }
    .featured-info {
        padding: 1rem 1.5rem 1rem 0;
    }
    .featured-info h3 {
        font-size: 1.1rem;
    }
    .generator-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    .generator-thumb img {
        height: 40px;
    }
    .modal-content {
        max-height: 90vh;
    }
    .modal-body {
        padding: 1rem;
    }
    .form-group {
        margin-bottom: 0.6rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px 10px 36px;
        font-size: 0.8rem;
    }
    .form-group textarea {
        min-height: 60px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .contact-cta-section,
    .modal-overlay {
        display: none !important;
    }
    .hero {
        background-attachment: scroll !important;
        min-height: auto !important;
        padding: 40px 0 !important;
    }
    .hero::before,
    .hero::after {
        display: none !important;
    }
    .hero-content h1 {
        color: #000 !important;
    }
    .hero-content h1 .highlight {
        -webkit-text-fill-color: #e63946 !important;
    }
    .section-title::after {
        background: #e63946 !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .about,
    .generator-section,
    .testimonials {
        background: #f5f5f5 !important;
        padding: 30px 0 !important;
    }
    .featured-generator {
        border: 1px solid #ddd !important;
    }
    .footer {
        background: #eee !important;
        color: #000 !important;
    }
    .footer-section p,
    .footer-section a,
    .footer-section .contact-line {
        color: #333 !important;
    }
}