/*
==============================================
THE ROI RANGERS - STYLESHEET
==============================================
Colors:
- Plasma Green: #76FF03
- Violet: #9C27B0
- Charcoal: #111111
- Off-White: #f4f4f4
- Gray: #333333
- Light Gray: #999999

Fonts:
- Headings: 'Orbitron', sans-serif
- Body: 'Roboto Mono', monospace
==============================================
*/

/* --- 1. Global Styles & Variables --- */
:root {
    --plasma-green: #76FF03;
    --violet: #9C27B0;
    --charcoal: #111111;
    --dark-gray: #1a1a1a;
    --mid-gray: #333;
    --light-gray: #999;
    --off-white: #f4f4f4;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto Mono', monospace;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--charcoal);
    color: var(--off-white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--off-white);
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

a {
    color: var(--plasma-green);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--off-white);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* --- 2. Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--charcoal);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    text-align: center;
}

.loader-logo img {
    width: 100px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-text {
    margin-top: 1rem;
    font-family: var(--font-heading);
    color: var(--plasma-green);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background-color: var(--mid-gray);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-image: linear-gradient(90deg, var(--plasma-green), var(--violet));
    animation: loading-bar 2s ease-out forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes loading-bar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* --- 3. Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-speed) ease;
}

.nav-logo:hover img {
    transform: rotate(360deg);
}

.nav-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--off-white);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--off-white);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-image: linear-gradient(90deg, var(--plasma-green), var(--violet));
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--off-white);
    transition: all 0.3s ease-in-out;
}

/* --- 4. Buttons --- */
.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-image: linear-gradient(90deg, var(--plasma-green), var(--violet));
    color: var(--charcoal);
    border: none;
    box-shadow: 0 0 20px rgba(118, 255, 3, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary i {
    position: relative;
    z-index: 2;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, var(--violet), var(--plasma-green));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    z-index: 1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--plasma-green);
    color: var(--plasma-green);
}

.btn-secondary:hover {
    background-color: var(--plasma-green);
    color: var(--charcoal);
    box-shadow: 0 0 20px rgba(118, 255, 3, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* --- 5. Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'), linear-gradient(rgba(17, 17, 17, 0.8), var(--charcoal));
    background-size: auto, cover;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vh;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.1) 0%, rgba(17, 17, 17, 0) 60%);
    transform: translate(-50%, -50%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(118, 255, 3, 0.5);
}

.highlight-violet {
    color: var(--violet);
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.7);
}

.highlight-green {
    color: var(--plasma-green);
    text-shadow: 0 0 15px rgba(118, 255, 3, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--plasma-green);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--plasma-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* --- 6. Section Headers --- */
.section-header {
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-family: var(--font-body);
    color: var(--plasma-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* --- 7. Services Section (Power Cores) --- */
.services-section {
    background-color: var(--dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--charcoal);
    border: 1px solid var(--mid-gray);
    border-radius: var(--border-radius);
    padding: 1px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.service-card-inner {
    background-color: var(--charcoal);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    /* 3D tilt effect handled by JS */
}

.service-orb-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-orb {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-orb {
    transform: scale(1.1);
    filter: blur(10px);
}

.seo-orb {
    background: var(--plasma-green);
    box-shadow: 0 0 30px var(--plasma-green);
}

.ppc-orb {
    background: var(--violet);
    box-shadow: 0 0 30px var(--violet);
}

.smm-orb {
    background: linear-gradient(45deg, var(--plasma-green), var(--violet));
    box-shadow: 0 0 30px var(--plasma-green), 0 0 30px var(--violet);
}

.content-orb {
    background: var(--off-white);
    box-shadow: 0 0 30px var(--off-white);
}

.service-icon {
    font-size: 3rem;
    color: var(--charcoal);
    position: relative;
    z-index: 2;
}

.content-orb+.service-icon {
    color: var(--charcoal);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 700;
}

.service-link i {
    transition: transform var(--transition-speed) ease;
    display: inline-block;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- 8. About Section --- */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-container {
    flex: 1;
    perspective: 1500px;
}

.about-image-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.about-image-3d img {
    border-radius: var(--border-radius);
    border: 2px solid var(--violet);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
}

.about-image-container:hover .about-image-3d {
    transform: rotateY(15deg) rotateX(5deg);
}

.about-content {
    flex: 1.2;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-stats li {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--plasma-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* --- 9. Process Section (Battle Plan) --- */
.process-section {
    background-color: var(--dark-gray);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--violet), var(--plasma-green));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    padding: 10px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 25px;
    height: 25px;
    background-color: var(--charcoal);
    border: 4px solid var(--plasma-green);
    border-radius: 50%;
    z-index: 1;
    transition: border-color var(--transition-speed) ease;
}

.timeline-item:nth-child(odd)::after {
    right: -14px;
}

.timeline-item:nth-child(even)::after {
    left: -14px;
}

.timeline-item:hover::after {
    border-color: var(--violet);
}

.timeline-icon {
    position: absolute;
    top: 17px;
    font-size: 1.2rem;
    color: var(--plasma-green);
    z-index: 2;
    transition: color var(--transition-speed) ease;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -10px;
}

.timeline-item:hover .timeline-icon {
    color: var(--violet);
}

.timeline-content {
    background: var(--charcoal);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--mid-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.timeline-content h3 {
    color: var(--plasma-green);
    margin-bottom: 10px;
}

/* --- 10. Comic Section --- */
.comic-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.comic-panel {
    background: var(--dark-gray);
    border: 2px solid var(--mid-gray);
    padding: 10px;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.comic-panel:hover {
    transform: scale(1.05);
    border-color: var(--plasma-green);
}

.comic-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.comic-caption {
    padding: 15px;
}

.comic-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--plasma-green);
}

/* --- 11. Testimonials Section --- */
.testimonials-section {
    background-color: var(--dark-gray);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--charcoal);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--mid-gray);
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--violet);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--off-white);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--plasma-green);
}

.author-info h4 {
    font-size: 1.1rem;
    margin: 0;
}

.author-info span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid var(--mid-gray);
    color: var(--off-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.slider-controls button:hover {
    background: var(--plasma-green);
    color: var(--charcoal);
}

.prev-btn {
    margin-left: -25px;
}

.next-btn {
    margin-right: -25px;
}

/* --- 12. CTA Section --- */
.cta-section {
    background-image: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)), url('https://via.placeholder.com/1920x500/111111/FFFFFF.png?text=');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--off-white);
}

/* --- 13. Footer --- */
.footer {
    background-color: var(--dark-gray);
    padding: 80px 0 30px;
    border-top: 2px solid var(--mid-gray);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--off-white);
}

.footer-about p {
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--light-gray);
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: var(--plasma-green);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--plasma-green);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover {
    color: var(--off-white);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.footer-contact ul li i {
    color: var(--plasma-green);
}

.footer-contact ul li a {
    color: var(--light-gray);
}

.footer-bottom {
    border-top: 1px solid var(--mid-gray);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--light-gray);
    margin: 0 10px;
}

.footer-legal span {
    color: var(--mid-gray);
}

/* --- 14. Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--plasma-green);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--violet);
    color: var(--off-white);
    transform: translateY(-5px);
}

/* --- 15. Contact Page Styles --- */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(17, 17, 17, 0.7), var(--charcoal)), url('https://via.placeholder.com/1920x400/111111/FFFFFF.png?text=');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--plasma-green);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--off-white);
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--dark-gray);
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--plasma-green);
    margin-top: 5px;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--plasma-green);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--mid-gray);
    border-radius: var(--border-radius);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plasma-green);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--light-gray);
    pointer-events: none;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background-color: var(--dark-gray);
    padding: 0 5px;
    color: var(--plasma-green);
}

/* --- 16. Popup Styles --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    border: 1px solid var(--mid-gray);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--light-gray);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--plasma-green);
    margin-bottom: 20px;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 30px;
}

/* --- 17. Legal Pages Styles --- */
.legal-content .content-wrapper {
    background: var(--dark-gray);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--plasma-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content p,
.legal-content li {
    color: var(--light-gray);
}

.legal-content strong {
    color: var(--off-white);
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

/* --- 18. Scroll Animations --- */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 19. Responsiveness --- */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--charcoal);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        gap: 2rem;
        padding-top: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-wrapper {
        flex-direction: column;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .comic-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .process-timeline::before {
        left: 12px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 0 !important;
    }

    .timeline-item .timeline-icon {
        left: 4px !important;
    }

    .slider-controls {
        display: none;
        /* simpler navigation on mobile */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .comic-strip {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}