/* ====================================
   CSS Variables & Reset
   ==================================== */
:root {
    --primary-green: #2d5f3f;
    --secondary-green: #3a7d4f;
    --accent-green: #4caf50;
    --light-green: #e8f5e9;
    --whatsapp-green: #25D366;
    --orange-accent: #ff9800;
    --danger-red: #f44336;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ====================================
   Header
   ==================================== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-green);
    font-size: 16px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-item.phone a {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-green);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="rgba(255,255,255,0.05)" x="0" y="0" width="1200" height="600"/><circle fill="rgba(255,255,255,0.03)" cx="200" cy="150" r="100"/><circle fill="rgba(255,255,255,0.03)" cx="800" cy="400" r="150"/><circle fill="rgba(255,255,255,0.03)" cx="1000" cy="200" r="80"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--orange-accent);
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-offer {
    margin: 40px 0;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-accent) 0%, #ff6f00 100%);
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.4);
    transform: scale(1);
    transition: transform 0.3s;
}

.offer-badge:hover {
    transform: scale(1.05);
}

.badge-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.badge-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.badge-condition {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    margin-top: 30px;
    /* button reset */
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: #22c55e;
}

.cta-button i {
    font-size: 1.5rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    }
}

.hero-note {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

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

/* ====================================
   Loss Section
   ==================================== */
.loss-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title.light {
    color: white;
}

.section-title .text-danger {
    color: var(--danger-red);
}

.section-title .text-success {
    color: var(--accent-green);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.loss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.loss-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.loss-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--danger-red);
}

.loss-card.total-loss {
    background: linear-gradient(135deg, var(--danger-red) 0%, #d32f2f 100%);
    color: white;
}

.loss-card.total-loss h3,
.loss-card.total-loss p {
    color: white;
}

.loss-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.loss-icon.danger {
    background: rgba(244, 67, 54, 0.1);
    color: var(--danger-red);
}

.loss-card.total-loss .loss-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.loss-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.loss-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger-red);
    margin-bottom: 15px;
}

.loss-card.total-loss .loss-value {
    color: white;
}

.loss-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.warning-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid var(--orange-accent);
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.warning-banner i {
    font-size: 3rem;
    color: var(--orange-accent);
}

.warning-banner p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* ====================================
   Solution Section
   ==================================== */
.solution-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.solution-list {
    list-style: none;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.solution-list i {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.results-banner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.results-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.results-banner h3 i {
    color: var(--orange-accent);
    font-size: 2.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.result-item {
    padding: 20px;
}

.result-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange-accent);
    margin-bottom: 10px;
}

.result-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ====================================
   Offer Section
   ==================================== */
.offer-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.offer-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--orange-accent);
}

.offer-header {
    background: linear-gradient(135deg, var(--orange-accent) 0%, #ff6f00 100%);
    color: white;
    padding: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.offer-header i {
    font-size: 3rem;
}

.offer-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.offer-content {
    padding: 50px;
}

.offer-price {
    text-align: center;
    margin-bottom: 50px;
}

.price-standard {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.price-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
}

.price-value.crossed {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-value.highlight {
    color: var(--accent-green);
    font-size: 4.5rem;
}

.offer-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.offer-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.offer-details ol {
    counter-reset: item;
    list-style: none;
}

.offer-details li {
    counter-increment: item;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.offer-details li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.offer-footer {
    text-align: center;
    padding: 30px;
}

.offer-benefit {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.offer-benefit i {
    color: var(--orange-accent);
    font-size: 1.5rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 25px 60px;
}

/* ====================================
   Advantages Section
   ==================================== */
.advantages-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--accent-green);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.advantage-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-box > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button.huge {
    font-size: 1.8rem;
    padding: 30px 70px;
}

.cta-note {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ====================================
   Contact Section
   ==================================== */
.contact-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--accent-green);
    width: 30px;
    margin-top: 5px;
}

.contact-detail strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--accent-green);
}

.contact-map iframe {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 15px;
    /* Removed filter to show original logo colors */
}

.footer-logo p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

/* ====================================
   WhatsApp Floating Button
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

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

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

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .badge-value {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }
    
    .header-contacts {
        justify-content: center;
        width: 100%;
    }
    
    .hero {
        padding: 80px 20px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .offer-badge {
        padding: 20px 30px;
    }
    
    .badge-value {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    .cta-button.huge {
        padding: 20px 45px;
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .loss-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-content {
        padding: 30px 20px;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .price-value.highlight {
        font-size: 3.5rem;
    }
    
    .offer-details {
        padding: 25px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .loss-value,
    .result-value {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   Contact Modal
   ==================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px);
    animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px 32px 28px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.12);
}

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

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--whatsapp-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover:not(:disabled) {
    background: #1ebe57;
    transform: translateY(-1px);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

.form-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    gap: 12px;
}

.form-success i {
    font-size: 3.5rem;
    color: var(--accent-green);
}

.form-success h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-green);
}

.form-success p {
    color: var(--text-light);
}

/* whatsapp-float as button — reset default button styles */
button.whatsapp-float {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: var(--whatsapp-green);
}

