/*
================================================
TABLE OF CONTENTS
================================================
1.  ROOT & VARIABLES
2.  GENERAL STYLES & RESETS
3.  PRELOADER & CURSOR
4.  HEADER & NAVIGATION
5.  MOBILE NAVIGATION
6.  HERO SECTION
7.  SERVICES SECTION
8.  ABOUT / STATS SECTION
9.  PROCESS SECTION
10. FUNKY VIBE CHECK SECTION
11. PRICING SECTION
12. TESTIMONIALS SECTION
13. FAQ SECTION
14. CTA SECTION
15. FOOTER
16. BUTTONS & FORMS
17. PAGE-SPECIFIC STYLES
    17.1 Page Header
    17.2 Legal Content Page
    17.3 Contact Page
18. ANIMATIONS & UTILITIES
19. RESPONSIVE DESIGN (MEDIA QUERIES)
================================================
*/


/* 1. ROOT & VARIABLES */
:root {
    --bg-dark: #0a0a14;
    --bg-medium: #1a1a2e;
    --primary-blue: #4a69ff;
    --accent-cyan: #00f0ff;
    --text-light: #e0e0e0;
    --text-medium: #a0a0c0;
    --text-white: #ffffff;
    --border-color: rgba(74, 105, 255, 0.2);
    --shadow-color: rgba(74, 105, 255, 0.2);
    --glow-color: rgba(0, 240, 255, 0.7);
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --header-height: 80px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 2. GENERAL STYLES & RESETS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 5.5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: none;
}

a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px var(--glow-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-title .subtitle {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    margin-bottom: 2rem;
}

.section-title.text-center h2 {
    margin-bottom: 4rem;
}

/* 3. PRELOADER & CURSOR */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    transform-origin: left;
    animation: preload-anim 1.5s ease-out forwards;
}

.preloader p {
    color: var(--text-medium);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 1rem;
    text-transform: uppercase;
}

.cursor,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.15s ease-out, opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
}

body:hover .cursor,
body:hover .cursor-dot {
    opacity: 1;
}

.cursor.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(74, 105, 255, 0.1);
    border-color: var(--accent-cyan);
}

/* 4. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 15px 2rem;
}

.header.scrolled {
    background-color: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link .logo {
    height: 80px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-link:hover .logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: none;
}

.mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle .bar:nth-child(1) {
    top: 0;
}

.mobile-toggle .bar:nth-child(2) {
    top: 9px;
}

.mobile-toggle .bar:nth-child(3) {
    top: 18px;
}

.mobile-toggle.active .bar:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* 5. MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin: 2rem 0;
}

.mobile-nav li a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.mobile-nav .btn-primary {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* 6. HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
    perspective: 1000px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(26, 26, 46, 0.5) 0%, var(--bg-dark) 70%);
    z-index: -2;
}

.hero-3d-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-3d-shapes .shape {
    position: absolute;
    background-color: var(--primary-blue);
    opacity: 0.1;
    border-radius: 20%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 15%;
    animation-duration: 25s;
}

.shape-2 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 80%;
    animation-duration: 18s;
    animation-delay: 2s;
    background-color: var(--accent-cyan);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 10%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 85%;
    animation-duration: 28s;
    animation-delay: 1s;
    background-color: var(--accent-cyan);
}

.shape-5 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 45%;
    animation-duration: 35s;
    animation-delay: 3s;
    opacity: 0.05;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title .highlight {
    color: var(--primary-blue);
    text-shadow: 0 0 15px var(--shadow-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-light);
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-medium);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--text-medium);
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

/* 7. SERVICES SECTION */
.services-section {
    background-color: var(--bg-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-dark);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-blue);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent 40%);
    transition: var(--transition-slow);
    transform: scale(0);
}

.service-card:hover::before {
    transform: scale(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    color: var(--accent-cyan);
    transform: scale(1.1) rotate(-10deg);
}

.service-title {
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 2rem;
}

.service-link {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 8. ABOUT / STATS SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-3deg);
    transition: var(--transition-slow);
}

.about-image img {
    border: 1px solid var(--border-color);
}

.about-image-wrapper:hover .about-image {
    transform: rotate(0);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    z-index: -1;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover::after {
    top: 0;
    left: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    background: var(--bg-medium);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    border-bottom: 3px solid var(--primary-blue);
}

.stat-number {
    font-size: 3rem;
    color: var(--accent-cyan);
}

.stat-label {
    color: var(--text-light);
    margin: 0;
}

/* 9. PROCESS SECTION */
.process-section {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-medium), var(--bg-dark));
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    z-index: 1;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.process-step:nth-child(odd) {
    text-align: right;
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
    left: auto;
}

.process-step:hover .process-icon {
    background-color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
}

.process-content {
    padding: 20px 30px;
    background: var(--bg-medium);
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.process-step:nth-child(even) .step-number {
    left: 20px;
    right: auto;
}

/* 10. FUNKY VIBE CHECK SECTION */
.vibe-check-section {
    background-color: var(--bg-dark);
    text-align: center;
}

.vibe-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.vibe-check-container {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-medium);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.vibe-output {
    margin-bottom: 2rem;
}

.vibe-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    transition: color 0.2s, transform 0.2s;
}

.vibe-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    min-height: 40px;
}

.vibe-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    background: var(--bg-dark);
    border-radius: 5px;
    outline: none;
    transition: background 0.2s;
}

.vibe-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--accent-cyan);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 10px var(--glow-color);
}

.vibe-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--accent-cyan);
    cursor: pointer;
    border-radius: 50%;
}

.vibe-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--text-medium);
}

/* 11. PRICING SECTION */
.pricing-section {
    background-color: var(--bg-medium);
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.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);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-blue);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-blue);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
}

.pricing-card.recommended {
    transform: scale(1.05);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 30px var(--shadow-color);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-header i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 2rem;
}

.price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--text-white);
}

.price-period {
    color: var(--text-medium);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.features-list li i.fa-check {
    color: var(--accent-cyan);
}

.features-list li i.fa-times {
    color: #ff4d4d;
}

/* 12. TESTIMONIALS SECTION */
.testimonials-section {
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    background: var(--bg-medium);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonial-text::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.author-info {
    text-align: left;
}

.author-name {
    margin: 0;
    font-size: 1.2rem;
}

.author-title {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    transform: translateY(-50%);
}

.slider-controls button {
    background: var(--bg-medium);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.slider-controls button:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* 13. FAQ SECTION */
.faq-section {
    background: var(--bg-medium);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: none;
}

.faq-question h3 {
    font-size: 1.3rem;
    margin: 0;
}

.faq-question i {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
}

/* 14. CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.9)), url('https://www.transparenttextures.com/patterns/az-subtle.png');
    background-attachment: fixed;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
}

/* 15. FOOTER */
.footer {
    background-color: var(--bg-medium);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    box-shadow: 0 0 20px var(--glow-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-about-text {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.footer-col-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-medium);
}

.footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.contact-info-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.contact-info-list a {
    color: var(--text-medium);
}

.contact-info-list a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-medium);
}

/* 16. BUTTONS & FORMS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue), #6a82ff);
    color: var(--text-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6a82ff, var(--accent-cyan));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px var(--primary-blue);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: rotate(-45deg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-white);
}

/* 17. PAGE-SPECIFIC STYLES */
/* 17.1 Page Header */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 20, 0.9), rgba(10, 10, 20, 0.9)), url('https://www.transparenttextures.com/patterns/cubes.png') var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.page-header h1 {
    text-shadow: 0 0 20px var(--glow-color);
    font-size: 4.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: var(--text-light);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs i {
    font-size: 0.8rem;
    color: var(--primary-blue);
}

/* 17.2 Legal Content Page */
.legal-content {
    padding: 60px 0;
}

.legal-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-medium);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
    color: var(--primary-blue);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-medium);
}

.legal-content ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    position: absolute;
    left: -1.5rem;
}

/* 17.3 Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background-color: var(--bg-medium);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-info-list-page {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-list-page li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
    transition: var(--transition-fast);
}

.contact-info-list-page li:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-cyan);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-info-list-page i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.contact-info-list-page span {
    display: block;
    color: var(--text-medium);
}

.contact-info-list-page a,
.contact-info-list-page span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(26, 26, 46, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-medium);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px var(--shadow-color);
}

.contact-form .form-icon {
    position: absolute;
    right: 1rem;
    top: calc(50% + 10px);
    transform: translateY(-50%);
    color: var(--text-medium);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234a69ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Popup */
.popup,
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.popup-overlay {
    background-color: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(5px);
}

.popup {
    display: grid;
    place-items: center;
}

.popup-content {
    background: var(--bg-medium);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: scale(0.7);
    transition: transform var(--transition-slow);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup.show {
    opacity: 1;
    z-index: 10002;
    visibility: visible;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    animation: popup-icon-anim 0.5s ease-out 0.5s both;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-medium);
}

.popup-close:hover {
    color: var(--text-white);
}

/* 18. ANIMATIONS & UTILITIES */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes preload-anim {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes scroll-anim {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }

    100% {
        transform: translateY(10px) translateX(-50%);
        opacity: 0;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popup-icon-anim {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.animate-in {
    opacity: 0;
}

.animate-in.in-view {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-in[data-animation="fade-in-up"].in-view {
    animation-name: fade-in-up;
}

.animate-in[data-animation="fade-in-right"].in-view {
    animation-name: fade-in-right;
}

.animate-in[data-animation="fade-in-left"].in-view {
    animation-name: fade-in-left;
}

/* 19. RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-wrapper {
        margin: 0 auto 3rem;
        max-width: 400px;
    }

    .about-content {
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .slider-controls {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info-list li {
        justify-content: center;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .process-step:nth-child(odd) {
        text-align: left;
    }

    .process-icon,
    .process-step:nth-child(odd) .process-icon {
        left: 0;
    }

    .legal-content .content-wrapper,
    .contact-grid {
        padding: 1.5rem;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .header {
        padding: 0 1rem;
    }

    .logo-link .logo {
        height: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}