:root {
    --primary: #003D4C;
    --secondary: #005F73;
    --accent: #FF6B6B;
    --bg-light: #F4F7F6;
    --text-dark: #1A1A24;
    --text-muted: #666666;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background-color: var(--bg-light); line-height: 1.6; overflow-x: hidden; }

/* Accessibility */
.skip-link { position: absolute; top: -50px; left: 0; background: var(--accent); color: #fff; padding: 10px; z-index: 10000; transition: top 0.3s; font-weight: bold; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* Unique Graphic Element (Animated Background Blob) */
.bg-blob { position: absolute; top: -10vw; right: -10vw; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(255,107,107,0.15) 0%, rgba(0,61,76,0) 70%); border-radius: 50%; z-index: -1; animation: pulse 6s infinite alternate; pointer-events: none;}
@keyframes pulse { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* Header */
header { background: #fff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--primary); }
.logo img { width: 40px; border-radius: 0; }
nav ul { list-style: none; display: flex; gap: 25px; }
nav a { font-weight: 600; font-size: 0.95rem; }
nav a:hover { color: var(--accent); }
.burger { display: none; font-size: 1.8rem; background: none; border: none; color: var(--primary); cursor: pointer; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s; text-align: center; }
.btn:hover { background: #E55A5A; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,107,107,0.3); }

/* Layout & Sections */
section { padding: 90px 5%; position: relative; }
.section-title { text-align: center; font-family: var(--font-head); font-size: 2.5rem; color: var(--primary); margin-bottom: 50px; }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; background: var(--primary); color: #fff; padding-top: 120px; padding-bottom: 120px; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); margin-bottom: 40px;}
.hero h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; }
.hero p { font-size: 1.1rem; margin-bottom: 35px; opacity: 0.9; }
.hero-img { border-radius: 20px; border: 4px solid rgba(255,255,255,0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Statistics */
.stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; background: #fff; padding: 60px 5%; border-radius: var(--radius); box-shadow: 0 5px 30px rgba(0,0,0,0.05); margin: -100px 5% 50px; position: relative; z-index: 10; }
.stat-item { text-align: center; }
.stat-item h3 { font-family: var(--font-head); font-size: 2.5rem; color: var(--accent); }
.stat-item p { font-weight: 600; color: var(--primary); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Social Proof */
.social-proof { background: transparent; text-align: center; }
.partner-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 60px; opacity: 0.6; font-size: 2rem; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: 0 4px 15px rgba(0,0,0,0.03); text-align: left; }
.review-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-head img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-card i { color: #F1C40F; font-size: 0.9rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card img { height: 200px; width: 100%; object-fit: cover; border-radius: 0; }
.service-content { padding: 30px; }
.service-content h3 { font-family: var(--font-head); color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; }

/* Features (Asymmetric) */
.features { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; background: #fff; }
.features-img { flex: 1; min-width: 300px; position: relative; }
.features-img::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--accent); border-radius: var(--radius); z-index: 0; }
.features-img img { position: relative; z-index: 1; }
.features-text { flex: 1; min-width: 300px; }
.features-text h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; }
.features-text ul { list-style: none; margin-top: 25px; }
.features-text li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.features-text li i { color: var(--accent); margin-top: 5px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.price-card { background: #fff; padding: 40px 30px; border-radius: var(--radius); text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee; }
.price-card h3 { font-family: var(--font-head); color: var(--primary); font-size: 1.5rem; }
.price-card .price { font-size: 3rem; font-weight: 700; color: var(--text-dark); margin: 20px 0; }
.price-card .price span { font-size: 1rem; color: var(--text-muted); }
.price-card ul { list-style: none; margin: 30px 0; text-align: left; }
.price-card ul li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.price-card.popular { background: var(--primary); color: #fff; transform: scale(1.05); border: none; position: relative; box-shadow: 0 20px 40px rgba(0,61,76,0.2); }
.price-card.popular h3, .price-card.popular .price { color: #fff; }
.price-card.popular .badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--accent); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.price-card.popular ul li { border-bottom-color: rgba(255,255,255,0.1); }
.price-btn { display: block; padding: 12px; border-radius: 5px; font-weight: bold; border: 2px solid var(--accent); color: var(--accent); }
.price-card.popular .price-btn { background: var(--accent); color: #fff; }

/* Form Section */
.form-section { background: var(--secondary); color: #fff; display: flex; flex-wrap: wrap; gap: 50px; border-radius: 20px; margin: 50px 5%; padding: 60px; }
.form-info { flex: 1; min-width: 300px; }
.form-info h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 20px; }
.form-box { flex: 1; min-width: 300px; background: #fff; padding: 40px; border-radius: var(--radius); }
.form-box input, .form-box textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; }
.form-box input:focus, .form-box textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,61,76,0.1); }
.checkbox-wrap { display: flex; gap: 10px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-wrap input { width: auto; margin: 5px 0 0; }
.form-box button { width: 100%; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; margin-bottom: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.faq-q { padding: 20px; cursor: pointer; font-family: var(--font-head); font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; color: var(--text-muted); }
.faq-item.active .faq-a { padding: 0 20px 20px; max-height: 500px; }
.faq-item.active .faq-q i { transform: rotate(180deg); transition: 0.3s; }

/* Trust Layer & Footer */
.trust-layer { background: #E8ECEF; padding: 40px 5%; font-size: 0.85rem; color: #555; text-align: center; border-top: 1px solid #ddd; }
.trust-layer h4 { font-family: var(--font-head); color: var(--text-dark); margin-bottom: 10px; font-size: 1.1rem; }
footer { background: var(--text-dark); color: #aaa; padding: 60px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.foot-col h5 { color: #fff; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 20px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: -100px; left: 0; width: 100%; background: #fff; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.5s ease; flex-wrap: wrap; gap: 15px; }
.cookie-bar.show { bottom: 0; }
.cookie-bar p { font-size: 0.9rem; flex: 1; min-width: 300px; margin: 0; color: var(--text-muted); }
.cookie-btn { background: var(--primary); color: #fff; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; }

/* Content Pages */
.page-header { background: var(--primary); color: #fff; padding: 100px 5% 60px; text-align: center; }
.page-header h1 { font-family: var(--font-head); font-size: 3rem; color: var(--accent); }
.content-box { max-width: 900px; margin: -30px auto 50px; background: #fff; padding: 50px; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,0.05); position: relative; z-index: 10; }
.content-box h2 { font-family: var(--font-head); color: var(--primary); margin: 35px 0 15px; }
.content-box p { margin-bottom: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .burger { display: block; }
    nav { position: absolute; top: 70px; left: 0; width: 100%; background: #fff; flex-direction: column; text-align: center; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: 0 10px 10px rgba(0,0,0,0.05); }
    nav.open { max-height: 300px; padding: 20px 0; }
    nav ul { flex-direction: column; gap: 15px; }
    .hero, .features, .form-section { grid-template-columns: 1fr; }
    .hero { padding-top: 60px; clip-path: none; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .stats { margin-top: 0; }
    .price-card.popular { transform: scale(1); }
    .content-box { padding: 30px 20px; }
}