:root { --blue-dark: #0A1C2F; --blue-accent: #2C7DA0; --orange-accent: #E76F51; --gray-light: #F4F6F9; --gray-medium: #CED4DA; --white: #FFFFFF; --shadow: 0 8px 24px rgba(0,0,0,0.08); --radius: 16px; --transition: all 0.3s ease; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: #1e2a3a; background: var(--gray-light); 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(--blue-dark); z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-family: 'Space Grotesk', monospace; font-weight: 700; font-size: 1.4rem; color: var(--orange-accent); 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-accent); }
.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(135deg, #0A1C2F 0%, #1B3B4F 100%); color: white; display: flex; align-items: center; justify-content: center; text-align: center; }
.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-accent); color: white; }
.btn-primary:hover { background: #d65c3a; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--orange-accent); color: white; }
.btn-outline:hover { background: var(--orange-accent); color: white; }

.section { padding: 80px 0; }
.section-title { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 48px; color: var(--blue-dark); }
.animate { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.step-card { background: white; border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.step-card img { width: 70px; margin: 0 auto 16px; }

.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.check-item { background: white; border-radius: 40px; padding: 12px 20px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.check-item img { width: 32px; height: 32px; }

.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: 55px; margin: 0 auto 12px; }

.numbers-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; background: var(--blue-accent); 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-accent); }

.cta-section { background: var(--blue-dark); color: white; padding: 70px 0; text-align: center; }

.page-header { background: var(--blue-dark); 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: 60px; }
.price-category h2 { font-size: 1.8rem; margin-bottom: 30px; border-left: 5px solid var(--orange-accent); padding-left: 20px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.price-card { background: white; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); position: relative; }
.price-card.featured { border: 2px solid var(--orange-accent); transform: scale(1.02); }
.price-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.price { font-size: 2rem; font-weight: 800; color: var(--orange-accent); margin-bottom: 20px; }
.price-card ul { text-align: left; margin: 20px 0; padding-left: 20px; }
.price-card li { margin-bottom: 10px; font-size: 0.9rem; }
.badge { background: var(--orange-accent); color: white; font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; position: absolute; top: -12px; right: 20px; }
.btn-outline-price, .btn-primary-price { display: inline-block; padding: 10px 24px; border-radius: 30px; font-weight: 600; }
.btn-outline-price { border: 2px solid var(--orange-accent); color: var(--orange-accent); background: transparent; }
.btn-outline-price:hover { background: var(--orange-accent); color: white; }
.btn-primary-price { background: var(--orange-accent); color: white; border: none; }
.btn-primary-price:hover { background: #d65c3a; }

.price-table { background: white; border-radius: var(--radius); overflow: hidden; }
.price-row { display: grid; grid-template-columns: 2fr 1fr; padding: 14px 20px; border-bottom: 1px solid #eee; }
.price-row.header { background: var(--blue-dark); color: white; font-weight: 700; }

.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 15px; margin-top: 20px; background: white; padding: 25px; border-radius: var(--radius); }
.extra-item { display: flex; justify-content: space-between; border-bottom: 1px dashed #ccc; padding: 12px 0; }

.note { background: #e9ecef; 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 td, .info-table th { padding: 12px; text-align: left; }
.info-table th { width: 30%; font-weight: 700; }

.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: 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: 600; 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-accent); }
.legal-box h3 { margin: 20px 0 10px; }

.footer { background: #0A1C2F; color: #adb5bd; 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-accent); margin-bottom: 10px; }
.footer-nav h4, .footer-contact h4 { color: white; margin-bottom: 12px; }
.footer-nav a:hover { color: var(--orange-accent); }
.footer-bottom { text-align: center; font-size: 0.8rem; border-top: 1px solid #1e3a4a; padding-top: 20px; }

.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 45px; height: 45px; border-radius: 50%; background: var(--orange-accent); 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(--blue-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-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
}
