:root {
    --color-cream: #FDFBF7;
    --color-dark-grey: #2A2A2A;
    --color-main-grey: #F4F4F5;
    --color-text: #1A1A1A;
    --color-text-light: #F4F4F5;
    --color-accent: #007AFF;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-main-grey);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

header {
    background-color: var(--color-cream);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    display: block;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown {
    position: relative;
}

.dropdown-title {
    cursor: pointer;
    font-weight: 500;
    padding: 10px 0;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: var(--color-main-grey);
}

.request-btn {
    background-color: var(--color-dark-grey);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.request-btn:hover {
    background-color: #000;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

footer {
    background-color: var(--color-dark-grey);
    color: var(--color-text-light);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a:hover {
    color: #aaa;
}

.footer-col p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #888;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.close-btn:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--color-text);
}

#requestForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#requestForm input,
#requestForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

#requestForm input:focus,
#requestForm textarea:focus {
    outline: none;
    border-color: var(--color-dark-grey);
}

#requestForm button {
    background-color: var(--color-dark-grey);
    color: var(--color-text-light);
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

#requestForm button:hover {
    background-color: #000;
}

.privacy-notice {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    text-align: center;
    margin-top: 15px;
}

.privacy-notice a {
    color: var(--color-dark-grey);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-controls {
        gap: 15px;
    }
    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #fff;
    border-radius: 20px;
    padding: 80px 40px;
    margin: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--color-dark-grey);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 40px 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 70%),
                linear-gradient(135deg, var(--color-main-grey) 0%, #e0e0e5 100%);
    z-index: -1;
    animation: bgShift 10s infinite alternate ease-in-out;
}

@keyframes bgShift {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-grey);
    border: 2px solid var(--color-dark-grey);
}

.btn-secondary:hover {
    background-color: var(--color-dark-grey);
    color: #fff;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: rgba(0, 122, 255, 0.1);
    background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    color: var(--color-accent);
    font-weight: 600;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

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

.counter-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-num {
    background: var(--color-accent);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.timeline-header h3 {
    font-size: 20px;
    margin: 0;
}

.timeline-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding: 0 0 0 60px;
    color: #666;
}

.timeline-item.active .timeline-body {
    max-height: 150px;
    padding: 15px 0 0 60px;
    opacity: 1;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.slide {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.quote {
    font-size: 24px;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.author {
    font-weight: 600;
    color: var(--color-accent);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--color-accent);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, #111 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    margin: 60px 0;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-btn {
    font-size: 18px;
    padding: 18px 40px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .bg-light {
        padding: 40px 20px;
    }
    .timeline-body {
        padding-left: 0;
    }
    .timeline-item.active .timeline-body {
        padding-left: 0;
    }
}

.ios-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    padding: 60px 20px;
    gap: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f5 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.ios-hero-content {
    flex: 1;
    max-width: 600px;
}

.ios-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
}

.ios-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.mockup-placeholder {
    width: 280px;
    height: 580px;
    background: #fff;
    border: 12px solid #111;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    transform: rotateY(-15deg) rotateX(5deg);
    animation: floatMockup 6s ease-in-out infinite alternate;
}

@keyframes floatMockup {
    0% { transform: translateY(0) rotateY(-15deg) rotateX(5deg); }
    100% { transform: translateY(-20px) rotateY(-10deg) rotateX(2deg); }
}

.app-type-card {
    background: #f9f9fb;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-type-card:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.app-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.app-type-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.app-type-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

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

.tech-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.1);
}

.tech-badge {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: var(--color-accent);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-item h4 {
    font-size: 18px;
    color: var(--color-dark-grey);
}

.vertical-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.v-timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.v-timeline-item:last-child {
    margin-bottom: 0;
}

.v-step {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 0 0 5px var(--color-main-grey);
}

.v-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    flex: 1;
}

.v-content h3 {
    margin-bottom: 10px;
}

.v-content p {
    color: #666;
    margin: 0;
}

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

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border: 2px solid var(--color-accent);
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-dark-grey);
    margin-bottom: 20px;
}

.pricing-card p {
    color: #666;
    margin-bottom: 30px;
    min-height: 48px;
}

.pricing-btn {
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9fb;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    color: #666;
    background: #f9f9fb;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

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

@media (max-width: 768px) {
    .ios-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .ios-hero-content h1 {
        font-size: 36px;
    }
    .vertical-timeline::before {
        left: 20px;
    }
    .v-step {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .v-content {
        padding: 15px;
    }
}

:root {
    --color-android: #3DDC84;
    --color-android-dark: #073042;
}

.android-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75vh;
    padding: 60px 40px;
    gap: 40px;
    background: radial-gradient(circle at 80% 50%, #1a1a1a 0%, var(--color-android-dark) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    color: #fff;
    overflow: hidden;
}

.android-hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.android-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.android-hero-content .hero-subtitle {
    color: #b0c4de;
}

.btn-android {
    background-color: var(--color-android);
    color: var(--color-android-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.3);
}

.btn-android:hover {
    background-color: #2ebc6c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 220, 132, 0.4);
}

.android-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    z-index: 2;
}

.android-mockup {
    width: 260px;
    height: 560px;
    background: #111;
    border: 8px solid #333;
    border-radius: 30px;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-android);
    font-weight: 600;
    transform: rotateY(-20deg) rotateX(10deg);
    animation: floatAndroid 5s ease-in-out infinite alternate;
    position: relative;
}

.android-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 3px;
}

@keyframes floatAndroid {
    0% { transform: translateY(0) rotateY(-20deg) rotateX(10deg); }
    100% { transform: translateY(-15px) rotateY(-15deg) rotateX(5deg); }
}

.android-badge {
    background: rgba(61, 220, 132, 0.1);
    color: #2ca861;
}

.tech-item:hover .android-badge {
    background: var(--color-android);
    color: var(--color-android-dark);
}

.android-step {
    background: var(--color-android);
    color: var(--color-android-dark);
}

.pricing-card.android-popular {
    border-color: var(--color-android);
    box-shadow: 0 10px 30px rgba(61, 220, 132, 0.15);
}

.android-badge-solid {
    background: var(--color-android);
    color: var(--color-android-dark);
}

.android-cta-section {
    background: linear-gradient(135deg, var(--color-android-dark) 0%, #111 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    margin: 60px 0;
    border-top: 4px solid var(--color-android);
}

@media (max-width: 768px) {
    .android-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .android-hero-content h1 {
        font-size: 38px;
    }
}

.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #111;
    color: #fff;
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    animation: moveGrid 15s linear infinite;
    opacity: 0.5;
}

@keyframes moveGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(30px); }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero-content .hero-subtitle {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-hero-content .hero-text {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

.who-we-are-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.who-text {
    flex: 1;
}

.who-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--color-dark-grey);
}

.who-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.who-graphic {
    flex: 1;
    position: relative;
    height: 400px;
    background: #f4f4f5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(0, 122, 255, 0));
    border-radius: 50%;
    animation: floatShape 6s infinite alternate ease-in-out;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.2), rgba(61, 220, 132, 0));
    right: 10%;
    top: 20%;
    animation-delay: -2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.5), transparent);
    left: 10%;
    bottom: 10%;
    animation-delay: -4s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.1); }
}

.mission-section {
    background: #fff;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-android));
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-statement {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark-grey);
    line-height: 1.4;
    margin-bottom: 20px;
}

.mission-subtext {
    font-size: 18px;
    color: #666;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(0, 122, 255, 0.2);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: #f9f9fb;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.team-teaser {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
}

.team-teaser h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--color-dark-grey);
}

.team-teaser p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.team-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 36px;
    }
    .about-hero-content .hero-subtitle {
        font-size: 18px;
    }
    .who-we-are-container {
        flex-direction: column;
        gap: 40px;
    }
    .mission-statement {
        font-size: 24px;
    }
}

.ux-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75vh;
    padding: 60px 40px;
    gap: 60px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.ux-hero-content {
    flex: 1;
    max-width: 600px;
}

.ux-hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
}

.ux-hero-content .hero-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ux-hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.ui-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: absolute;
    padding: 20px;
    transition: transform 0.3s ease;
}

.card-1 {
    width: 200px;
    top: 20%;
    left: 10%;
    transform: translateZ(20px);
    animation: floatUI 6s infinite alternate ease-in-out;
}

.card-2 {
    width: 240px;
    bottom: 10%;
    right: 15%;
    transform: translateZ(50px);
    animation: floatUI 7s infinite alternate ease-in-out reverse;
}

.card-3 {
    width: 160px;
    top: 40%;
    right: 5%;
    transform: translateZ(80px);
    animation: floatUI 5s infinite alternate ease-in-out 1s;
}

.ui-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-bottom: 15px;
}

.ui-line {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.ui-line.short {
    width: 60%;
}

.ui-graph {
    height: 80px;
    background: linear-gradient(to top, #e2e8f0 0%, transparent 100%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.ui-button {
    height: 30px;
    background: var(--color-accent);
    border-radius: 6px;
    margin-bottom: 10px;
}

.ui-button.outline {
    background: transparent;
    border: 2px solid #e2e8f0;
}

@keyframes floatUI {
    0% { transform: translateY(0) translateZ(30px); }
    100% { transform: translateY(-20px) translateZ(50px); }
}

.ux-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.ux-service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.08);
    transform: translateY(-5px);
    border-color: #e0f2fe;
}

.ux-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.ux-service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.ux-service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.critical-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.critical-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.critical-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.critical-box p {
    font-size: 14px;
    color: #666;
}

.ux-step {
    background: var(--color-dark-grey);
    color: #fff;
}

.approach-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-dark-grey);
    font-weight: 500;
}

.approach-list span {
    color: var(--color-accent);
    font-weight: bold;
}

.system-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.system-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tool-item {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tool-item h4 {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.tool-desc {
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: var(--color-accent);
}

.tool-item:hover h4 {
    transform: translateY(-20px);
    opacity: 0;
}

.tool-item:hover .tool-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ux-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .ux-hero-content h1 {
        font-size: 40px;
    }
    .approach-container {
        padding: 30px 20px;
    }
}

.team-hero-section {
    text-align: center;
    padding: 80px 20px 40px;
}

.team-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
}

.team-hero-content .hero-subtitle {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.team-hero-content .hero-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.team-card-wrapper {
    perspective: 1000px;
}

.team-card {
    background: #fff;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid #f9f9fb;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    background-color: #fafbfc;
}

.team-emoji {
    font-size: 70px;
    margin-bottom: 20px;
    line-height: 1;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-grey);
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-location {
    font-weight: 400;
    color: #999;
    font-size: 16px;
    white-space: nowrap;
}

.team-role {
    font-size: 15px;
    color: #888;
    font-weight: 500;
}

.team-about-section {
    text-align: center;
    padding: 60px 20px;
}

.team-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-about-content h2 {
    font-size: 32px;
    color: var(--color-dark-grey);
    margin-bottom: 25px;
    line-height: 1.4;
}

.team-about-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-hero-content h1 {
        font-size: 38px;
    }
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .team-about-content h2 {
        font-size: 26px;
    }
}

.contact-hero {
    text-align: center;
    padding: 60px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-dark-grey);
}

.contact-hero .hero-subtitle {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-hero .hero-text {
    font-size: 16px;
    color: #666;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--color-dark-grey);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f4f4f5;
}

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

.honeypot-group {
    display: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark-grey);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background-color: #f9f9fb;
    transition: all 0.3s ease;
}

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

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ff3b30;
    background-color: #fff0f0;
}

.error-message {
    display: none;
    color: #ff3b30;
    font-size: 12px;
    margin-top: 6px;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.form-group.invalid .error-message {
    display: block;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.form-checkbox-group label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.form-checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

#submitContactBtn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

#submitContactBtn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.success-message {
    display: none;
    background-color: #e4f8ec;
    color: #2ca861;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #bcead1;
}

.success-message.show {
    display: block;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    border-color: #e2e8f0;
}

.info-icon {
    font-size: 32px;
    background: #f4f4f5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-text strong {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text span {
    color: var(--color-dark-grey);
    font-size: 16px;
    font-weight: 500;
}

.legal-title {
    margin-bottom: 20px !important;
}

.legal-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.legal-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #f4f4f5;
    padding-bottom: 12px;
}

.legal-card p:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.legal-card strong {
    color: var(--color-dark-grey);
    margin-bottom: 4px;
}

.map-section {
    padding-top: 20px;
}

.map-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.map-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--color-dark-grey);
}

.map-header p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.map-actions {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-wrapper {
        order: 2;
    }
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    .contact-form {
        padding: 25px 20px;
    }
    .info-card {
        padding: 20px;
    }
}

.policy-hero {
    text-align: center;
    padding: 60px 20px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.policy-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--color-dark-grey);
}

.policy-hero .hero-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.policy-content-section {
    padding: 60px 20px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-size: 24px;
    color: var(--color-dark-grey);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f4f4f5;
}

.policy-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.policy-block ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-block li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.policy-block strong {
    color: var(--color-dark-grey);
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: bottom 0.4s ease-in-out;
    padding: 20px;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 10px 25px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
