/* START OF FILE styles.css */
/* 
========================================
   PERFORMANCE MARKETING CSS FRAMEWORK
========================================
*/

:root {
    /* Color Palette */
    --primary: #8a2be2;
    /* Neon Purple */
    --primary-glow: rgba(138, 43, 226, 0.4);
    --secondary: #00d2ff;
    /* Electric Blue */
    --accent: #ff00c1;
    /* Hot Pink */
    --bg-dark: #05070a;
    /* Deep Space */
    --bg-card: #0d1117;
    /* Card Background */
    --bg-card-hover: #161b22;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(13, 17, 23, 0.8);

    /* Fonts */
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing & Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --section-padding: 100px;
    --container-width: 1200px;
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* For custom cursor */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6a11cb);
    color: #fff;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: #fff;
}

.btn-outline:hover {
    background: var(--primary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
}

/* --- PRELOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: var(--font-heading);
    letter-spacing: 3px;
    color: var(--primary);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* --- HEADER & NAV --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.active-link {
    color: var(--text-white);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::before,
.active-link::before {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: var(--bg-card);
    width: 250px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu li {
    margin-bottom: 10px;
}

.dropdown-menu a {
    color: var(--text-gray);
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.header-phone i {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(138, 43, 226, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    right: -5%;
    animation: float 10s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 10%;
    left: -5%;
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 100px);
    }
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-plus {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 1px;
    background: var(--border-color);
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
}

.card-inner {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 14px;
    height: 100%;
    z-index: 2;
    position: relative;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-white);
}

.service-list li i {
    color: var(--primary);
    font-size: 0.7rem;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--primary-glow) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: 15px;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* --- REPORT SECTION --- */
.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.r-feat {
    display: flex;
    gap: 20px;
}

.r-icon {
    min-width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.r-feat h4 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.r-feat p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.report-visual {
    perspective: 1000px;
}

.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(10deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.report-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.report-header {
    background: #1c2128;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30363d;
}

.report-body {
    padding: 40px;
}

.chart-box {
    height: 200px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
}

.bar-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.bar {
    width: 50px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: 1.5s ease-out;
}

.bar.active {
    background: var(--primary);
}

.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-gray);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-item {
    background: #1c2128;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.m-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.m-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- ROI CALCULATOR --- */
.calc-wrapper {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-gray);
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: #1c2128;
    border-radius: 5px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.range-val {
    text-align: right;
    margin-top: 10px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: #1c2128;
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 8px;
}

.calc-result {
    background: #1c2128;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.res-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.res-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #555;
}

/* --- PROCESS SECTION --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-item {
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-content {
    margin-top: -30px;
}

.step-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--primary);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testi-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: rgba(138, 43, 226, 0.1);
}

.testi-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1c2128;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.client-info h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* --- FAQ SECTION --- */
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #1c2128;
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: var(--accent);
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #1c2128 0%, #05070a 100%);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.cta-box h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-card);
    padding-top: 100px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-desc {
    margin: 25px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1c2128;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

.newsletter {
    margin-top: 40px;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: #1c2128;
    padding: 5px;
    border-radius: 5px;
}

.newsletter-form input {
    background: transparent;
    padding: 10px;
    color: #fff;
    width: 100%;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
    width: 50px;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* --- FLOATING ELEMENTS --- */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
}

/* --- ANIMATIONS --- */
.animate-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-up {
    animation: fadeInUp 0.8s forwards;
}

.animate-up-delay {
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}

.animate-up-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-fade-in-slow {
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-container {
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    :root {
        --section-padding: 80px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-card);
        z-index: 1001;
        padding: 100px 40px;
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .calc-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* LEGAL PAGES SPECIFIC STYLES */
.legal-page-header {
    padding: 180px 0 80px;
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.1), transparent);
    text-align: center;
}

.legal-content {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 100px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    margin: 40px 0 20px;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    list-style: disc;
    padding-left: 20px;
    color: var(--text-gray);
}

/* CONTACT PAGE SPECIFIC */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-form-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.c-item {
    display: flex;
    gap: 25px;
}

.c-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.c-detail h4 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.c-detail p,
.c-detail a {
    color: var(--text-gray);
}