
:root {
    --primary: #E63917; 
    --primary-light: #FF5A3B;
    --primary-dark: #C22D12;
    --secondary: #1a1a1a;
    --accent: #4ade80;
    --bg-light: #f9fafb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #E63917 0%, #FF6B35 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Lexend Deca', sans-serif;
    line-height: 1.2;

}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(230, 57, 23, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 23, 0.23);
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--text-main);
}

.btn-outline {
    border: 2px solid #e5e7eb;
    color: var(--text-main);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}


header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Lexend Deca', sans-serif;
}

.logo .pedi { color: var(--text-main); }
.logo .la { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
}


.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(230, 57, 23, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(230, 57, 23, 0.03), transparent 30%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(230, 57, 23, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 4rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}


.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border: 12px solid #2a2a2a;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.3);
    overflow: hidden;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background: #f3f4f6;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.floating-notif {
    position: absolute;
    top: 20%;
    right: -40px;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: #25D366; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.notif-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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


section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}


.problem {
    background: #fafafa;
}

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid #f3f4f6;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 12px;
}

.problem-footer {
    margin-top: 50px;
}

.highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}


.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
        letter-spacing:-3px;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sol-step {
    display: flex;
    gap: 20px;
}

.step-num {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(230, 57, 23, 0.2);
}

.sol-step h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.conclusion {
    margin-top: 40px;
    font-weight: 700;
    color: var(--primary);
}


.benefits {
    background: var(--secondary);
    color: white;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item .check {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}


.differential-box {
    background: linear-gradient(135deg, rgba(230, 57, 23, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
    border-radius: 32px;
    padding: 80px 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(230, 57, 23, 0.45);
}

.differential-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.differential-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.differential-box ul {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.differential-box li {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}


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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: var(--radius);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
}


.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.5rem;
}

.price-value span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features {
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.price-features .check {
    color: var(--accent);
    font-weight: 800;
}


.contact-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    padding: 14px 20px;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--text-main);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(230, 57, 23, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 30px;
    font-size: 1.1rem;
}

.form-message {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


.success-card {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

.success-card h2 {
    color: var(--text-main);
    margin-bottom: 16px;
}

.success-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.btn-submit.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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


footer {
    padding: 50px 0;
    background: #f9fafb;
    border-top: 1px solid #eee;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 992px) {
    .hero-grid, .solution-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 { font-size: 2.8rem; }
    
    .subtitle { margin-left: auto; margin-right: auto; }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
}
