@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #030d22;
    --bg-secondary: #0a192f;
    --bg-tertiary: #0f2244;
    --accent-cyan: #00d2c4;
    --accent-blue: #00b4d8;
    --text-main: #f8f9fa;
    --text-muted: #8892b0;
    --text-light: #ccd6f6;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 25, 47, 0.7);
    --glow-cyan: 0 0 20px rgba(0, 210, 196, 0.3);
    --glow-blue: 0 0 20px rgba(0, 180, 216, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-inter);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Typography & General Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-cyan) 70%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    background: rgba(0, 210, 196, 0.1);
    color: var(--accent-cyan);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 210, 196, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Glassmorphism Styles */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}
.glass-card:hover {
    border-color: rgba(0, 210, 196, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px rgba(0, 210, 196, 0.15);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 13, 34, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(3, 13, 34, 0.95);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 3px;
}

.logo-text {
    font-family: var(--font-outfit);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.logo-text span {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-outfit);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #030d22;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 210, 196, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 210, 196, 0.1);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--accent-cyan);
    padding: 0.5rem 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--accent-blue);
    gap: 0.75rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(10, 25, 47, 0.4) 0%, rgba(3, 13, 34, 1) 90%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 196, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 13, 34, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating Stats Widget */
.floating-stats {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-outfit);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.stars {
    color: #ffb703;
    display: flex;
    gap: 0.25rem;
}

/* Services Grid Section */
.section-padding {
    padding: 100px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 210, 196, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    font-size: 1.5rem;
    border: 1px solid rgba(0, 210, 196, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-cyan);
    color: #030d22;
    transform: scale(1.1);
    box-shadow: var(--glow-cyan);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-list {
    list-style: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li::before {
    content: '→';
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Strategy & Pillars Section */
.strategy {
    background: radial-gradient(circle at 90% 80%, rgba(0, 180, 216, 0.04) 0%, transparent 60%);
}

.strategy-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.strategy-sidebar {
    position: sticky;
    top: 120px;
}

.pillars-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(10, 25, 47, 0.3);
    overflow: hidden;
    transition: var(--transition);
}

.pillar-item.active {
    border-color: var(--accent-cyan);
    background: rgba(10, 25, 47, 0.7);
    box-shadow: 0 10px 20px -10px rgba(0, 210, 196, 0.1);
}

.pillar-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.pillar-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pillar-num {
    font-family: var(--font-outfit);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-muted);
}

.pillar-item.active .pillar-num {
    color: var(--accent-cyan);
}

.pillar-title {
    font-size: 1.15rem;
    font-weight: 600;
}

.pillar-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.pillar-item.active .pillar-icon {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.pillar-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
}

.pillar-item.active .pillar-content {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.pillar-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tech Stack Section */
.tech-stack {
    background: rgba(10, 25, 47, 0.3);
}

.tech-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(0, 210, 196, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 196, 0.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tech-card {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.tech-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-card:hover .tech-icon-container {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: rotate(10deg);
}

.tech-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tech-name {
    font-weight: 600;
    font-size: 1rem;
}

.tech-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quality Dashboard Widget Section */
.dashboard-section {
    background: radial-gradient(circle at 10% 80%, rgba(0, 210, 196, 0.03) 0%, transparent 60%);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 0.95rem;
}

.control-val {
    color: var(--accent-cyan);
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-tertiary);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: var(--glow-cyan);
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.dashboard-widget {
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.widget-title {
    font-family: var(--font-outfit);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d2c4;
    box-shadow: 0 0 10px #00d2c4;
    animation: pulse 1.5s infinite;
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.widget-metric {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-val {
    font-family: var(--font-outfit);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.widget-chart-area {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    gap: 1.5rem;
    padding-top: 1rem;
}

.chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    gap: 0.5rem;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(to top, var(--accent-blue), var(--accent-cyan));
    border-radius: 6px 6px 0 0;
    transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 15px rgba(0, 210, 196, 0.1);
}

.chart-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* About / Team Section */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    text-align: center;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    margin: 0 auto 1.5rem auto;
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.8rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact & Consultation Scheduler */
.scheduler-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    border: 1px solid rgba(0, 180, 216, 0.2);
    font-size: 1.1rem;
}

.info-details h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.info-details p {
    font-size: 0.9rem;
}

.schedule-widget {
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.scheduler-header {
    margin-bottom: 2rem;
}

.scheduler-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bg-tertiary);
    z-index: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    transition: var(--transition);
}

.step-dot.active {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #030d22;
    box-shadow: var(--glow-cyan);
}

.step-dot.completed {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #030d22;
}

.schedule-step {
    display: none;
}

.schedule-step.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: var(--font-inter);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 210, 196, 0.15);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.slot-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
}

.slot-btn:hover, .slot-btn.selected {
    background: rgba(0, 210, 196, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.scheduler-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Footer Section */
footer {
    background: #020918;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-about p {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-title {
    font-family: var(--font-outfit);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--accent-cyan);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 210, 196, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 210, 196, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 210, 196, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-grid, .strategy-container, .dashboard-container, .about-grid, .scheduler-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .strategy-sidebar {
        position: static;
    }
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .services-grid, .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-right {
        order: -1;
    }
    .hero-image-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        align-items: flex-start;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .header-cta .btn {
        display: none; /* Hide consultation button on mobile header to save space */
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }
    .stats-card {
        grid-template-columns: 1fr;
    }
    .services-grid, .tech-grid {
        grid-template-columns: 1fr;
    }
    .slots-grid {
        grid-template-columns: 1fr;
    }
    .widget-grid {
        grid-template-columns: 1fr;
    }
    .chart-bars {
        gap: 0.5rem;
    }
}
