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

:root {
    --blue: #0066ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #050812;
    --light-bg: #e8e8e8;
    --white: #ffffff;
    --gray: #9ca3af;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 8, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-blue {
    color: var(--blue);
}

.logo-white {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--blue);
}

.contact-btn {
    background: var(--white);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(ellipse at top right, rgba(0, 102, 255, 0.2), transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(ellipse at center, rgba(0, 102, 255, 0.1), transparent 70%);
    animation: gradientFlow 15s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 20%;
    animation-delay: 6s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.badge-text {
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.highlight-text {
    background: linear-gradient(135deg, var(--blue) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #6366f1);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out 1.3s forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes slideIn {
    to {
        transform: scaleX(1);
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.btn-hero-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--blue), #6366f1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--blue);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-mini-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.9s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-card {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: var(--transition);
    animation: pulse 3s ease-in-out infinite;
}

.metric-card:hover {
    background: rgba(0, 102, 255, 0.15);
    transform: translateX(5px);
}

.metric-card:nth-child(2) {
    animation-delay: 0.5s;
}

.metric-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.5));
}

.metric-info {
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(0, 102, 255, 0.3), rgba(99, 102, 241, 0.6));
    border-radius: 4px;
    transition: all 0.5s ease;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.chart-bar.active {
    background: linear-gradient(to top, var(--blue), #6366f1);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.chart-bar:hover {
    background: linear-gradient(to top, var(--blue), #6366f1);
    transform: scaleY(1.05);
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(-45deg);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--dark-bg), var(--light-bg));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.services-intro {
    position: sticky;
    top: 150px;
}

.services-visual {
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.services-visual.animate {
    opacity: 1;
    transform: translateY(0);
}

.visual-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 3rem;
}

.circle-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.circle-segment::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 3px solid;
    animation: rotate 20s linear infinite;
}

.segment-1 {
    transform: rotate(0deg);
}

.segment-1::before {
    border-color: rgba(0, 102, 255, 0.3) transparent transparent transparent;
    animation-delay: 0s;
}

.segment-2 {
    transform: rotate(90deg);
}

.segment-2::before {
    border-color: rgba(99, 102, 241, 0.3) transparent transparent transparent;
    animation-delay: 0.5s;
}

.segment-3 {
    transform: rotate(180deg);
}

.segment-3::before {
    border-color: rgba(0, 102, 255, 0.3) transparent transparent transparent;
    animation-delay: 1s;
}

.segment-4 {
    transform: rotate(270deg);
}

.segment-4::before {
    border-color: rgba(99, 102, 241, 0.3) transparent transparent transparent;
    animation-delay: 1.5s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.segment-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.5));
}

.segment-1 .segment-icon {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.segment-2 .segment-icon {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.segment-3 .segment-icon {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.segment-4 .segment-icon {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.center-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--darker-bg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-stat-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.visual-stat-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.stat-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--darker-bg);
    margin-bottom: 0.5rem;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), #6366f1);
    border-radius: 10px;
    transition: width 1.5s ease-out;
    animation: fillBar 2s ease-out forwards;
    transform-origin: left;
}

@keyframes fillBar {
    from {
        width: 0 !important;
    }
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--darker-bg);
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    transition-delay: 0.2s;
}

.section-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
    padding: 2rem 0;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.service-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.service-item h3 {
    font-size: 2rem;
    color: var(--darker-bg);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.service-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.service-item:hover h3 {
    color: var(--blue);
    transform: translateX(10px);
}

.service-item:hover .service-desc {
    opacity: 1;
    transform: translateX(10px);
}

.service-line {
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.6s ease-out;
}

.service-item:hover .service-line,
.service-item.animate .service-line {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-office li {
    color: var(--gray);
}

.footer-links a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #6366f1;
    text-decoration: underline;
}

.footer-links-row {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links-grid h5 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-inline {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.footer-links-inline li {
    margin: 0;
}

.footer-links-inline a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-links-inline a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-inline {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        gap: 4rem;
    }

    .service-item h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        background: var(--darker-bg);
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .floating-shapes .shape {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-mini-number {
        font-size: 1.5rem;
    }

    .stat-mini-label {
        font-size: 0.75rem;
    }

    .dashboard-mockup {
        padding: 1rem;
    }

    .metric-card {
        padding: 0.75rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .chart-visual {
        height: 80px;
        padding: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-intro {
        position: static;
    }

    .services-visual {
        margin-top: 2rem;
    }

    .visual-circle {
        width: 250px;
        height: 250px;
    }

    .center-circle {
        width: 110px;
        height: 110px;
    }

    .center-text {
        font-size: 0.85rem;
    }

    .segment-icon {
        font-size: 1.5rem;
    }

    .visual-stats {
        gap: 1.5rem;
    }

    .stat-percentage {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .visual-circle {
        width: 200px;
        height: 200px;
    }

    .center-circle {
        width: 90px;
        height: 90px;
    }

    .center-text {
        font-size: 0.7rem;
    }

    .segment-icon {
        font-size: 1.25rem;
    }

    .stat-percentage {
        font-size: 1.25rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-item h3 {
        font-size: 1.25rem;
    }

    .services {
        padding: 4rem 0;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.about-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-text .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text .section-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.stat-item.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-item:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--blue);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: var(--darker-bg);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-header .section-title {
    color: var(--white);
}

.why-choose-header .section-description {
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

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

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: var(--white);
    color: var(--dark-bg);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0052cc;
}

/* Page Hero */
.page-hero {
    padding: 12rem 0 6rem;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(0, 102, 255, 0.15), transparent 70%);
}

.page-hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.page-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    color: var(--darker-bg);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--darker-bg);
}

.contact-info > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-icon {
    font-size: 2rem;
    background: rgba(0, 102, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--darker-bg);
}

.contact-detail-item p {
    color: #666;
    line-height: 1.6;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--darker-bg);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.75rem 1.5rem;
    background: var(--darker-bg);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--darker-bg);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    grid-column: 1 / -1;
    padding: 1.25rem 2rem;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.form-message {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.form-message.success {
    background: #10b98120;
    border: 2px solid #10b981;
}

.form-message.success h3 {
    color: #059669;
    margin-bottom: 0.5rem;
}

.form-message.success p {
    color: #047857;
}

.form-message.error {
    background: #ef444420;
    border: 2px solid #ef4444;
}

.form-message.error h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.form-message.error p {
    color: #b91c1c;
}

/* Content Page Styles */
.content-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.content-section.dark {
    background: var(--dark-bg);
}

.content-section.dark h2,
.content-section.dark h3 {
    color: var(--white);
}

.content-section.dark p,
.content-section.dark li {
    color: var(--gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--darker-bg);
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.content-text li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

.content-image {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.process-section h2 {
    text-align: center;
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--blue);
    transform: translateY(-10px);
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
