/* Global Reset & Variables */

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

:root {
    --primary-color: #635BFF;
    --secondary-color: #23D4FF;
    --accent-color: #FF8E72;
    --dark: #050B16;
    --dark-light: #111D36;
    --text-dark: #0F2342;
    --text-light: #546487;
    --white: #F7F8FC;
    --gray-light: #E6EAF7;
    --gray: #D0D8EE;
    --success: #5BE3C3;
    --shadow: 0 12px 40px rgba(14, 24, 45, 0.18);
    --shadow-lg: 0 25px 70px rgba(5, 11, 22, 0.25);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - renewed design */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    color: var(--white);
    background: radial-gradient(circle at 15% 20%, rgba(99, 91, 255, 0.35), transparent 55%),
                radial-gradient(circle at 85% 15%, rgba(35, 212, 255, 0.25), transparent 45%),
                linear-gradient(135deg, var(--dark), #0a1330 65%, #071124);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 22, 0) 0%, rgba(5, 11, 22, 0.7) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.hero-copy {
    max-width: 540px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 248, 252, 0.7);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.hero-title {
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(247, 248, 252, 0.85);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 20px 40px rgba(35, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 25px 45px rgba(99, 91, 255, 0.35);
}

.btn-outline {
    border: 2px solid rgba(247, 248, 252, 0.5);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(247, 248, 252, 0.1);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hero-point {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.hero-point-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.hero-point-label {
    font-size: 14px;
    color: rgba(247, 248, 252, 0.7);
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.device-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.device-notch {
    display: none;
}

.device-screen {
    border-radius: 24px;
    background: transparent;
    padding: 0;
    min-height: 600px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
}

 .hero-slide {
     position: absolute;
     inset: 0;
     padding: 50px 40px;
     display: flex;
     flex-direction: column;
     gap: 18px;
     opacity: 0;
     transform: translateX(30px);
     transition: opacity 0.6s ease, transform 0.6s ease;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     border-radius: 24px;
 }
 
 .hero-slide.active {
     opacity: 1;
     transform: translateX(0);
     z-index: 2;
 }
 
 .slide-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgba(5, 11, 22, 0.4), rgba(5, 11, 22, 0.7));
     backdrop-filter: blur(0px);
     border-radius: 24px;
 }
 
 .slide-content {
     position: relative;
     z-index: 2;
     display: flex;
     flex-direction: column;
     gap: 18px;
     height: 100%;
     justify-content: center;
 }

.slide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.slide-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-metric {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    background: rgba(5, 11, 22, 0.4);
    padding: 4px 10px;
    border-radius: 8px;
}

.hero-slide h3 {
    font-size: 26px;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
    color: rgba(247, 248, 252, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.slide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.slide-list li {
    padding-left: 18px;
    position: relative;
    color: rgba(247, 248, 252, 0.95);
    font-size: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 8px rgba(35, 212, 255, 0.6);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 24px;
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slider-btn:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 36px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    width: 52px;
}

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

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

/* Stats Section */
.stats {
    background: var(--gray-light);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

 .service-icon {
     font-size: 56px;
     margin-bottom: 20px;
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     font-weight: 700;
 }

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

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

/* Approach Section */
.approach {
    background: var(--gray-light);
}

.approach-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.accordion-header:hover {
    background: var(--gray-light);
}

.accordion-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
}

.accordion-title {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 30px;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.accordion-content ul {
    list-style: none;
    margin-top: 15px;
}

.accordion-content li {
    padding: 8px 0;
    padding-left: 25px;
    color: var(--text-light);
    position: relative;
}

.accordion-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Expertise Section */
.expertise {
    background: var(--white);
}

.expertise-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    background: var(--gray-light);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.expertise-item {
    padding: 30px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.expertise-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Technologies Section */
.technologies {
    background: var(--dark);
    color: var(--white);
}

.technologies .section-title,
.technologies .section-subtitle {
    color: var(--white);
}

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

.tech-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    background: var(--gray-light);
}

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

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

 .contact-icon {
     font-size: 32px;
     min-width: 40px;
     width: 56px;
     height: 56px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(99, 91, 255, 0.1), rgba(35, 212, 255, 0.1));
     border-radius: 12px;
     color: var(--primary-color);
     font-weight: 700;
 }

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

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

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-shell {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-copy {
        max-width: 100%;
    }
    
    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .hero-showcase {
        align-items: flex-start;
    }
    
    .device-frame {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-slider {
        height: 600px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow);
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-points {
        grid-template-columns: 1fr;
    }
    
    .device-frame {
        max-width: 100%;
    }
    
    .device-screen {
        padding: 0;
        min-height: 500px;
    }
    
    .hero-slider {
        height: 500px;
        min-height: 500px;
    }
    
    .hero-slide {
        padding: 40px 30px;
    }
    
    .slider-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .slider-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .expertise-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .device-screen {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .floating-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 36px;
    }
}
