:root { --orange: #E65C1E; --orange-dark: #C13B00; --dark: #1A1A1A; --gray: #3A3A3A; --light-gray: #E8E8E8; --white: #FFFFFF; --shadow: 0 4px 15px rgba(0,0,0,0.1); --radius: 12px; --transition: all 0.3s ease; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: #F5F5F5; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

.navbar { position: fixed; top: 0; left: 0; right: 0; background: var(--dark); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-weight: 800; font-size: 1.4rem; color: var(--orange); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--white); font-weight: 500; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: var(--transition); }

.hero { min-height: 85vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" fill="%23E65C1E" opacity="0.1"><rect x="100" y="200" width="80" height="80"/><circle cx="800" cy="300" r="50"/></svg>'); background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-content { max-width: 800px; padding: 0 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 40px; font-weight: 600; transition: var(--transition); font-family: inherit; border: none; cursor: pointer; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--orange); color: white; }
.btn-outline:hover { background: var(--orange); color: white; }

.section { padding: 80px 0; }
.section-title { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 48px; color: var(--dark); }
.animate { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.tool-card { background: white; border-radius: var(--radius); padding: 25px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 4px solid transparent; }
.tool-card:hover { transform: translateY(-5px); border-bottom-color: var(--orange); }
.tool-card img { width: 90px; height: 90px; margin: 0 auto 16px; }
.tool-card h3 { font-size: 1.4rem; margin-bottom: 12px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature-item { background: white; padding: 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.feat-icon img { width: 50px; height: 50px; margin: 0 auto 12px; }

.numbers-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; background: var(--orange); padding: 50px 30px; border-radius: var(--radius); color: white; text-align: center; }
.number-item { flex: 1; }
.number { font-size: 2.8rem; font-weight: 800; display: block; }

.testimonial-card { background: white; padding: 32px; border-radius: var(--radius); margin-bottom: 24px; text-align: center; box-shadow: var(--shadow); }
.client { margin-top: 16px; font-weight: 600; color: var(--orange); }

.cta-section { background: var(--dark); color: white; padding: 70px 0; text-align: center; }

.page-header { background: var(--gray); color: white; padding: 120px 0 60px; text-align: center; }
.page-header h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }

.pricing-intro { background: white; padding: 20px; border-radius: var(--radius); margin-bottom: 40px; text-align: center; }
.price-category { margin-bottom: 50px; }
.price-category h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; border-left: 5px solid var(--orange); padding-left: 20px; }
.price-table { background: white; border-radius: var(--radius); overflow-x: auto; }
.price-row { display: grid; grid-template-columns: repeat(6, 1fr); padding: 12px 16px; border-bottom: 1px solid #eee; }
.price-row.header { background: var(--dark); color: white; font-weight: 600; }
.price-row span { padding: 8px 4px; }
.price-grid-pack { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 20px; }
.pack-card { background: white; padding: 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.pack-card.featured { border: 2px solid var(--orange); transform: scale(1.02); }
.pack-card .price { font-size: 1.8rem; font-weight: 800; color: var(--orange); margin: 15px 0; }
.pack-card ul { text-align: left; margin: 20px 0; padding-left: 20px; }
.pack-card li { margin-bottom: 8px; }
.btn-secondary { background: var(--gray); color: white; padding: 10px 20px; border-radius: 30px; display: inline-block; }
.btn-secondary:hover { background: var(--orange); }

.extras { background: white; padding: 30px; border-radius: var(--radius); margin-top: 40px; }
.extras h2 { font-size: 1.6rem; margin-bottom: 20px; }
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.extra-item { display: flex; justify-content: space-between; border-bottom: 1px dashed #ccc; padding: 12px 0; }
.note { background: #f0f0f0; padding: 20px; border-radius: var(--radius); margin-top: 30px; text-align: center; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; }
.company-info { background: white; padding: 32px; border-radius: var(--radius); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #eee; }
.info-table th, .info-table td { padding: 12px; text-align: left; }
.info-table th { width: 30%; font-weight: 600; }

.contact-methods { margin-bottom: 50px; }
.methods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.method-card { background: white; padding: 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.method-icon { font-size: 2.2rem; margin-bottom: 10px; }
.contact-form { background: white; padding: 36px; border-radius: var(--radius); max-width: 800px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-weight: 500; display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-family: inherit; }
.btn-full { width: 100%; }

.legal-box { background: white; padding: 32px; border-radius: var(--radius); border-left: 4px solid var(--orange); }
.legal-box h3 { margin: 20px 0 10px; }

.footer { background: #111; color: #aaa; padding: 50px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 30px; margin-bottom: 30px; }
.footer-brand h3 { color: var(--orange); margin-bottom: 10px; }
.footer-nav h4, .footer-contact h4 { color: white; margin-bottom: 12px; }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom { text-align: center; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; }

.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 45px; height: 45px; border-radius: 50%; background: var(--orange); color: white; border: none; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); }
.back-to-top.show { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 20px; text-align: center; gap: 15px; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .price-row { grid-template-columns: repeat(2, 1fr); }
    .price-row.header { display: none; }
    .price-row span { border-bottom: 1px solid #ddd; }
}
