/* Design System & Global Styles */
:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.4);
    --bg-card-hover: rgba(30, 41, 59, 0.6);
    
    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;
    --accent-teal: #10b981;
    --accent-glow: rgba(6, 182, 212, 0.15);
    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(6, 182, 212, 0.3);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-outfit {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Helper Elements */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
    background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Navbar Style */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: var(--transition-normal);
}

.navbar-header.shrink {
    height: 70px;
    background: rgba(11, 15, 25, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo-text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-primary);
}

.nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 200;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close {
    font-size: 32px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-item {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.drawer-item:hover, .drawer-item.active {
    color: var(--accent-cyan);
    padding-left: 8px;
}

.drawer-btn {
    margin-top: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    animation: pulse 8s infinite alternate;
}

.shape-2 {
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: var(--accent-blue);
    animation: pulse 12s infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    left: 45%;
    width: 250px;
    height: 250px;
    background: #8b5cf6;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(20px, 30px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-container {
    margin-bottom: 24px;
}

.hero-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-plus {
    color: var(--accent-cyan);
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Dashboard Visual Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.glow-box {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.dashboard-preview {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(16px);
}

.dash-header {
    background: rgba(15, 23, 42, 0.4);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #eab308; }
.dash-dots span:nth-child(3) { background: #22c55e; }

.dash-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.dash-body {
    padding: 20px;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
}

.card-full {
    grid-column: span 2;
}

.dash-card-title {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.chart-container {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
    padding-top: 10px;
}

.chart-bar-y {
    flex: 1;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: height 1s ease;
}

.dash-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 6px;
}

.dash-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-teal);
}

.dash-status.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

/* About Us Section Styles */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition-normal);
}

.card-hover-effect:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 15px var(--accent-glow);
}

.about-icon-wrapper {
    background: rgba(6, 182, 212, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-cyan);
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    background: rgba(255, 255, 255, 0.04);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: rgba(6, 182, 212, 0.15);
}

.service-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    flex-grow: 1;
}

/* Flagship Service Card Styling - SAP FICO */
.flagship-card {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 2px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
    padding: 48px;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.flagship-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.flagship-icon {
    background: var(--gradient-primary) !important;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex-shrink: 0;
}

.flagship-icon .service-icon {
    color: var(--bg-primary);
    width: 36px;
    height: 36px;
}

.service-description-large {
    font-size: 16px !important;
    color: var(--text-secondary) !important;
    margin-bottom: 24px;
    max-width: 580px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.service-features li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--accent-cyan);
}

/* Clients Section Styles */
.clients-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.clients-showcase {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal);
    max-width: 460px;
    width: 100%;
}

.client-card:hover {
    transform: scale(1.02);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.highlighted-client {
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgba(59, 130, 246, 0.05) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
}

.highlighted-client::before {
    content: 'Main Client Partner';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 12px;
    border-radius: 100px;
}

.client-icon-placeholder {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.partner-svg {
    width: 32px;
    height: 32px;
    color: var(--accent-blue);
}

.highlighted-client .partner-svg {
    color: var(--accent-cyan);
}

.client-name {
    font-size: 20px;
    margin-bottom: 4px;
}

.client-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

.client-description {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Contact Us Section Styles */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-bg {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.method-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.method-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

a.method-value:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    min-height: 480px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-normal);
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
    background: rgba(15, 23, 42, 0.8);
}

.error-msg {
    font-size: 11px;
    color: #f87171;
    position: absolute;
    bottom: -18px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.form-group.invalid input, .form-group.invalid textarea {
    border-color: #f87171;
}

.form-group.invalid .error-msg {
    opacity: 1;
    visibility: visible;
}

/* Success Form popup inside wrapper */
.form-success-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: var(--transition-normal);
}

.form-success-alert.show {
    opacity: 1;
    visibility: visible;
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-svg {
    width: 36px;
    height: 36px;
    color: var(--accent-teal);
}

.form-success-alert h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success-alert p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 320px;
}

/* Footer Section Styles */
.footer-section {
    background-color: #050b14;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo-img {
    height: 48px;
}

.footer-brand .logo-text {
    font-size: 22px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 380px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent-cyan);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flagship-card {
        grid-column: span 2;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .nav-menu, .btn-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .about-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card:nth-child(3), .flagship-card {
        grid-column: span 1;
    }
    
    .flagship-card {
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
