/*
* Digital Marketing Agency Website Stylesheet
*
* Table of Contents:
*
* 1. ROOT & BASE STYLES
* 2. UTILITY & REUSABLE CLASSES
* 3. KEYFRAME ANIMATIONS
* 4. PRELOADER & CURSOR
* 5. HEADER & NAVIGATION
* 6. FOOTER
* 7. HERO SECTION
* 8. CLIENTS SECTION
* 9. SERVICES SECTION
* 10. PROCESS SECTION
* 11. ROI CALCULATOR SECTION
* 12. PRICING SECTION
* 13. TESTIMONIALS SECTION
* 14. FAQ SECTION
* 15. CTA SECTION
* 16. PAGE-SPECIFIC STYLES (CONTACT, LEGAL)
* 17. RESPONSIVENESS (MEDIA QUERIES)
*/


/* --- 1. ROOT & BASE STYLES --- */
:root {
    --primary-color: #00A9FF;
    --secondary-color: #89CFF3;
    --accent-color: #A0E9FF;
    --light-color: #CDF5FD;

    --bg-dark-1: #0A192F;
    --bg-dark-2: #172a46;
    --bg-dark-3: #1d3557;

    --text-light: #e6f1ff;
    --text-medium: #a8b2d1;
    --text-dark: #8892b0;

    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-1);
    color: var(--text-medium);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    cursor: none;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}


/* --- 2. UTILITY & REUSABLE CLASSES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dark);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    cursor: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark-1);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark-1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* --- Animation on scroll/load setup --- */
[data-animation] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animation].is-visible {
    opacity: 1;
    transform: none;
}

[data-animation="fade-in"] {
    transform: translateY(20px);
}

[data-animation="fade-in-up"] {
    transform: translateY(50px);
}

[data-animation="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animation="slide-in-right"] {
    transform: translateX(50px);
}


/* --- 3. KEYFRAME ANIMATIONS --- */
@keyframes preloader-bar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fade-out {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes hero-bg-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 169, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 169, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 169, 255, 0);
    }
}


/* --- 4. PRELOADER & CURSOR --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark-1);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preloader.fade-out {
    animation: fade-out 0.5s forwards;
    animation-delay: 0.5s;
}

.preloader-logo {
    margin-bottom: 20px;
}

.preloader-logo img {
    max-width: 150px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background-color: var(--bg-dark-3);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-color);
    animation: preloader-bar 1.5s ease-in-out forwards;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    transition: transform 0.1s linear;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: transform 0.2s ease-out, width 0.3s, height 0.3s;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

/* --- 5. HEADER & NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 80px;
    transition: transform var(--transition-speed) ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: none;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: all var(--transition-speed) ease-in-out;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* --- 6. FOOTER --- */
.footer {
    background-color: var(--bg-dark-2);
    padding: 80px 0 0;
    color: var(--text-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column .logo {
    margin-bottom: 20px;
}

.footer-column .logo img {
    max-height: 80px;
}

.footer-about-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-dark);
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-dark);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark-1);
    border: 1px solid var(--bg-dark-3);
    border-radius: var(--border-radius);
    color: var(--text-light);
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: var(--bg-dark-1);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    cursor: none;
    transition: background-color var(--transition-speed) ease;
}

.newsletter-form button:hover {
    background: var(--accent-color);
}


.footer-bottom {
    border-top: 1px solid var(--bg-dark-3);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: var(--text-dark);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.footer-bottom-legal {
    border-top: 1px solid var(--bg-dark-3);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom-legal p {
    margin: 0;
}

.footer-bottom-legal a {
    color: var(--text-dark);
    margin: 0 10px;
}

.footer-bottom-legal a:hover {
    color: var(--primary-color);
}

/* --- 7. HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 1)),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=2574&auto=format&fit=crop') no-repeat center center/cover;
    animation: hero-bg-zoom 20s infinite alternate;
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
    border-radius: 50%;
}

.scroll-down-indicator a {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* --- 8. CLIENTS SECTION --- */
.clients-section {
    background-color: var(--bg-dark-1);
}

.clients-title {
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.clients-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo img {
    max-height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-speed) ease;
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* --- 9. SERVICES SECTION --- */
.services-section {
    background-color: var(--bg-dark-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark-1);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-dark-3);
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-link {
    font-weight: 600;
}

.service-link i {
    margin-left: 5px;
    transition: transform var(--transition-speed) ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- 10. PROCESS SECTION --- */
.process-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: var(--bg-dark-3);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-color: var(--bg-dark-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-color);
    border: 2px solid var(--bg-dark-3);
    transition: all var(--transition-speed) ease;
}

.process-step:hover .process-icon {
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.process-content {
    background: var(--bg-dark-2);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    width: 100%;
}

.process-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 20px;
}

.process-title {
    margin-bottom: 10px;
}

.process-description {
    margin: 0;
    color: var(--text-dark);
}

/* --- 11. ROI CALCULATOR SECTION --- */
.roi-section {
    background-color: var(--bg-dark-2);
}

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.roi-content label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-medium);
}

.roi-calculator input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--bg-dark-3);
    outline: none;
    border-radius: 5px;
}

.roi-calculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--bg-dark-2);
}

.roi-calculator input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--bg-dark-2);
}

.range-value-display {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

#adSpendValue {
    font-weight: 700;
    color: var(--text-light);
}

.roi-calculator .form-group {
    margin-bottom: 30px;
}

.roi-calculator select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark-1);
    border: 1px solid var(--bg-dark-3);
    color: var(--text-light);
    border-radius: var(--border-radius);
    outline: none;
}

.roi-results-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roi-results {
    background-color: var(--bg-dark-1);
    padding: 40px;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 169, 255, 0.2);
}

.roi-results p {
    margin: 0;
    color: var(--text-medium);
}

.roi-results h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.roi-disclaimer {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- 12. PRICING SECTION --- */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-light);
}

.discount-badge {
    background-color: var(--primary-color);
    color: var(--bg-dark-1);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-dark-3);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--bg-dark-3);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -45px;
    background-color: var(--primary-color);
    color: var(--bg-dark-1);
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: var(--text-dark);
    margin: 0;
}

.pricing-price {
    margin: 30px 0;
}

.pricing-price .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.pricing-price .period {
    color: var(--text-dark);
}

.features-list {
    text-align: left;
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--primary-color);
}

.features-list .fa-times-circle {
    color: var(--text-dark);
}

/* --- 13. TESTIMONIALS SECTION --- */
.testimonials-section {
    background: var(--bg-dark-2);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    height: 350px;
    /* Adjust as needed */
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-image {
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-content .fa-quote-left {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 650px;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-bottom: 5px;
}

.testimonial-company {
    color: var(--text-dark);
    margin: 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    background: var(--bg-dark-3);
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: none;
    transition: all var(--transition-speed) ease;
    pointer-events: all;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark-1);
}

.prev-btn {
    transform: translateX(-80px);
}

.next-btn {
    transform: translateX(80px);
}


/* --- 14. FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--bg-dark-3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform var(--transition-speed) ease;
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-medium);
    margin: 0;
}

/* --- 15. CTA SECTION --- */
.cta-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
}

.cta-wrapper {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-title,
.cta-text {
    color: var(--bg-dark-1);
}

.cta-title {
    font-size: 2.2rem;
}

.cta-text {
    margin: 0;
}

.cta-action .btn-primary {
    background-color: var(--bg-dark-1);
    color: var(--primary-color);
    border-color: var(--bg-dark-1);
}

.cta-action .btn-primary:hover {
    background-color: transparent;
    color: var(--bg-dark-1);
}

/* --- 16. PAGE-SPECIFIC STYLES (CONTACT, LEGAL) --- */
.page-header-section {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-dark-2);
}

.page-header-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dark);
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-block h2 {
    margin-bottom: 1rem;
}

.contact-details-list {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding-top: 5px;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--text-dark);
    margin: 0;
}

.contact-detail-item a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--bg-dark-2);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-medium);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark-1);
    border: 1px solid var(--bg-dark-3);
    border-radius: var(--border-radius);
    color: var(--text-light);
    outline: none;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-dark-2);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    max-width: 450px;
    transform: scale(0.9);
    transition: all 0.3s;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-dark);
}

.popup-close:hover {
    color: var(--text-light);
}

.popup-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 15px;
}

.popup-content .btn {
    margin-top: 20px;
}

.legal-page .page-content {
    background: var(--bg-dark-2);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

/* --- 17. RESPONSIVENESS (MEDIA QUERIES) --- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark-2);
        transition: right var(--transition-speed) ease;
        padding-top: 100px;
    }

    .nav.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .roi-wrapper {
        grid-template-columns: 1fr;
    }

    .roi-results {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }

    .roi-results h3 {
        font-size: 2.5rem;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .process-line {
        left: 15px;
    }

    .process-step {
        padding-left: 50px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        left: -15px;
    }

    .process-content {
        padding: 20px;
    }

    .slider-controls {
        display: none;
    }

    .testimonial-slider {
        height: auto;
    }

    .testimonial-slide {
        position: static;
        opacity: 1;
        margin-bottom: 40px;
    }

    .testimonial-slide:last-child {
        margin-bottom: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-legal {
        font-size: 0.8rem;
    }

    .footer-bottom-legal a {
        display: block;
        margin: 10px 0;
    }
}