/* ============================================
   850 HOUSE - REFINED MINIMALIST DESIGN
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #FAF9F6;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

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

nav .logo {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

nav .logo:hover {
    transform: scale(1.02);
}

nav .nav-right {
    display: flex;
    gap: 48px;
    align-items: center;
}

nav .nav-right a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

nav .nav-right a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

nav .nav-right a:hover {
    color: #000;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
}

.lang-link {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link::after {
    display: none !important;
}

.lang-link:hover {
    color: #333;
}

.lang-link.active {
    color: #000;
    font-weight: 700;
}

.lang-divider {
    color: rgba(51, 51, 51, 0.3);
    font-weight: 400;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-color: #FAF9F6;
    padding-top: 120px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #333;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #333;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border: 2px solid rgba(51, 51, 51, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #333;
    background-color: rgba(51, 51, 51, 0.05);
    transform: translateY(-2px);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

#products {
    background-color: #FAF9F6;
    padding: 80px 0;
}

.apps-category {
    margin-bottom: 60px;
}

.apps-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.product-logo {
    width: 110px;
    height: auto;
    margin-bottom: 10px;
}

.product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(51, 51, 51, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 28px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(51, 51, 51, 0.12);
}

/* Active Apps use same grid as inactive */

/* Inactive Apps - Two Column Grid */
.inactive-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-image {
    flex-shrink: 0;
    width: 160px;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.02), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.01em;
}

.product-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.product-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-links a img {
    width: 110px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-links a img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 10px;
    background-color: #F7F8FA;
    transition: all 0.3s ease;
}

.website-link:hover {
    background-color: #333;
    color: #FFFFFF;
    transform: translateX(4px);
}

.website-link i {
    transition: transform 0.3s ease;
}

.website-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   DESIGNS SECTION
   ============================================ */

#designs {
    background-color: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.06);
    overflow: hidden;
}

.section-header-designs {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-designs h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.02em;
}

.section-subtitle-designs {
    font-size: 18px;
    color: #666;
}

.designs-scroll-container {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.designs-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 8px 0 24px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(51, 51, 51, 0.2) transparent;
    flex: 1;
}

.scroll-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(51, 51, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.scroll-arrow:hover {
    background-color: #333;
    border-color: #333;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.scroll-arrow i {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.scroll-arrow:hover i {
    color: #FFFFFF;
}

.designs-scroll::-webkit-scrollbar {
    height: 8px;
}

.designs-scroll::-webkit-scrollbar-track {
    background: rgba(51, 51, 51, 0.05);
    border-radius: 10px;
}

.designs-scroll::-webkit-scrollbar-thumb {
    background: rgba(51, 51, 51, 0.2);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.designs-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(51, 51, 51, 0.4);
}

.design-item {
    flex-shrink: 0;
    width: 600px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.design-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-item:hover img {
    transform: scale(1.05);
}

.design-links {
    text-align: center;
    margin-top: 40px;
}

.design-links p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.social-design-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.design-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background-color: #FAF9F6;
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.design-link i {
    font-size: 20px;
}

.design-link:hover {
    background-color: #333;
    color: #FFFFFF;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

#about {
    background-color: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.06);
}

#about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #000;
    letter-spacing: -0.02em;
}

#about p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.work-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.stage {
    background-color: #FAF9F6;
    padding: 40px 36px;
    border-radius: 28px;
    border: 1px solid rgba(51, 51, 51, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stage:hover::before {
    transform: scaleX(1);
}

.stage:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background-color: #FFFFFF;
    border-color: rgba(51, 51, 51, 0.12);
}

.stage h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.01em;
}

.stage p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* ============================================
   CLIENT PROJECTS SECTION
   ============================================ */

#projects {
    background-color: #FAF9F6;
    padding: 100px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.06);
}

.section-header-projects {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-projects h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.02em;
}

.section-subtitle-projects {
    font-size: 18px;
    color: #666;
}

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

.project-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(51, 51, 51, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(51, 51, 51, 0.12);
}

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 28px;
}

.project-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.project-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #F7F8FA;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: #333;
    color: #FFFFFF;
    transform: translateX(4px);
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   SECTION DIVIDER
   ============================================ */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: #FAF9F6;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 51, 51, 0.15), transparent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

#contact {
    background-color: #FAF9F6;
    padding: 100px 0;
}

#contact h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.02em;
    text-align: center;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.info-item i {
    font-size: 24px;
    color: #333;
    margin-top: 4px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.info-item p,
.info-item a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #000;
}

/* Contact Form */
.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(51, 51, 51, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    color: #333;
    background-color: #FAF9F6;
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.05);
}

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

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    color: #FFFFFF;
    background-color: #333;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Service Selection Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background-color: #FAF9F6;
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: rgba(51, 51, 51, 0.25);
    background-color: #F5F4F1;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-checkbox {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(51, 51, 51, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.service-checkbox::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(-45deg) scale(0);
    transition: transform 0.2s ease;
    margin-bottom: 2px;
}

.service-option input[type="checkbox"]:checked + .service-checkbox {
    background-color: #333;
    border-color: #333;
}

.service-option input[type="checkbox"]:checked + .service-checkbox::after {
    transform: rotate(-45deg) scale(1);
}

.service-option input[type="checkbox"]:checked ~ .service-info .service-name {
    color: #000;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.service-price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.service-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    opacity: 0.9;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 16px;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }

    .category-title {
        font-size: 24px;
    }

    .inactive-apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 20px;
        gap: 24px;
    }

    .product-image {
        width: 140px;
    }

    .product-logo {
        width: 100px;
    }

    .product-details p {
        font-size: 13px;
    }

    .work-stages {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .design-item {
        width: 500px;
        height: 375px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 24px;
    }

    .project-name {
        font-size: 18px;
    }

    .project-description {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        width: 92%;
    }

    nav {
        padding: 20px 0;
    }

    nav .nav-right {
        display: none;
    }

    .language-switcher {
        margin-left: auto;
    }

    .hero {
        padding: 80px 0 70px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 36px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    #products {
        padding: 70px 0;
    }

    .apps-category {
        margin-bottom: 50px;
    }

    .category-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .inactive-apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .product-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .product-logo {
        width: 100px;
    }

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

    .product-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .product-details h3 {
        font-size: 18px;
    }

    .product-details p {
        font-size: 13px;
    }

    .product-links {
        justify-content: center;
    }

    #designs {
        padding: 70px 0;
    }

    .section-header-designs {
        margin-bottom: 40px;
    }

    .section-header-designs h2 {
        font-size: 36px;
    }

    .section-subtitle-designs {
        font-size: 16px;
    }

    .designs-scroll-container {
        margin-bottom: 40px;
    }

    .designs-scroll-container {
        gap: 16px;
    }

    .scroll-arrow {
        width: 44px;
        height: 44px;
    }

    .scroll-arrow i {
        font-size: 18px;
    }

    .design-item {
        width: 400px;
        height: 300px;
    }

    .design-links p {
        font-size: 15px;
    }

    .design-link {
        font-size: 15px;
        padding: 11px 24px;
    }

    #about {
        padding: 70px 0;
    }

    #about h2 {
        font-size: 36px;
    }

    #about p {
        font-size: 16px;
    }

    .work-stages {
        margin-top: 60px;
        gap: 24px;
    }

    .stage {
        padding: 32px 28px;
    }

    .stage h3 {
        font-size: 22px;
    }

    .stage p {
        font-size: 15px;
    }

    #projects {
        padding: 70px 0;
    }

    .section-header-projects {
        margin-bottom: 40px;
    }

    .section-header-projects h2 {
        font-size: 36px;
    }

    .section-subtitle-projects {
        font-size: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 24px;
    }

    .project-name {
        font-size: 18px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-link {
        font-size: 14px;
        padding: 9px 18px;
    }

    .section-divider {
        padding: 30px 0;
    }

    #contact {
        padding: 70px 0;
    }

    #contact h2 {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .service-option {
        padding: 14px 16px;
        gap: 12px;
    }

    .service-checkbox {
        width: 20px;
        height: 20px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-price {
        font-size: 13px;
    }

    .service-desc {
        font-size: 12px;
    }

    footer {
        padding: 32px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-cta {
        margin-top: 32px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 13px 24px;
        font-size: 14px;
        max-width: 240px;
    }

    .category-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .product-card {
        padding: 18px;
        border-radius: 16px;
    }

    .product-image {
        max-width: 180px;
    }

    .product-logo {
        width: 90px;
    }

    .product-details h3 {
        font-size: 17px;
    }

    .product-details p {
        font-size: 12px;
    }

    .website-link {
        font-size: 12px;
        padding: 8px 14px;
    }

    .product-links a img {
        width: 100px;
    }

    .stage {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .section-header-designs h2 {
        font-size: 30px;
    }

    .section-subtitle-designs {
        font-size: 15px;
    }

    .designs-scroll-container {
        gap: 12px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow i {
        font-size: 16px;
    }

    .design-item {
        width: 320px;
        height: 240px;
    }

    .design-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .design-link i {
        font-size: 18px;
    }

    .section-header-projects h2 {
        font-size: 30px;
    }

    .section-subtitle-projects {
        font-size: 15px;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 20px;
    }

    .project-name {
        font-size: 17px;
    }

    .project-description {
        font-size: 13px;
    }

    .project-link {
        font-size: 13px;
        padding: 8px 16px;
    }

    #contact h2 {
        font-size: 30px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 11px 14px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 13px 28px;
    }

    .service-option {
        padding: 12px 14px;
        gap: 10px;
    }

    .service-checkbox {
        width: 18px;
        height: 18px;
    }

    .service-checkbox::after {
        width: 8px;
        height: 5px;
    }

    .service-name {
        font-size: 13px;
    }

    .service-price {
        font-size: 12px;
    }

    .service-desc {
        font-size: 11px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 2px solid #333;
    outline-offset: 4px;
}
