/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Demo Notice Bar */
.demo-notice {
    background: linear-gradient(90deg, #FF3B30, #FF5B4F);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.demo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.demo-badge {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.demo-text {
    color: #ffffff;
    font-size: 0.875rem;
}

.demo-btn {
    background: #ffffff;
    color: #FF3B30;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: #1A1A1A;
    color: #ffffff;
    transform: translateX(4px);
}

/* Geometric Shapes - All Circles */
.geo-shapes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 120px;
    gap: 8px;
}

.geo-square {
    display: inline-block;
    animation: geoPulse 3s ease-in-out infinite;
    border-radius: 50%;
    position: relative;
}

.geo-1 {
    width: 90px;
    height: 90px;
    border: 4px solid #FF3B30;
    animation-delay: 0s;
}

.geo-2 {
    width: 60px;
    height: 60px;
    border: 3px solid #FF3B30;
    background: rgba(255, 59, 48, 0.3);
    animation-delay: 0.3s;
}

.geo-3 {
    width: 35px;
    height: 35px;
    background: #FF3B30;
    animation-delay: 0.6s;
}

.geo-4 {
    width: 18px;
    height: 18px;
    border: 2px solid #FF3B30;
    animation-delay: 0.9s;
}

.geo-5 {
    display: none;
}

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

@keyframes geoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

.geo-5 {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FF5B4F, transparent);
    animation-delay: 2s;
}

@keyframes geoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF3B30;
}

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

/* Version Toggle */
.version-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    margin-right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.version-label {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.version-buttons {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 0.2rem;
}

.version-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #cccccc;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.version-btn.active {
    background: linear-gradient(135deg, #FF3B30, #FF5B4F);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.version-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Cursor effect */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #FF3B30;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    opacity: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF3B30;
    letter-spacing: 2px;
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF3B30;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 0.9;
}

.hero-title .geo-shapes {
    margin-top: 1rem;
}

.hero-title-main {
    display: block;
    color: #FF3B30;
    text-shadow: 0 0 30px rgba(255, 59, 48, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-title-sub {
    display: block;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #FF3B30;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 59, 48, 0.2), rgba(255, 91, 79, 0.2));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF3B30;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 30%; left: 40%; animation-delay: 0s; }
.particle-2 { top: 50%; right: 30%; animation-delay: 2s; }
.particle-3 { bottom: 30%; left: 60%; animation-delay: 4s; }
.particle-4 { top: 70%; left: 10%; animation-delay: 6s; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #cccccc;
    border-radius: 12px;
    margin: 0 auto 1rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #FF3B30;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Service Sections */
.service-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.service-section.alt-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1A1A1A 100%);
}

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

.service-icon {
    font-size: 3rem;
    color: #FF3B30;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconBounce 2s ease-in-out;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-description p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.highlight {
    color: #FF3B30;
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF3B30, transparent);
    animation: highlightGlow 2s ease-in-out infinite alternate;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FF3B30;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Clients Section */
.clients-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.client-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.client-card:nth-child(odd) { animation-delay: 0.2s; }
.client-card:nth-child(even) { animation-delay: 0.4s; }

.client-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 59, 48, 0.3);
}

.client-logo {
    font-size: 3rem;
    color: #FF3B30;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1) rotate(5deg);
}

.client-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.client-card p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.client-rating {
    color: #FFD700;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FF3B30 0%, #D63026 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn.primary {
    background: #ffffff;
    color: #FF3B30;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: #FF3B30;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Slogan Section */
.slogan-section {
    height: 165px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid rgba(255, 255, 255, 0.1);
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan-content {
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.3);
    animation: fadeInUp 1s ease-out;
}

.slogan-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FF3B30, #FF5B4F, #FF3B30, #FF5B4F);
    background-size: 400% 400%;
    border-radius: 16px;
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite;
    filter: blur(10px);
    opacity: 0.5;
}

.slogan-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.slogan-main {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 59, 48, 0.4); }
}

/* Services Intro Section */
.services-intro-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
}

.services-intro-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-intro-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-bubble {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-bubble:nth-child(1) { animation-delay: 0.1s; }
.service-bubble:nth-child(2) { animation-delay: 0.2s; }
.service-bubble:nth-child(3) { animation-delay: 0.3s; }
.service-bubble:nth-child(4) { animation-delay: 0.4s; }
.service-bubble:nth-child(5) { animation-delay: 0.5s; }
.service-bubble:nth-child(6) { animation-delay: 0.6s; }

.service-bubble:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.3);
    border-color: rgba(255, 59, 48, 0.5);
    background: rgba(255, 59, 48, 0.1);
}

.service-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3B30, #FF5B4F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-bubble:hover::before {
    transform: scaleX(1);
}

.bubble-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-bubble:hover .bubble-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-bubble h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-bubble p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.service-bubble:hover h3 {
    color: #FF3B30;
}

.bubble-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 59, 48, 0.3);
    transform: scale(0);
    animation: bubble-ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes bubble-ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: #111111;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF3B30;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF3B30;
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 59, 48, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 59, 48, 0.8), 0 0 60px rgba(255, 59, 48, 0.4); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 1; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-40px) translateX(-10px); opacity: 0.6; }
    75% { transform: translateY(-20px) translateX(5px); opacity: 0.8; }
}

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

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes highlightGlow {
    from { opacity: 1; }
    to { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .version-toggle {
        margin-left: auto;
        margin-right: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-stats {
        justify-content: center;
    }

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

    .service-features {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}