:root {
    --bg-dark: #0a0a0f;
    --text-light: #e0e0e0;
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-blue: #007bff; /* Changed to a slightly lighter blue for contrast against dark */
    --accent-glow: rgba(0, 255, 255, 0.4);
    --border-dark: #1e1e2d;
    --card-bg: #151520;
    --gradient-hero: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-magenta) 100%);
    --gradient-pattern: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M9.843 0L6 3.843 2.157 0H0v2.157L3.843 6 0 9.843V12h2.157L6 8.157 9.843 12H12v-2.157L8.157 6 12 2.157V0z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--text-light);
    text-shadow: 0 0 8px var(--neon-cyan);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif; /* Using Orbitron for headings */
    font-weight: 700;
    color: var(--text-light);
}

.section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-hero);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.section-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--neon-cyan);
    opacity: 1;.8;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
}

.pattern-bg {
    background-image: var(--gradient-pattern);
    background-repeat: repeat;
    background-size: 6px 6px;
    position: relative;
}
.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6); /* Darker overlay to make text pop */
    z-index: 1;
}
.pattern-bg > .container {
    position: relative;
    z-index: 2;
}


/* Header */
.main-header {
    background-color: var(--bg-dark);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    letter-spacing: 2px;
}

.main-nav a {
    margin-left: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--neon-magenta);
    box-shadow: 0 0 8px var(--neon-magenta);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh; /* Compact height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000; /* Fallback */
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0f2a 100%);
    border-bottom: 3px solid var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h16v2h-2V0H0zm0 14h16v2H0v-2zM14 2v12h2V2h-2zM0 2v12h2V2H0z'/%3E%3Cpath d='M2 6h12v2H2V6zM6 2h4v12H6V2z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 16px 16px;
    opacity: 1;.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-pre-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2em;
    color: var(--neon-magenta);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 8px var(--neon-magenta);
}

.hero-title {
    font-size: 4em;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 25px var(--neon-blue);
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

/* About Section - STATS FOCUS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.about-text h3::after {
    left: 0;
    transform: translateX(0);
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
    opacity: 1;.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-dark);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    opacity: 1;.05;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--neon-cyan);
}
.stat-card:hover::before {
    opacity: 1;.1;
}

.stat-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta);
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.stat-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1em;
    color: var(--text-light);
    opacity: 1;.7;
    position: relative;
    z-index: 1;
}

/* Team Section - INTERACTIVE PROFILES */
.team-section {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-member-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--neon-magenta);
    opacity: 1;.05;
    filter: blur(20px);
    transform: scale(0);
    transition: transform 0.4s ease-out;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px var(--neon-cyan);
}
.team-member-card:hover::before {
    transform: scale(1);
    opacity: 1;.15;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
    margin-bottom: 20px;
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6em;
    color: var(--text-light);
    margin-bottom: 5px;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.member-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95em;
    color: var(--neon-magenta);
    opacity: 1;.8;
}

/* Team Profile Overlay (custom modal interpretation) */
.team-profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.team-profile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.profile-content-wrapper {
    background-color: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 40px var(--neon-blue);
    text-align: center;
    transform: translateY(20px);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-profile-overlay.active .profile-content-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.close-profile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5em;
    color: var(--neon-magenta);
    cursor: pointer;
    line-height: 1;
    transition: text-shadow 0.3s ease;
}

.close-profile:hover {
    text-shadow: 0 0 15px var(--neon-magenta);
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--neon-magenta);
    box-shadow: 0 0 20px var(--neon-magenta);
    margin-bottom: 25px;
}

.profile-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--neon-cyan);
}

.profile-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1em;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    opacity: 1;.9;
}

.profile-bio {
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
    opacity: 1;.85;
}

/* Testimonials Section - QUOTE FOCUS */
.testimonials-section {
    text-align: center;
    padding: 100px 0;
}

.testimonials-section .section-title {
    margin-bottom: 80px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '❝';
    font-family: sans-serif;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8em;
    color: var(--neon-blue);
    opacity: 1;.1;
    line-height: 1;
    z-index: 0;
}

.quote-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8em;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.quote-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1em;
    color: var(--neon-magenta);
    opacity: 1;.8;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

/* Pricing Section - SINGLE PLAN */
.pricing-section {
    text-align: center;
}

.pricing-plan {
    background-color: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    max-width: 700px;
    margin: 60px auto 0 auto;
    padding: 50px;
    box-shadow: 0 0 50px var(--neon-blue);
    position: relative;
    overflow: hidden;
}

.pricing-plan::before,
.pricing-plan::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    opacity: 1;.08;
    filter: blur(30px);
}
.pricing-plan::before {
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
}
.pricing-plan::after {
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
}

.plan-header {
    margin-bottom: 40px;
    position: relative;
}

.plan-name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    margin-bottom: 10px;
}

.plan-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2em;
    color: var(--neon-magenta);
    opacity: 1;.9;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    padding-left: 0;
}

.plan-features li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15em;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-dark);
    color: var(--text-light);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}
.plan-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--neon-blue);
    font-size: 1.3em;
    text-shadow: 0 0 5px var(--neon-blue);
}

.plan-addons {
    margin-top: 50px;
    border-top: 1px solid var(--border-dark);
    padding-top: 40px;
    text-align: left;
}

.plan-addons h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
}

.addon-card {
    background-color: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.addon-card:hover {
    background-color: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-magenta);
}

.addon-title {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3em;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.addon-description {
    font-size: 0.95em;
    color: var(--text-light);
    opacity: 1;.8;
}

.plan-footer-text {
    margin-top: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1em;
    color: var(--neon-magenta);
    opacity: 1;.7;
}

/* Newsletter Section - INLINE FORM (MOCK) */
.newsletter-section {
    text-align: center;
    padding: 100px 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--text-light);
    opacity: 1;.9;
}

.newsletter-form-mock {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-input-mock {
    background-color: var(--card-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    padding: 15px 25px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1em;
    color: var(--neon-cyan);
    flex-grow: 1;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    height: 55px;
    opacity: 1;.8;
}

.subscribe-button-mock {
    background: var(--gradient-hero);
    color: var(--bg-dark); /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--neon-magenta);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.3s ease;
    cursor: default; /* Not interactive */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-caption {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    color: var(--neon-magenta);
    opacity: 1;.6;
    margin-top: 20px;
}

/* FAQ Section - INTERACTIVE CHAT */
.faq-section {
    text-align: center;
}

.faq-chat-interface {
    background-color: var(--card-bg);
    border: 2px solid var(--neon-magenta);
    border-radius: 15px;
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 40px;
    box-shadow: 0 0 40px var(--neon-magenta);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.faq-chat-interface::before,
.faq-chat-interface::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-magenta) 0%, transparent 70%);
    opacity: 1;.05;
    filter: blur(40px);
}
.faq-chat-interface::before {
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
}
.faq-chat-interface::after {
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
}

.chat-message {
    padding: 15px 20px;
    border-radius: 20px;
    max-width: 80%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1em;
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.bot-message {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    border: 1px solid var(--neon-cyan);
}

.user-question {
    background-color: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    border: 1px solid var(--neon-magenta);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.user-question:hover {
    background-color: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 15px var(--neon-magenta);
}

.user-question.active {
    background-color: rgba(255, 0, 255, 0.25);
    box-shadow: 0 0 20px var(--neon-magenta);
}

.chat-message.hidden {
    display: none;
    opacity: 1;
    transform: translateY(-10px);
}

/* Contact Section - MAP INTEGRATION */
.contact-section {
    padding: 0; /* Map will fill the height */
}

.contact-grid {
    padding: 0; /* Remove padding for container so map can be full width */
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(80%) invert(90%) hue-rotate(200deg) brightness(80%) contrast(150%); /* Dark, futuristic map style */
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(10, 10, 15, 0.95); /* Dark background with transparency */
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px var(--neon-blue);
    backdrop-filter: blur(8px);
}

.overlay-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.overlay-text {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 15px;
    opacity: 1;.8;
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand, .footer-nav, .footer-legal {
    flex: 1;
    min-width: 200px;
    text-align: left;
}
.footer-brand {
    flex-basis: 30%; /* Give brand a bit more space */
}
.footer-nav {
    flex-basis: 30%;
}
.footer-legal {
    flex-basis: 30%;
    text-align: right;
}

.footer-brand .site-logo {
    font-size: 2em;
    margin-bottom: 10px;
}

.footer-brand p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    color: var(--neon-magenta);
    opacity: 1;.7;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1em;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.footer-legal p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    color: var(--text-light);
    opacity: 1;.6;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .main-nav {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .main-nav a {
        margin: 0;
    }

    .hero-title {
        font-size: 3em;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-text h3 {
        text-align: center;
    }
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form-mock {
        flex-direction: column;
        align-items: center;
    }
    .email-input-mock, .subscribe-button-mock {
        width: 100%;
        max-width: 400px;
    }

    .faq-chat-interface .chat-message {
        max-width: 90%;
    }

    .map-overlay {
        padding: 30px;
        width: 85%;
    }
    .overlay-title {
        font-size: 2em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand, .footer-nav, .footer-legal {
        text-align: center;
    }
    .footer-nav {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2em;
    }
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .hero-section {
        height: 50vh;
    }
    .hero-pre-title {
        font-size: 1em;
    }
    .hero-title {
        font-size: 2.5em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 3em;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }
    .quote-text {
        font-size: 1.5em;
    }

    .pricing-plan {
        padding: 30px;
    }
    .plan-name {
        font-size: 2.2em;
    }
    .plan-tagline {
        font-size: 1em;
    }
    .plan-features li {
        font-size: 1em;
    }
    .plan-addons h4 {
        font-size: 1.5em;
    }

    .profile-content-wrapper {
        padding: 30px;
    }
    .profile-photo {
        width: 140px;
        height: 140px;
    }
    .profile-name {
        font-size: 1.8em;
    }
    .profile-role {
        font-size: 1em;
    }
    .profile-bio {
        font-size: 1em;
    }
    .close-profile {
        font-size: 2em;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.5em;
    }
    .main-nav a {
        font-size: 0.9em;
    }

    .hero-section {
        height: 45vh;
    }
    .hero-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }
    .quote-text {
        font-size: 1.3em;
    }

    .pricing-plan {
        padding: 25px;
    }
    .plan-name {
        font-size: 1.8em;
    }

    .newsletter-form-mock {
        gap: 10px;
    }
    .email-input-mock, .subscribe-button-mock {
        padding: 12px 20px;
        font-size: 1em;
    }

    .map-overlay {
        padding: 25px;
    }
    .overlay-title {
        font-size: 1.8em;
    }
    .overlay-text {
        font-size: 0.95em;
    }

    .footer-brand .site-logo {
        font-size: 1.8em;
    }
    .footer-brand p {
        font-size: 0.8em;
    }
}

/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
