/*
 * Nitsutz Mavrik (ניצוץ מבריק) – Cleaning Company Campaign Landing Page
 * Fresh, clean, professional design with teal/turquoise brand identity
 */

:root {
    --nm-primary: #0891b2;
    --nm-primary-dark: #0e7490;
    --nm-primary-light: #22d3ee;
    --nm-accent: #f59e0b;
    --nm-accent-dark: #d97706;
    --nm-success: #10b981;
    --nm-success-light: #ecfdf5;
    --nm-bg: #f0f9ff;
    --nm-bg-white: #ffffff;
    --nm-text: #0f172a;
    --nm-text-muted: #64748b;
    --nm-border: #e0f2fe;
    --nm-radius: 16px;
    --nm-shadow: 0 4px 16px rgba(8, 145, 178, 0.08);
    --nm-shadow-lg: 0 12px 40px rgba(8, 145, 178, 0.12);
    --font-main: 'Heebo', sans-serif;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--nm-text);
    direction: rtl;
    line-height: 1.7;
    background: var(--nm-bg);
    overflow-x: hidden;
}

.nm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nm-section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== SECTION HEADERS ==================== */
.nm-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.nm-section-tag {
    display: inline-block;
    background: rgba(8, 145, 178, 0.1);
    color: var(--nm-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.nm-section-header h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--nm-text);
}

.nm-accent {
    color: var(--nm-primary);
}

/* ==================== TOP BAR ==================== */
.nm-topbar {
    background: var(--nm-primary-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.nm-topbar-inner {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nm-topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nm-topbar a {
    color: #fff;
    font-weight: 600;
}

.nm-topbar i {
    color: var(--nm-accent);
}

/* ==================== HERO ==================== */
.nm-hero {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #0e7490 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.nm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.nm-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.nm-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.nm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.nm-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.nm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fde68a;
}

.nm-badge i {
    color: #fbbf24;
}

.nm-hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.nm-hero-highlight {
    color: #fde68a;
}

.nm-hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 520px;
}

.nm-hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--nm-accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.nm-btn-primary:hover {
    background: var(--nm-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.nm-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nm-btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.nm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--nm-primary);
    border: 2px solid var(--nm-primary);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.nm-btn-outline:hover {
    background: var(--nm-primary);
    color: #fff;
}

.nm-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nm-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.nm-trust-item i {
    color: #34d399;
}

/* ==================== HERO FORM ==================== */
.nm-form-card {
    background: var(--nm-bg-white);
    border-radius: var(--nm-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    color: var(--nm-text);
}

.nm-form-header {
    background: linear-gradient(135deg, var(--nm-primary), var(--nm-primary-dark));
    color: #fff;
    padding: 20px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nm-form-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.nm-form {
    padding: 24px;
}

.nm-form-group {
    margin-bottom: 12px;
}

.nm-form input,
.nm-form select,
.nm-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--nm-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--nm-text);
    background: var(--nm-bg);
    transition: border-color 0.3s ease;
    resize: vertical;
}

.nm-form input:focus,
.nm-form select:focus,
.nm-form textarea:focus {
    outline: none;
    border-color: var(--nm-primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.nm-form input::placeholder,
.nm-form textarea::placeholder {
    color: #94a3b8;
}

.nm-form-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--nm-primary);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.nm-form-btn:hover {
    background: var(--nm-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
}

.nm-form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--nm-text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nm-form-note i {
    color: var(--nm-success);
}

/* ==================== USP BAR ==================== */
.nm-usp-bar {
    background: var(--nm-bg-white);
    padding: 50px 0;
    border-bottom: 2px solid var(--nm-border);
}

.nm-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nm-usp-item {
    text-align: center;
    padding: 24px 16px;
}

.nm-usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nm-primary), var(--nm-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 16px;
}

.nm-usp-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--nm-text);
}

.nm-usp-item p {
    font-size: 0.9rem;
    color: var(--nm-text-muted);
    line-height: 1.6;
}

/* ==================== FEATURE – SOFA CLEANING ==================== */
.nm-feature-section {
    background: var(--nm-bg);
}

.nm-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nm-feature-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.nm-feature-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--nm-text);
    margin-bottom: 16px;
}

.nm-feature-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.nm-feature-stat {
    text-align: center;
    background: var(--nm-bg-white);
    padding: 20px 18px;
    border-radius: 14px;
    border: 2px solid var(--nm-border);
    flex: 1;
}

.nm-stat-num {
    display: inline;
    font-size: 2rem;
    font-weight: 900;
    color: var(--nm-primary);
    line-height: 1;
}

.nm-stat-suffix {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--nm-primary);
}

.nm-stat-text {
    display: block;
    font-size: 0.82rem;
    color: var(--nm-text-muted);
    font-weight: 600;
    margin-top: 6px;
}

/* Feature Visual */
.nm-feature-visual {
    position: relative;
}

.nm-feature-img {
    width: 100%;
    border-radius: var(--nm-radius);
    box-shadow: var(--nm-shadow-lg);
}

.nm-feature-badge-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--nm-bg-white);
    border: 2px solid var(--nm-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--nm-shadow-lg);
    max-width: 280px;
}

.nm-feature-badge-card i {
    font-size: 1.6rem;
    color: var(--nm-success);
    flex-shrink: 0;
}

.nm-feature-badge-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--nm-text);
    margin-bottom: 2px;
}

.nm-feature-badge-card span {
    font-size: 0.78rem;
    color: var(--nm-text-muted);
}

/* ==================== SERVICES ==================== */
.nm-services-section {
    background: var(--nm-bg-white);
}

.nm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.nm-service-card {
    background: var(--nm-bg);
    border: 2px solid var(--nm-border);
    border-radius: var(--nm-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.nm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nm-shadow-lg);
    border-color: var(--nm-primary);
}

.nm-service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.nm-service-body {
    padding: 24px 20px;
    text-align: center;
}

.nm-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nm-primary), var(--nm-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #fff;
    margin: -48px auto 16px;
    position: relative;
    z-index: 2;
    border: 4px solid var(--nm-bg);
}

.nm-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.nm-service-card p {
    font-size: 0.92rem;
    color: var(--nm-text-muted);
    line-height: 1.7;
}

/* ==================== WINDOWS SECTION ==================== */
.nm-windows-section {
    background: var(--nm-bg);
}

.nm-windows-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nm-windows-img {
    width: 100%;
    border-radius: var(--nm-radius);
    box-shadow: var(--nm-shadow-lg);
}

.nm-windows-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.nm-windows-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--nm-text);
    margin-bottom: 24px;
}

.nm-check-list {
    list-style: none;
    margin-bottom: 30px;
}

.nm-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--nm-text);
}

.nm-check-list i {
    color: var(--nm-success);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ==================== WHY NITSUTZ MAVRIK ==================== */
.nm-why-section {
    background: linear-gradient(180deg, #e0f7fa 0%, var(--nm-bg) 100%);
}

.nm-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.nm-why-card {
    background: var(--nm-bg-white);
    border-radius: var(--nm-radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--nm-border);
    transition: all 0.3s ease;
}

.nm-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nm-shadow);
}

.nm-why-emoji {
    font-size: 2.8rem;
    margin-bottom: 14px;
}

.nm-why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.nm-why-card p {
    font-size: 0.95rem;
    color: var(--nm-text-muted);
    line-height: 1.7;
}

/* ==================== POST RENOVATION ==================== */
.nm-renovation-section {
    background: var(--nm-bg-white);
}

.nm-renovation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.nm-renovation-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.nm-renovation-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--nm-text);
    margin-bottom: 24px;
}

.nm-renovation-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nm-renovation-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nm-renovation-icon {
    width: 48px;
    height: 48px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: var(--nm-primary);
    flex-shrink: 0;
}

.nm-renovation-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.nm-renovation-item p {
    font-size: 0.9rem;
    color: var(--nm-text-muted);
    line-height: 1.5;
}

.nm-renovation-visual {
    position: relative;
}

.nm-renovation-img {
    width: 100%;
    border-radius: var(--nm-radius);
    box-shadow: var(--nm-shadow-lg);
}

.nm-renovation-badge {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background: var(--nm-success);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.nm-renovation-badge i {
    font-size: 1.2rem;
}

/* ==================== REVIEWS ==================== */
.nm-reviews-section {
    background: var(--nm-bg);
}

.nm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.nm-review-card {
    background: var(--nm-bg-white);
    border: 2px solid var(--nm-border);
    border-radius: var(--nm-radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.nm-review-card:hover {
    box-shadow: var(--nm-shadow);
    border-color: var(--nm-primary);
}

.nm-review-stars {
    margin-bottom: 14px;
}

.nm-review-stars i {
    color: #fbbf24;
    font-size: 1rem;
    margin-left: 2px;
}

.nm-review-card > p {
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
    color: var(--nm-text);
}

.nm-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nm-review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--nm-primary), var(--nm-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.nm-review-author strong {
    display: block;
    font-size: 0.95rem;
}

.nm-review-author span {
    font-size: 0.8rem;
    color: var(--nm-text-muted);
}

.nm-reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==================== PROCESS ==================== */
.nm-process-section {
    background: var(--nm-bg-white);
}

.nm-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nm-process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 20px 16px;
    position: relative;
}

.nm-step-num {
    width: 44px;
    height: 44px;
    background: var(--nm-primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.nm-step-icon {
    width: 64px;
    height: 64px;
    background: var(--nm-bg);
    border: 2px solid var(--nm-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--nm-primary);
    margin: 0 auto 14px;
}

.nm-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.nm-process-step p {
    font-size: 0.88rem;
    color: var(--nm-text-muted);
    line-height: 1.6;
}

.nm-process-arrow {
    display: flex;
    align-items: center;
    padding-top: 70px;
    color: var(--nm-primary);
    font-size: 1.2rem;
    opacity: 0.4;
}

/* ==================== COVERAGE AREA ==================== */
.nm-area-section {
    background: var(--nm-bg);
}

.nm-area-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.nm-area-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.nm-area-text > p {
    font-size: 1.05rem;
    color: var(--nm-text-muted);
    margin-bottom: 20px;
}

.nm-area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.nm-area-cities span {
    background: rgba(8, 145, 178, 0.08);
    color: var(--nm-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(8, 145, 178, 0.15);
}

.nm-area-note {
    font-size: 0.95rem;
    color: var(--nm-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nm-area-note i {
    color: var(--nm-primary);
}

.nm-area-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nm-area-map {
    width: 100%;
    border-radius: var(--nm-radius);
    box-shadow: var(--nm-shadow);
    border: 2px solid var(--nm-border);
}

.nm-area-card {
    background: var(--nm-bg-white);
    border: 2px solid var(--nm-border);
    border-radius: var(--nm-radius);
    padding: 32px 24px;
    text-align: center;
}

.nm-area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nm-primary), var(--nm-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 18px;
}

.nm-area-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--nm-text-muted);
}

.nm-time-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--nm-primary);
    line-height: 1;
}

.nm-time-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nm-text-muted);
    margin-bottom: 12px;
}

.nm-area-card > p {
    font-size: 0.88rem;
    color: var(--nm-text-muted);
}

/* ==================== VAAD BAYIT ==================== */
.nm-vaad-section {
    background: var(--nm-bg-white);
}

.nm-vaad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.nm-vaad-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--nm-text);
    margin-bottom: 28px;
}

.nm-vaad-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.nm-vaad-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.nm-vaad-benefit i {
    color: var(--nm-success);
    font-size: 1rem;
    flex-shrink: 0;
}

.nm-vaad-img {
    width: 100%;
    border-radius: var(--nm-radius);
    box-shadow: var(--nm-shadow-lg);
}

/* ==================== FINAL CTA ==================== */
.nm-final-cta {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.nm-final-content h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}

.nm-final-content > p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nm-final-cta-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.nm-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 48px;
    border-radius: var(--nm-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 220px;
}

.nm-cta-block i {
    font-size: 2rem;
}

.nm-cta-block strong {
    font-size: 1.1rem;
}

.nm-cta-block span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.nm-cta-phone {
    background: var(--nm-accent);
    color: #fff;
}

.nm-cta-phone:hover {
    background: var(--nm-accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.nm-cta-wa {
    background: #25d366;
    color: #fff;
}

.nm-cta-wa:hover {
    background: #1ebe57;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.nm-final-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0.85;
    font-size: 0.9rem;
}

.nm-final-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nm-final-trust i {
    color: #fde68a;
}

/* ==================== FOOTER ==================== */
.nm-footer {
    background: #0a1929;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.nm-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nm-footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.nm-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
}

.nm-footer ul {
    list-style: none;
}

.nm-footer li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.nm-footer li i {
    color: var(--nm-primary-light);
    width: 18px;
    text-align: center;
}

.nm-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.nm-footer a:hover {
    color: #fff;
}

.nm-footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.82rem;
    opacity: 0.6;
}

.nm-footer-bottom a {
    color: var(--nm-primary-light);
}

/* ==================== FLOATING BUTTONS ==================== */
.nm-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.nm-wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.nm-call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--nm-accent);
    color: #fff;
    border-radius: 50%;
    display: none;
    place-items: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    animation: nm-pulse 2s infinite;
}

@keyframes nm-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(245, 158, 11, 0.7); }
}

.nm-call-float:hover {
    transform: scale(1.1);
}

/* ==================== ANIMATIONS ==================== */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim="fade-right"] {
    transform: translateX(30px);
}

[data-anim="fade-left"] {
    transform: translateX(-30px);
}

[data-anim].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .nm-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nm-hero-sub {
        margin: 0 auto 30px;
    }

    .nm-hero-ctas {
        justify-content: center;
    }

    .nm-hero-trust {
        justify-content: center;
    }

    .nm-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nm-feature-grid {
        grid-template-columns: 1fr;
    }

    .nm-feature-badge-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .nm-windows-grid {
        grid-template-columns: 1fr;
    }

    .nm-renovation-grid {
        grid-template-columns: 1fr;
    }

    .nm-area-content {
        grid-template-columns: 1fr;
    }

    .nm-vaad-grid {
        grid-template-columns: 1fr;
    }

    .nm-vaad-benefits {
        grid-template-columns: 1fr;
    }

    .nm-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nm-footer li {
        justify-content: center;
    }

    .nm-footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nm-section {
        padding: 60px 0;
    }

    .nm-hero {
        padding: 60px 0 40px;
    }

    .nm-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .nm-btn-primary,
    .nm-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .nm-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nm-usp-grid {
        grid-template-columns: 1fr;
    }

    .nm-feature-stats {
        flex-direction: column;
        gap: 12px;
    }

    .nm-services-grid {
        grid-template-columns: 1fr;
    }

    .nm-process-arrow {
        display: none;
    }

    .nm-process-grid {
        flex-direction: column;
        align-items: center;
    }

    .nm-process-step {
        max-width: 100%;
    }

    .nm-final-cta-grid {
        flex-direction: column;
        align-items: center;
    }

    .nm-cta-block {
        width: 100%;
    }

    .nm-call-float {
        display: grid;
    }

    .nm-topbar-area {
        display: none;
    }
}

@media (max-width: 480px) {
    .nm-area-cities {
        justify-content: center;
    }

    .nm-final-trust {
        flex-direction: column;
        align-items: center;
    }
}
