/* --------------------------
   1. Variables & Reset
--------------------------- */
:root {
    --color-dark: #09090b;
    --color-gray: #27272a;
    --color-orange: #f97316;
    --color-concrete: #a1a1aa;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.1);
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;

    --container-width: 1280px;
    --section-padding: 6rem 1rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--color-dark); color: var(--color-white); font-family: var(--font-sans); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-orange); }
::selection { background-color: var(--color-orange); color: #000; }

/* --------------------------
   2. Utilities & Typography
--------------------------- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1rem; }
.text-orange { color: var(--color-orange); }
.hidden { display: none !important; }

.display-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 2rem; line-height: 1.1; margin-bottom: 1rem; }
@media (min-width: 768px) { .display-title { font-size: 3rem; } }

.btn-primary { background-color: var(--color-orange); color: black; text-decoration: none; font-weight: 700; border-radius: 5px; padding: 0.8rem 1.5rem; display: inline-block; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-primary:hover { background-color: var(--color-orange); color: white; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4); }
.btn-large { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; text-align: center; }

.sticky-cta { display: none; }
@media (max-width: 768px) {
    .sticky-cta { display: block; position: fixed; bottom: 10px; right: 0; left: 0; width: calc(100% - 2rem); margin: 0 auto; z-index: 9999; text-align: center; padding: 1rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); border-radius: 5px; }
}

/* --------------------------
   3. Navigation
--------------------------- */
.navbar { position: fixed; top: 0; width: 100%; z-index: 50; background-color: var(--color-dark); border-bottom: 1px solid var(--color-border); height: 80px; display: flex; align-items: center; }
.navbar-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-wrapper { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon img { width: 9rem; height: 5rem; object-fit: contain; }

.desktop-menu { display: none; gap: 2rem; align-items: center; }
.nav-link { color: #d1d5db; text-decoration: none; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; transition: color 0.2s; }
.nav-link:hover { color: var(--color-orange); }
.phone-link { font-size: 1.2rem; font-weight: 700; color: var(--color-orange); display: flex; align-items: center; gap: 0.5rem; text-decoration: none !important; white-space: nowrap; }

.mobile-menu-toggle { display: block; }
.mobile-menu-toggle button { background: none; border: none; color: #d1d5db; cursor: pointer; }
.icon { width: 2rem; height: 2rem; }

.mobile-menu { position: absolute; top: 80px; left: 0; width: 100%; background-color: var(--color-gray); border-bottom: 1px solid var(--color-border); }
.mobile-menu-links { padding: 0.5rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-link { display: block; padding: 0.75rem; color: white; text-decoration: none; font-weight: 500; }
.mobile-link:hover { color: var(--color-orange); }
.mobile-link.highlight { color: var(--color-orange); font-weight: 700; }

@media (max-width: 767px) { .navbar-container { justify-content: flex-start; gap: 1rem; } .phone-link { font-size: 0.875rem; } .logo-icon img { width: 7rem; height: auto; } }
@media (min-width: 768px) { .desktop-menu { display: flex; } .mobile-menu-toggle { display: none; } .mobile-menu { display: none !important; } }

/* --------------------------
   4. Hero Section
--------------------------- */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-dark) 0%, rgba(9,9,11,0.8) 50%, transparent 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1rem; }

.hero-subtitle { color: var(--color-orange); font-family: var(--font-display); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 1rem; font-size: 1rem; }
.hero-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 3rem; line-height: 1; margin-bottom: 1.5rem; }
.gradient-text { background: linear-gradient(to right, var(--color-orange), #eab308); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-description { color: var(--color-concrete); font-size: 1rem; max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.6; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.glow-effect { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }

@media (min-width: 640px) { .hero-title { font-size: 4rem; } .hero-buttons { flex-direction: row; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }

/* --------------------------
   5. Sections (Services, Trust, Pain Points)
--------------------------- */
.pricing-services-section { background-color: var(--color-dark); padding: 5rem 2rem; color: var(--color-white); font-family: var(--font-sans); }
.pricing-services-section .container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; color:var(--color-dark) }
.section-title { font-family: var(--font-display); font-size: 3rem; text-transform: uppercase; margin-bottom: 0.5rem; letter-spacing: 1px; background: linear-gradient(90deg, var(--color-dark), #a1a1aa); }
.section-description { color: var(--color-concrete); font-size: 1.125rem; }
.cards-wrapper { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .cards-wrapper { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.ps-card { background-color: var(--color-gray); border: 1px solid var(--color-border); border-radius: 12px; padding: 2.5rem; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease; }
.ps-card:hover { transform: translateY(-5px); border-color: var(--color-orange); }
.card-header { margin-bottom: 2rem; }
.card-title { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--color-white); }
.card-subtitle { color: var(--color-orange); font-weight: 600; font-size: 1rem; text-transform: uppercase; }
.card-text { color: var(--color-concrete); line-height: 1.6; margin-bottom: 1.5rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; color: var(--color-white); line-height: 1.5; }
.feature-list .check { color: var(--color-orange); font-weight: bold; margin-right: 0.75rem; }
.price-block { margin-bottom: 1.5rem; }
.price-label { display: block; color: var(--color-concrete); font-size: 0.875rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.price-amount { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-white); margin: 0 0 0.5rem 0; }
.price-separator, .price-period { color: var(--color-concrete); font-weight: 400; font-size: 1.25rem; }
.price-detail { color: var(--color-concrete); font-size: 0.95rem; line-height: 1.5; }
.divider { height: 1px; background-color: var(--color-border); margin: 2rem 0; }
.btn-full-width { display: block; width: 100%; text-align: center; background-color: var(--color-orange); color: var(--color-dark); font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; text-decoration: none; padding: 1rem; border-radius: 6px; font-weight: 600; transition: background-color 0.2s ease, transform 0.2s ease; margin-top: auto; }
.btn-full-width:hover { background-color: #e36209; transform: scale(1.02); }

.trust-section { padding: 3rem 0; background: linear-gradient(135deg, #111827, #1f2937, #000); }
.trust-header { text-align: center; margin-bottom: 2rem; }
.trust-header h2 { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; background-color: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border: 1px solid var(--color-border); border-radius: 0.75rem; }
.badge-text { display: flex; flex-direction: column; text-align: left; }
.badge-text strong { font-size: 0.75rem; font-weight: 700; }
.badge-text span { color: #9ca3af; font-size: 0.625rem; text-transform: uppercase; }

.Trust-CTA { display: flex; justify-content: center; width: 100%; margin-bottom: 3rem; margin-top: 2rem; }

.pain-points-section { padding: 80px 20px; background-color: #ffffff; }
.section-desc { color: #27272a; font-size: 1.125rem; }
.showcase-card { display: flex; flex-direction: column; background-color: #f7f9fa; border-radius: 24px; padding: 30px; margin-bottom: 40px; gap: 30px; align-items: center; }
.showcase-media { flex: 1; width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.showcase-video, .showcase-media img { width: 100%; height: auto; display: block; object-fit: cover; }
.showcase-content { flex: 1; width: 100%; display: flex; flex-direction: column; justify-content: center; }
.showcase-content h3 { font-size: 2rem; margin-bottom: 15px; color: #09090b; letter-spacing: -0.02em; }
.showcase-content p { font-size: 1.125rem; line-height: 1.6; color: #27272a; margin-bottom: 25px; }
@media (min-width: 992px) { .showcase-card { flex-direction: row; padding: 60px; gap: 60px; } .showcase-card.reverse { flex-direction: row-reverse; } }

/* --------------------------
   6. Carousel
--------------------------- */
.carousel-container { position: relative; max-width: 1300px; margin: 0 auto; display: flex; align-items: center; background-color: transparent; padding: 60px 20px; }
.showcase-header { text-align: center; max-width: 700px; margin: 0 auto 50px auto; color:#ffffff; }
.showcase-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; color: #ffffff; }
.carousel-track { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 20px 10px 40px 10px; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 calc(100% - 20px); scroll-snap-align: center; background: #fff; border-radius: 20px; padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; gap: 35px; }
@media (min-width: 768px) { .carousel-slide { flex: 0 0 calc(50% - 15px); } }
@media (min-width: 1024px) { .carousel-slide { flex: 0 0 calc(33.333% - 20px); } }
.mockup-wrapper { position: relative; width: 100%; max-width: 450px; margin: 0 auto; }
.desktop-mockup { width: 85%; border-radius: 8px 8px 0 0; border: 8px solid #2a2a2a; border-bottom-width: 14px; background: #2a2a2a; aspect-ratio: 16/10; position: relative; overflow: hidden; }
.desktop-mockup img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mobile-mockup { position: absolute; bottom: -20px; right: 0; width: 30%; border-radius: 16px; border: 6px solid #1a1a1a; background: #1a1a1a; aspect-ratio: 9/19; z-index: 2; overflow: hidden; }
.mobile-mockup img { width: 100%; height: 100%; object-fit: cover; }
.slide-info { text-align: center; width: 100%; color: #333; }
.slide-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.slide-info p { color: #666; font-size: 0.95rem; line-height: 1.5; margin-bottom: 24px; }
.view-btn { display: inline-block; padding: 12px 28px; background-color: var(--color-gray); color: #fff; text-decoration: none; font-weight: 600; border-radius: 50px; transition: all 0.2s ease; }
.view-btn:hover { background-color: var(--color-orange); transform: translateY(-2px); }
.nav-btn { background: #fff; border: 1px solid #eaeaea; border-radius: 50%; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; font-size: 1.5rem; color: #111; transition: all 0.2s ease; }
.prev-btn { left: -27px; } .next-btn { right: -27px; }
@media (max-width: 800px) { .nav-btn { display: none; } .carousel-container { padding: 0; } }

/* --------------------------
   7. Why-us & Results Sections
--------------------------- */
.why-us-section { padding: 6rem 0; background-color: var(--color-dark); position: relative; }
.why-us-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }
.why-us-lead { color: #d1d5db; margin-bottom: 2rem; font-size: 1.125rem; }
.why-us-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-us-item { display: flex; align-items: flex-start; }
.why-us-number { flex-shrink: 0; width: 1.5rem; height: 1.5rem; background-color: var(--color-orange); border-radius: 50%; color: black; font-weight: 700; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; margin-top: 0.25rem; }
.why-us-details { margin-left: 1rem; }
.why-us-details h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-us-details p { color: #9ca3af; font-size: 0.875rem; }
.why-us-image-wrapper { position: relative; }
.image-glow { position: absolute; inset: -1rem; background-color: rgba(249, 115, 22, 0.2); filter: blur(24px); border-radius: 0.5rem; }
.why-us-img { position: relative; width: 100%; border-radius: 0.125rem; border: 2px solid var(--color-border); filter: grayscale(100%); transition: filter 0.5s; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.why-us-img:hover { filter: grayscale(0%); }

.results-section { padding: 6rem 0; background-color: #18181b; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.display-title {color:var(--color-orange);}
.result-card { text-align: center; padding: 2rem; background-color: var(--color-dark); border-top: 4px solid var(--color-orange); }
.result-number { font-family: var(--font-display); font-weight: 700; font-size: 3rem; margin-bottom: 0.5rem; }
.result-label { color: var(--color-orange); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; margin-bottom: 1rem; }
.quote { color: #9ca3af; font-size: 0.875rem; font-style: italic; }
.author { font-weight: 700; font-size: 0.75rem; margin-top: 0.5rem; }

/* --------------------------
   8. Contact & FAQs
--------------------------- */
.contact-section { position: relative; padding: 8rem 0; overflow: hidden; }
.contact-overlay { position: absolute; inset: 0; background-color: rgba(249, 115, 22, 0.1); }
.contact-glow { position: absolute; bottom: -5rem; right: -5rem; width: 24rem; height: 24rem; background-color: rgba(249, 115, 22, 0.2); border-radius: 50%; filter: blur(64px); }
.contact-container { position: relative; max-width: 56rem; text-align: center; margin: 0 auto; }
.contact-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .contact-title { font-size: 3.75rem; } }
.contact-sub { font-size: 1.125rem; color: #d1d5db; margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.contact-form { max-width: 28rem; margin: 0 auto; background-color: var(--color-dark); padding: 1.5rem; border: 1px solid var(--color-border); border-radius: 0.125rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.form-inputs { display: flex; flex-direction: column; gap: 1rem; }
.form-input { width: 100%; background-color: var(--color-gray); border: 1px solid #3f3f46; color: white; padding: 0.75rem; font-family: inherit; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--color-orange); }
.form-note { font-size: 0.75rem; color: #6b7280; text-align: center; margin-top: 0.5rem; }

.faq-section { padding: 4rem 1.5rem; background-color: #18181b; color: #f4f4f5; font-family: system-ui, -apple-system, sans-serif; }
.faq-container { max-width: 56rem; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header h2 { font-size: 1.875rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.faq-header p { color: #a1a1aa; font-size: 1.125rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid #3f3f46; border-radius: 0.5rem; overflow: hidden; background-color: #27272a; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; background-color: transparent; border: none; color: inherit; font-size: 1.125rem; font-weight: 600; text-align: left; cursor: pointer; transition: background-color 0.2s ease; }
.faq-question:hover { background-color: #3f3f46; }
.faq-icon { width: 1.5rem; height: 1.5rem; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-answer-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-in-out; }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 1.25rem; background-color: rgba(39, 39, 42, 0.5); color: #d4d4d8; line-height: 1.625; border-top: 1px solid #3f3f46; margin: 0; }
.faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* --------------------------
   9. Footer & Animations
--------------------------- */
.footer { background-color: black; padding: 3rem 0; border-top: 1px solid var(--color-border); }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.copyright { color: #6b7280; font-size: 0.875rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-links { list-style: none; padding: 0; display: flex; gap: 1.5rem; }
.footer-links a, .social-link { color: #6b7280; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover, .social-link:hover { color: var(--color-orange); }
.footer-socials { display: flex; gap: 1.5rem; }
@media (min-width: 768px) { .footer-content { flex-direction: row; justify-content: space-between; } .copyright { flex-direction: row; } }

.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slow-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.animate-hero { animation: slow-zoom 20s ease-in-out infinite alternate; }
.delay-100 { animation-delay: 0.1s; } .delay-200 { animation-delay: 0.2s; } .delay-300 { animation-delay: 0.3s; }


