:root {
    --color-primary: #5B3000;
    --color-light: #F0E7D8;
    --color-accent: #DE6E27;
    --color-dark: #2D3047;
    --color-white: #FFFFFF;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(91, 48, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-left: -0.15rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    color: var(--color-primary);
    font-family: var(--font-display);
}

.logo-accent {
    color: var(--color-accent);
    font-family: var(--font-display);
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-accent);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    overflow: hidden;
}

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

.hero-content--redesign {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(91, 48, 0, 0.1);
}

.hero-badge {
    display: inline-block;
    background: rgba(222, 110, 39, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(222, 110, 39, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.title-highlight {
    color: var(--color-accent);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-display);
    text-transform: capitalize;
}

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

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-robot-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Floating Social Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-heart {
    top: 5%;
    left: 5%;
    animation: iconFloat1 5s ease-in-out infinite;
}

.icon-thumbsup {
    top: 15%;
    right: 0%;
    animation: iconFloat2 6s ease-in-out infinite 0.5s;
}

.icon-instagram {
    top: 50%;
    right: 2%;
    animation: iconFloat3 5.5s ease-in-out infinite 1s;
}

.icon-tiktok {
    bottom: 10%;
    right: 10%;
    animation: iconFloat1 6.5s ease-in-out infinite 1.5s;
}

.icon-share {
    bottom: 5%;
    left: 10%;
    animation: iconFloat2 5s ease-in-out infinite 0.8s;
}

.icon-star {
    top: 40%;
    left: -5%;
    animation: iconFloat3 5.5s ease-in-out infinite 0.3s;
}

.icon-comment {
    bottom: 15%;
    left: 0%;
    animation: iconFloat1 6s ease-in-out infinite 1.2s;
}

.icon-bell {
    top: -2%;
    right: 30%;
    animation: iconFloat2 5.5s ease-in-out infinite 0.6s;
}

@keyframes iconFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes iconFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-14px) rotate(-5deg); }
    66% { transform: translateY(-6px) rotate(4deg); }
}

@keyframes iconFloat3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-8px); }
    50% { transform: translateX(-3px) translateY(-12px); }
    75% { transform: translateX(4px) translateY(-4px); }
}

.visual-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(91, 48, 0, 0.1);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.card-5, .card-6 {
    grid-column: 1 / -1;
}

.sales-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, #C85A1F 100%);
    border-color: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.sales-card::before {
    content: '⭐';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.25rem;
    opacity: 0.9;
}

.sales-card .metric-number {
    color: var(--color-white);
}

.sales-card .metric-label {
    color: var(--color-white);
}

.sales-card .metric-definition {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    font-weight: 500;
}

.sales-card .metric-trend {
    color: var(--color-white);
}

.sales-card .metric-trend svg {
    stroke: var(--color-white);
}

.sales-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.card-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.1) 100%);
    border-radius: 15px;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.card-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.metric-card {
    flex-direction: column;
    align-items: flex-start;
}

.metric-content {
    width: 100%;
}

.metric-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.metric-definition {
    font-size: 0.7rem;
    color: var(--color-gray);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #10B981;
    font-weight: 700;
    font-size: 0.75rem;
}

.metric-trend svg {
    stroke: #10B981;
}

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

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    bottom: -150px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.section-badge {
    display: inline-block;
    background: rgba(222, 110, 39, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(222, 110, 39, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.service-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card.featured .service-title {
    color: var(--color-white);
}

.service-description {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(222, 110, 39, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.service-card.featured .service-features li::before {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.cta-section.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-top .hero-cta {
        justify-content: center;
    }
    
    .hero-top .hero-rating {
        justify-content: center;
    }
    
    .hero-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        height: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        order: -1;
    }
    
    .hero-robot-img {
        max-width: 280px;
    }
    
    .hero-bottom {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    padding: 0.5rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-accent);
}

.nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
}

.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(222, 110, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(222, 110, 39, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.robot-assistant {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    transform: translateY(200px);
    opacity: 0;
    pointer-events: none;
    transition: bottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                right 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    will-change: transform, opacity;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .robot-assistant {
        transition: bottom 0.3s ease, right 0.3s ease, opacity 0.3s ease;
    }
    .robot-assistant.floating {
        animation: none !important;
    }
    .robot-assistant.excited .robot-body {
        animation: none !important;
    }
    .robot-assistant.excited .robot-antenna::after {
        animation: antennaBlink 2s ease-in-out infinite !important;
    }
}

.robot-assistant.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.robot-assistant.fly-in {
    animation: robotFlyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.robot-assistant.fly-away {
    animation: robotFlyAway 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

.robot-assistant.floating {
    animation: robotFloat 3s ease-in-out infinite;
}

.robot-assistant.moving {
    animation: none;
}

@keyframes robotFlyIn {
    0% {
        transform: translateY(200px) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(-25px) rotate(5deg) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translateY(5px) rotate(-2deg) scale(0.98);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes robotFlyAway {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(200px) rotate(10deg);
        opacity: 0;
    }
}

.robot-assistant:hover {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.robot-assistant.floating:hover {
    animation-play-state: paused;
}

.robot-assistant:hover .speech-bubble {
    opacity: 1;
    transform: translateY(0);
}

.robot-assistant.moving:hover {
    transform: none;
}

@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.robot-body {
    position: relative;
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #C85A1F 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(222, 110, 39, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.robot-antenna {
    width: 3px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 3px;
    position: relative;
    margin-bottom: 4px;
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: antennaBlink 2s ease-in-out infinite;
}

@keyframes antennaBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--color-accent);
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 4px var(--color-accent);
    }
}

.robot-head {
    width: 45px;
    height: 40px;
    background: var(--color-white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    position: relative;
}

.robot-eyes {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.robot-eye {
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: eyeBlink 4s ease-in-out infinite;
}

.robot-eye.right {
    animation-delay: 0.1s;
}

.pupil {
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

@keyframes eyeBlink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

.robot-mouth {
    width: 20px;
    height: 8px;
    border: 2px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.robot-assistant.excited .robot-mouth {
    width: 24px;
    height: 12px;
    border-radius: 0 0 12px 12px;
}

.robot-assistant.excited .robot-body {
    animation: robotJump 0.5s ease-in-out infinite;
}

@keyframes robotJump {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-4px) scale(1.02, 0.98);
    }
    50% {
        transform: translateY(-8px) scale(1.05, 0.95);
    }
    75% {
        transform: translateY(-4px) scale(1.02, 0.98);
    }
}

.robot-assistant.excited .robot-antenna::after {
    animation: antennaExcited 0.3s ease-in-out infinite;
}

@keyframes antennaExcited {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
    }
}

.speech-bubble {
    background: var(--color-white);
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-accent);
    position: relative;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 240px;
    min-width: 180px;
    will-change: transform, opacity;
}

.speech-bubble.active {
    opacity: 1;
    transform: translateY(0);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-accent);
}

.speech-close {
    position: absolute;
    top: 2px;
    right: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.1rem;
    color: var(--color-gray);
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    border-radius: 50%;
    z-index: 10;
}

.speech-close:hover {
    color: var(--color-accent);
    background: rgba(222, 110, 39, 0.1);
}

.speech-bubble p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    padding-right: 20px;
    line-height: 1.4;
}

.visual-card.metric-card {
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
}

.visual-card.metric-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

.visual-card.metric-card:nth-child(3) {
    animation-delay: 0.3s;
}

.visual-card.metric-card:nth-child(4) {
    animation-delay: 0.4s;
}

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

.visual-card.metric-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.metric-number {
    position: relative;
    overflow: hidden;
}

.metric-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 110, 39, 0.3), transparent);
    animation: numberScan 3s ease-in-out infinite;
}

@keyframes numberScan {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .robot-assistant {
        bottom: 1rem;
        right: 1rem;
        transform: translateY(150px) scale(0.8);
    }
    
    .robot-assistant.visible {
        transform: translateY(0) scale(0.8);
    }
    
    .speech-bubble {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
        max-width: 200px;
        min-width: 160px;
    }
    
    .speech-bubble p {
        font-size: 0.75rem;
        padding-right: 18px;
    }
    
    .speech-close {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        top: 2px;
        right: 4px;
    }
    
    .digital-grid {
        background-size: 30px 30px;
    }
}

.services-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    text-align: center;
}

.services-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 900;
}

.services-hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 0;
    background: var(--color-white);
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-overview .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.services-overview .section-description {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card .service-icon {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-card .service-title {
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.service-card .service-description {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-card .service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .btn-secondary {
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.service-card.featured .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.service-card.featured .btn-primary:hover {
    background: transparent;
    color: var(--color-white);
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.web-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-icon.social-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.service-card-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card-description {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-highlights {
    list-style: none;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.service-highlights li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.pricing-category {
    margin-bottom: 6rem;
}

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

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

.category-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.category-description {
    font-size: 1.125rem;
    color: var(--color-gray);
}

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

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-tier {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-card.featured .pricing-tier {
    color: var(--color-white);
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-light);
}

.pricing-card.featured .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-accent);
    font-weight: 900;
    display: block;
    line-height: 1;
}

.pricing-card.featured .price-amount {
    color: var(--color-white);
}

.price-period {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--color-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(222, 110, 39, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.pricing-card.featured .pricing-features li::before {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.pricing-features li.feature-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-light);
}

.pricing-features li.feature-group:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li.feature-group {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.feature-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray);
}

.pricing-card.featured .feature-label {
    color: rgba(255, 255, 255, 0.7);
}

.feature-value {
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.pricing-card.featured .feature-value {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features li strong {
    font-weight: 700;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .services-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 0 3rem;
    }
    
    .services-hero-title {
        font-size: 2.25rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .services-overview .section-title,
    .how-it-works .section-title,
    .services-faq .section-title {
        font-size: 2rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.how-it-works .section-header,
.services-faq .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works .section-title,
.services-faq .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.how-it-works .section-description,
.services-faq .section-description {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), var(--color-primary));
    z-index: 0;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(222, 110, 39, 0.3);
}

.step-content h4 {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services FAQ Section */
.services-faq {
    padding: 6rem 0;
    background: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-card.highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.faq-card.highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.faq-card h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.faq-card.highlight h4 {
    color: var(--color-white);
}

.faq-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.faq-card .btn-small {
    margin-top: 0.5rem;
}

/* Services Trust Section */
.services-trust {
    padding: 4rem 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-light);
}

.services-trust .trust-label {
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.trust-logos-static {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-weight: 600;
    color: var(--color-gray);
    opacity: 0.6;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.trust-logo-item:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-logos-static {
        gap: 1.5rem;
    }
}

/* Sticky CTA Banner */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 2px solid var(--color-accent);
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1280px;
    width: 100%;
    justify-content: space-between;
}

.sticky-text {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.sticky-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray);
    padding: 0.5rem;
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .sticky-text {
        font-size: 0.9rem;
    }
}

/* Homepage Additional Services */
.additional-services-home {
    margin-top: 3rem;
    padding-top: 2rem;
}

.additional-services-home .additional-services-title {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.additional-services-home .mini-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.additional-services-home .mini-service-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.additional-services-home .mini-service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.additional-services-home .mini-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.additional-services-home .mini-service-icon.ads-icon {
    background: linear-gradient(135deg, #4267B2 0%, #898F9C 100%);
}

.additional-services-home .mini-service-icon.mobile-icon {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
}

.additional-services-home .mini-service-card h4 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.additional-services-home .mini-service-card p {
    color: var(--color-gray);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .additional-services-home .mini-service-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Services Grid - 4 Cards */
.services-grid.four-cards {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .services-grid.four-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid.four-cards {
        grid-template-columns: 1fr;
    }
}

/* Bento Grid Services */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(45, 48, 71, 0.95) 0%, rgba(22, 24, 40, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    outline: none;
}

/* Rotating conic border glow */
.bento-glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: conic-gradient(from 0deg, transparent 55%, rgba(222, 110, 39, 0.5) 70%, rgba(222, 110, 39, 0.8) 75%, rgba(222, 110, 39, 0.5) 80%, transparent 95%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    animation: bento-glow-spin 3s linear infinite paused;
}

.bento-card:hover .bento-glow,
.bento-card:focus .bento-glow,
.bento-card.expanded .bento-glow {
    opacity: 1;
    animation-play-state: running;
}

@keyframes bento-glow-spin {
    to { transform: rotate(360deg); }
}

/* Inner fill to mask glow behind content */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    background: linear-gradient(160deg, rgba(45, 48, 71, 0.98) 0%, rgba(20, 22, 38, 1) 100%);
    z-index: 1;
}

/* Circuit board SVG pattern */
.bento-circuit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-circuit,
.bento-card.expanded .bento-circuit {
    opacity: 1;
}

/* Pulsing circuit nodes */
.circuit-node {
    animation: circuit-pulse 2.5s ease-in-out infinite;
}

.bento-card:nth-child(2) .circuit-node { animation-delay: 0.4s; }
.bento-card:nth-child(3) .circuit-node { animation-delay: 0.8s; }
.bento-card:nth-child(4) .circuit-node { animation-delay: 1.2s; }

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.3; r: 2; }
    50% { opacity: 1; r: 4; }
}

/* Cursor-tracking inner glow */
.bento-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 110, 39, 0.1) 0%, transparent 70%);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover::after {
    opacity: 1;
}

/* Content */
.bento-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    color: #fff;
}

/* Status indicator row */
.bento-top-row {
    margin-bottom: 1.25rem;
}

.bento-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-body);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 6px rgba(222, 110, 39, 0.6), 0 0 12px rgba(222, 110, 39, 0.3);
    animation: status-blink 2s ease-in-out infinite;
    display: inline-block;
}

.status-dot.status-green {
    background: #28c840;
    box-shadow: 0 0 6px rgba(40, 200, 64, 0.6), 0 0 12px rgba(40, 200, 64, 0.3);
}

.status-dot.status-blue {
    background: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6), 0 0 12px rgba(59, 130, 246, 0.3);
}

.status-dot.status-purple {
    background: #8b5cf6;
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.6), 0 0 12px rgba(139, 92, 246, 0.3);
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.bento-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.12) 0%, rgba(222, 110, 39, 0.03) 100%);
    border: 1px solid rgba(222, 110, 39, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-icon,
.bento-card.expanded .bento-icon {
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.22) 0%, rgba(222, 110, 39, 0.08) 100%);
    border-color: rgba(222, 110, 39, 0.35);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(222, 110, 39, 0.15);
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.bento-card:hover .bento-title,
.bento-card.expanded .bento-title {
    color: var(--color-accent);
}

/* Playful tagline */
.bento-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    transition: color 0.3s ease;
}

.bento-card:hover .bento-tagline,
.bento-card.expanded .bento-tagline {
    color: rgba(255, 255, 255, 0.6);
}

/* Expandable content */
.bento-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s, margin-top 0.4s ease;
    margin-top: 0;
}

.bento-card:hover .bento-expand,
.bento-card:focus .bento-expand,
.bento-card.expanded .bento-expand {
    max-height: 280px;
    opacity: 1;
    margin-top: 1.25rem;
}

.bento-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(222, 110, 39, 0.25) 0%, rgba(255, 255, 255, 0.04) 100%);
    margin-bottom: 1.25rem;
}

.bento-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.bento-features li {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.bento-card:hover .bento-features li,
.bento-card.expanded .bento-features li {
    color: rgba(255, 255, 255, 0.75);
}

.bento-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(222, 110, 39, 0.5);
}

/* CTA link */
.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.bento-cta:hover {
    gap: 0.85rem;
    color: #f0853a;
}

.bento-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

.bento-cta:hover .bento-arrow {
    transform: translateX(5px);
}

/* Scroll-in animations */
.bento-card {
    opacity: 0;
    transform: translateY(40px);
}

.bento-card.slide-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.15s; }
.bento-card:nth-child(3) { transition-delay: 0.3s; }
.bento-card:nth-child(4) { transition-delay: 0.45s; }

.bento-card.slide-in:hover,
.bento-card.slide-in:focus,
.bento-card.slide-in.expanded {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(222, 110, 39, 0.06);
    border-color: rgba(222, 110, 39, 0.15);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-content {
        padding: 1.75rem;
    }

    .bento-card:hover .bento-expand,
    .bento-card:focus .bento-expand,
    .bento-card.expanded .bento-expand {
        max-height: 300px;
    }
}

/* ============================================
   Service Detail Pages
   ============================================ */

/* Service Hero */
.svc-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: var(--color-dark);
    overflow: hidden;
}

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

.svc-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.svc-hero-shapes .shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 110, 39, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.svc-hero-shapes .shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 110, 39, 0.05) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

/* Breadcrumb */
.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.svc-breadcrumb a:hover {
    color: var(--color-accent);
}

.svc-breadcrumb span:not(:last-child) {
    color: rgba(255, 255, 255, 0.25);
}

.svc-breadcrumb span:last-child {
    color: var(--color-accent);
}

.svc-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.svc-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.svc-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Problem Section */
.svc-problem {
    padding: 5rem 0;
    background: var(--color-white);
}

.svc-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-light);
    background: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(222, 110, 39, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(222, 110, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.65;
}

/* Features Section */
.svc-features {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.svc-features.svc-features-alt {
    background: var(--color-white);
}

.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.svc-feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-features.svc-features-alt .svc-feature-card {
    background: var(--color-gray-light);
}

.svc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(222, 110, 39, 0.2);
}

.svc-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.1) 0%, rgba(222, 110, 39, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.svc-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.svc-feature-card p {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.65;
}

/* Process Timeline */
.svc-process {
    padding: 5rem 0;
    background: var(--color-dark);
}

.svc-process .section-badge,
.svc-process .section-title,
.svc-process .section-description {
    color: #fff;
}

.svc-process .section-badge {
    color: var(--color-accent);
}

.svc-process .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.svc-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.svc-process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(222, 110, 39, 0.3) 0%, rgba(222, 110, 39, 0.1) 100%);
}

.svc-process-step {
    text-align: center;
    position: relative;
}

.svc-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c45a1a 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(222, 110, 39, 0.3);
}

.svc-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.svc-step-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Service Pricing */
.svc-pricing {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

/* Custom Pricing Card (for Ads & Mobile) */
.svc-custom-pricing {
    max-width: 640px;
    margin: 3rem auto 0;
}

.custom-pricing-card {
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.custom-pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.custom-pricing-details {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-light);
}

.pricing-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    min-width: 140px;
}

.detail-value {
    font-size: 0.88rem;
    color: var(--color-gray);
    text-align: right;
    line-height: 1.5;
}

/* FAQ Section */
.svc-faq {
    padding: 5rem 0;
    background: var(--color-white);
}

.svc-faq-list {
    max-width: 720px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-faq-item {
    border-bottom: 1px solid var(--color-light);
}

.svc-faq-item summary {
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.svc-faq-item summary::-webkit-details-marker {
    display: none;
}

.svc-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.svc-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.svc-faq-item summary:hover {
    color: var(--color-accent);
}

.svc-faq-item p {
    padding: 0 0 1.25rem;
    font-size: 0.92rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Platform Cards (Ads page) */
.svc-platforms {
    padding: 5rem 0;
    background: var(--color-white);
}

.svc-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-light);
    background: var(--color-white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(222, 110, 39, 0.2);
}

.platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(222, 110, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-accent);
}

.platform-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.platform-card p {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* App Type Cards (Mobile page) */
.svc-app-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.app-type-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-light);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.app-type-card:hover {
    border-color: rgba(222, 110, 39, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.app-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c45a1a 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.app-type-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.app-type-desc {
    font-size: 0.92rem;
    color: var(--color-gray);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.app-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-type-features li {
    font-size: 0.88rem;
    color: var(--color-dark);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.app-type-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}

.app-type-best {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid var(--color-light);
}

/* Service Page Responsive */
@media (max-width: 1024px) {
    .svc-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-process-timeline::before {
        display: none;
    }

    .svc-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 8rem 0 3.5rem;
    }

    .svc-problem-grid,
    .svc-features-grid {
        grid-template-columns: 1fr;
    }

    .svc-process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .svc-process-step {
        text-align: left;
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .svc-step-number {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    .svc-platforms-grid {
        grid-template-columns: 1fr;
    }

    .svc-app-types-grid {
        grid-template-columns: 1fr;
    }

    .svc-hero-cta {
        flex-direction: column;
    }

    .svc-hero-cta .btn-large {
        text-align: center;
    }

    .pricing-detail-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-value {
        text-align: left;
    }
}

/* ============================================
   Careers Page
   ============================================ */

/* Perks Grid */
.careers-why {
    padding: 5rem 0;
    background: var(--color-white);
}

.careers-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.careers-perk {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-light);
    background: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.careers-perk:hover {
    border-color: rgba(222, 110, 39, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.careers-perk-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.1) 0%, rgba(222, 110, 39, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.careers-perk h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.careers-perk p {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.65;
}

/* Open Positions */
.careers-openings {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.careers-listings {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Career Card */
.career-card {
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    border-color: rgba(222, 110, 39, 0.2);
}

.career-card.open {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(222, 110, 39, 0.3);
}

.career-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.career-card-header:hover {
    background: rgba(222, 110, 39, 0.02);
}

/* Role Icon */
.career-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.1) 0%, rgba(222, 110, 39, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.career-card-info {
    flex: 1;
    min-width: 0;
}

.career-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.career-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.career-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.career-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(222, 110, 39, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Summary line */
.career-card-summary {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 0.65rem;
}

/* Meta row */
.career-card-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.career-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-gray);
}

.career-meta-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.career-card-toggle {
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.career-card.open .career-card-toggle {
    transform: rotate(180deg);
}

/* Career Card Body (collapsed by default) */
.career-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.career-card.open .career-card-body {
    max-height: 2000px;
    padding: 0 2rem 2rem;
}

.career-section {
    margin-bottom: 1.75rem;
}

.career-section:last-of-type {
    margin-bottom: 1.5rem;
}

.career-section h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-light);
}

.career-section p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.career-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.career-section ul li {
    font-size: 0.88rem;
    color: var(--color-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.career-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Career Details Grid */
.career-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.career-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.career-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.career-detail-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
}

/* Apply Section */
.career-apply {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-light);
    text-align: center;
}

.career-apply-note {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--color-gray);
}

.career-apply-note a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.career-apply-note a:hover {
    text-decoration: underline;
}

/* General Info Section */
.careers-info {
    padding: 4rem 0;
    background: var(--color-white);
}

.careers-info-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.careers-info-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.careers-info-content p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.careers-info-content a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.careers-info-content a:hover {
    text-decoration: underline;
}

/* Careers Responsive */
@media (max-width: 1024px) {
    .careers-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-perks-grid {
        grid-template-columns: 1fr;
    }

    .career-card-header {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .career-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .career-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .career-card-meta {
        gap: 0.75rem;
    }

    .career-card-body {
        padding: 0 1.5rem;
    }

    .career-card.open .career-card-body {
        padding: 0 1.5rem 1.5rem;
    }

    .career-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Case Study Modal System
   ============================================ */

/* Modal Base */
.case-study-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.case-study-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* Modal Container */
.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.case-study-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
    color: var(--color-dark);
}

.modal-close:hover {
    background: var(--color-gray-light);
    transform: rotate(90deg);
}

/* Modal Content */
.modal-content {
    overflow-y: auto;
    max-height: 90vh;
    padding: 0;
}

/* Modal Hero */
.modal-hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b85a2a 100%);
    color: var(--color-white);
    padding: 3rem 2.5rem;
    text-align: center;
}

.modal-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    background: var(--color-white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Modal Overview */
.modal-overview {
    padding: 2rem 2.5rem;
    background: var(--color-gray-light);
    border-bottom: 1px solid var(--color-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.overview-item {
    display: flex;
    flex-direction: column;
}

.overview-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.overview-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

.tech-stack {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray);
    margin-right: 0.5rem;
}

.tech-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-accent);
    background: rgba(222, 110, 39, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
}

/* Modal Sections */
.modal-section {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--color-light);
}

.modal-section:last-of-type {
    border-bottom: none;
}

.modal-section h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.modal-section p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.modal-section p:last-of-type {
    margin-bottom: 0;
}

.modal-section ul,
.modal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-section li {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.modal-section li:last-child {
    margin-bottom: 0;
}

.modal-section li strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* Modal Results */
.modal-results {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.05) 0%, rgba(222, 110, 39, 0.02) 100%);
    border-bottom: 1px solid var(--color-light);
}

.modal-results h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.result-card {
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.result-card-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}

.result-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.3;
}

/* Modal Quote */
.modal-quote {
    background: var(--color-gray-light);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.modal-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-quote cite {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray);
    font-style: normal;
}

/* Modal CTA */
.modal-cta {
    padding: 2rem 2.5rem;
    text-align: center;
    background: var(--color-gray-light);
}

/* Portfolio Card Cursor */
.portfolio-card {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-hero {
        padding: 2rem 1.5rem;
    }

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

    .modal-subtitle {
        font-size: 0.95rem;
    }

    .modal-overview,
    .modal-section,
    .modal-results,
    .modal-cta {
        padding: 1.5rem;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-card {
        padding: 1.25rem 0.75rem;
    }

    .result-card-number {
        font-size: 1.4rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

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

    .tech-stack {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   Draft Companion Case Study
   ============================================ */

.case-study-draft-companion {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.case-study-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.case-study-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(222, 110, 39, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.case-study-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.case-study-intro {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-block {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-light);
}

.case-study-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.case-study-block p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.case-study-block p:last-of-type {
    margin-bottom: 0;
}

.case-study-block ul,
.case-study-block ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.case-study-block li {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.case-study-block li:last-child {
    margin-bottom: 0;
}

.case-study-block li strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* Highlight boxes within blocks */
.case-study-highlight {
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.08) 0%, rgba(222, 110, 39, 0.03) 100%);
    border: 1px solid rgba(222, 110, 39, 0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.highlight-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

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

.highlight-quote {
    padding: 1.5rem 2rem;
}

.highlight-quote .highlight-label {
    display: block;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.highlight-quote .highlight-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray);
}

/* Stats row */
.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.case-stat {
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.4;
}

/* CTA buttons */
.case-study-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light);
}

/* Responsive */
@media (max-width: 768px) {
    .case-study-title {
        font-size: 1.6rem;
    }

    .case-study-block {
        padding: 1.5rem;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-study-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .case-study-cta .btn-primary,
    .case-study-cta .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.portfolio-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Differentiators Section */
.differentiators-section {
    padding: 6rem 0;
    background: var(--color-gray-light);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.diff-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.diff-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.diff-icon {
    width: 100%;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.diff-icon img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.diff-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.diff-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
}

/* Who Section */
.who-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.who-card {
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.who-card.good-fit {
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.05) 0%, rgba(222, 110, 39, 0.1) 100%);
    border: 2px solid var(--color-accent);
}

.who-card.not-fit {
    background: var(--color-gray-light);
    border: 2px solid var(--color-light);
}

.who-card-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.who-card.good-fit .who-card-title svg {
    color: var(--color-accent);
}

.who-card.not-fit .who-card-title svg {
    color: var(--color-gray);
}

.who-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.who-list li {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.good-fit .who-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.not-fit .who-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-icon {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.services-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--color-light);
    padding: 0.5rem;
    border-radius: 12px;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: var(--color-dark);
}

.tab-btn.active {
    background: var(--color-white);
    color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.service-detail-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xl);
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-icon.ads-icon {
    background: linear-gradient(135deg, #4267B2 0%, #898F9C 100%);
    color: white;
}

.service-icon.mobile-icon {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    color: white;
}

.service-detail-card .btn-primary {
    margin-top: 1.5rem;
}

/* Pricing Preview Cards in Service Tabs */
.pricing-preview {
    background: var(--color-light);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-preview-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.preview-tier {
    background: var(--color-white);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.preview-tier:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.preview-tier.featured {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(222, 110, 39, 0.15);
}

.preview-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.preview-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.preview-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.preview-note {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
}

/* Custom Pricing Box (for Ads & Mobile) */
.pricing-preview.custom-pricing {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
}

.custom-pricing-content {
    text-align: center;
}

.custom-pricing-content svg {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.custom-pricing-content h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.custom-pricing-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .tabs-nav {
        gap: 0.25rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .pricing-preview-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .preview-tier {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0.75rem 1rem;
    }
    
    .preview-badge {
        position: static;
        transform: none;
        margin-left: 0.5rem;
    }
    
    .preview-name {
        margin-bottom: 0;
        flex: 1;
    }
    
    .preview-price {
        margin: 0 0.75rem;
    }
    
    .preview-note {
        text-align: right;
    }
}

/* Pricing Quick Navigation */
.pricing-quick-nav {
    position: sticky;
    top: 80px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-light);
    padding: 1rem 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.quick-nav-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-nav-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray);
}

.quick-nav-link {
    font-size: 0.9rem;
    color: var(--color-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--color-light);
    transition: var(--transition);
    font-weight: 500;
}

.quick-nav-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .pricing-quick-nav {
        top: 70px;
        padding: 0.75rem 0;
    }
    
    .quick-nav-content {
        gap: 0.75rem;
    }
    
    .quick-nav-link {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Pricing Info Buttons & Expandable Panels */
.category-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.info-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-light);
    background: var(--color-white);
    color: var(--color-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.info-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: scale(1.1);
}

.info-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.service-info-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.05) 100%);
    border-radius: 16px;
    margin-top: 0;
}

.service-info-panel.active {
    max-height: 500px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.info-panel-content h4 {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.info-panel-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.info-highlights li {
    color: var(--color-dark);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.info-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Additional Services Mini Cards */
.additional-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-light);
}

.additional-services-title {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mini-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mini-service-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

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

.mini-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.mini-service-icon.ads-icon {
    background: linear-gradient(135deg, #4267B2 0%, #898F9C 100%);
}

.mini-service-icon.mobile-icon {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
}

.mini-service-card h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mini-service-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .category-title-wrapper {
        flex-wrap: wrap;
    }
    
    .info-highlights {
        grid-template-columns: 1fr;
    }
    
    .mini-service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-info-panel.active {
        padding: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover,
.testimonial-card.featured {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--color-primary);
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Work/Portfolio Page */
.work-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.work-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.work-hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 900;
}

.work-hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
}

.work-hero-shapes .shape {
    opacity: 0.1;
}

.portfolio-filters {
    padding: 2rem 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-light);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 2px solid var(--color-light);
    color: var(--color-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.portfolio-grid-section {
    padding: 4rem 0;
    background: var(--color-white);
}

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

.portfolio-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.web-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.brand-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-view-btn {
    transform: translateY(0);
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    display: inline-block;
    background: rgba(222, 110, 39, 0.1);
    color: var(--color-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.portfolio-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.portfolio-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-results {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-light);
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-display);
}

.result-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.results-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.result-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: 900;
    display: block;
}

.result-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.client-logos {
    padding: 4rem 0;
    background: var(--color-white);
}

.logos-title {
    text-align: center;
    color: var(--color-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.client-logos .container {
    overflow: hidden;
    position: relative;
}

.client-logos .container::before,
.client-logos .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.client-logos .container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-light), transparent);
}

.client-logos .container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-light), transparent);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    font-weight: 600;
    color: var(--color-gray);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-item:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .result-stat-number {
        font-size: 1.75rem;
    }
    
    .portfolio-filters {
        top: 70px;
    }
}

/* About Page */
.about-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    overflow: hidden;
}

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

.about-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 900;
}

.about-hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
}

.mission-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.mission-content {
    max-width: 600px;
}

.mission-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.mission-text {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(222, 110, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.value-content h4 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.value-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.mission-stats-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--color-white);
}

.stat-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.mission-stat {
    flex: 1;
}

.mission-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
}

.mission-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-row.full-width {
    flex-direction: column;
}

.mission-visual .browser-mockup {
    transform: scale(0.65);
    transform-origin: top left;
}

.mission-stats-card .team-photo-frame {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.mission-stats-card .team-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.climate-commitment {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.climate-commitment iframe {
    border-radius: 8px;
    max-width: 100%;
}

.contribution-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-style: italic;
}

.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.15) 100%);
    border: 3px solid rgba(222, 110, 39, 0.2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
}

.avatar-placeholder,
.avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

.team-name {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-role {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--color-accent);
}

.why-choose-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-content {
    position: sticky;
    top: 120px;
}

.why-choose-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 900;
}

.why-choose-description {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.why-card-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.why-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .mission-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content {
        position: static;
    }
    
    .mission-stats-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-cards {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .mission-title,
    .why-choose-title {
        font-size: 1.75rem;
    }
    
    .stat-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact Page */
.contact-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 900;
}

.contact-hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
}

.contact-section {
    padding: 4rem 0 6rem;
    background: var(--color-white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2rem;
}

.info-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-card > p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(222, 110, 39, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

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

.info-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--color-accent);
}

.social-connect h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
    opacity: 0.6;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-custom::after {
    content: '✓';
    color: var(--color-white);
    font-size: 0.75rem;
    display: none;
}

.checkbox-label input:checked + .checkbox-custom::after {
    display: block;
}

.checkbox-text {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-loader {
    display: none;
    animation: spin 1s linear infinite;
}

.btn-loader svg {
    stroke: currentColor;
}

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

#submitBtn.loading .btn-text {
    display: none;
}

#submitBtn.loading .btn-loader {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #22c55e;
}

.form-success h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
}

/* Utility */
.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hero Styles */

/* Gradient text headline */
.hero-title {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, #C85A1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-highlight {
    -webkit-text-fill-color: var(--color-accent);
    background: none;
}

/* Title rotator */
.title-rotator {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.rotator-word {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    -webkit-text-fill-color: var(--color-accent);
    background: none;
}

.rotator-word.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.rotator-word.exit {
    opacity: 0;
    transform: translateY(-100%);
}

/* Hero tagline */
.hero-tagline {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Hero rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1.25rem;
    background: rgba(222, 110, 39, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(222, 110, 39, 0.15);
    width: fit-content;
}

.hero-rating .stars {
    display: flex;
    gap: 0.15rem;
    color: var(--color-accent);
}

.hero-rating .rating-text {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.hero-rating .rating-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Hero trust bar */
.hero-trust {
    margin-bottom: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(91, 48, 0, 0.1);
}

.trust-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo-img[data-client] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.trust-logo-img[data-client]:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.trust-logo-img.trust-logo-dark-bg {
    background: var(--color-dark);
    border-radius: 8px;
    padding: 4px 8px;
}

.trust-logo {
    font-size: 0.95rem;
    color: var(--color-gray);
    opacity: 0.7;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gray);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gray);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(8px);
    }
}

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

/* Gradient orbs for background */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-accent) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(222, 110, 39, 0.5) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Magnetic button effect */
.magnetic-btn {
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.magnetic-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.magnetic-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced parallax for metric cards */
.hero-visual .visual-card {
    will-change: transform;
}

/* Sequential stat animation */
.hero-stats .stat {
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.6s ease forwards;
}

.hero-stats .stat:nth-child(1) {
    animation-delay: 0.8s;
}

.hero-stats .stat:nth-child(2) {
    animation-delay: 1s;
}

.hero-stats .stat:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Team Preview Section (Hero Area) */
.hero-visual.team-preview {
    background: var(--color-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(91, 48, 0, 0.1);
    max-width: 420px;
    margin-left: auto;
}

.team-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(91, 48, 0, 0.1);
}

.team-preview-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-preview-link {
    font-size: 0.875rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.team-preview-link:hover {
    gap: 0.5rem;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.team-preview-member {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.team-preview-member:hover {
    background: rgba(222, 110, 39, 0.08);
    transform: translateY(-2px);
}

.team-preview-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.1) 100%);
    border: 2px solid rgba(222, 110, 39, 0.2);
}

.team-preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-preview-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.15) 100%);
}

.team-preview-info {
    min-width: 0;
}

.team-preview-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-preview-role {
    font-size: 0.8rem;
    color: var(--color-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-preview-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(91, 48, 0, 0.1);
}

.team-preview-cta p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.team-preview-cta strong {
    color: var(--color-accent);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-visual.team-preview {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-visual.team-preview {
        display: none;
    }
}

@media (max-width: 480px) {
    .team-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .team-preview-member {
        padding: 0.5rem;
    }
}

/* Responsive updates for hero enhancements */
@media (max-width: 768px) {
    .hero-rating {
        padding: 0.6rem 1rem;
    }
    
    .hero-rating .rating-text {
        font-size: 0.8rem;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .trust-logo {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .title-rotator {
        height: 1.3em;
    }
}

@media (max-width: 480px) {
    .hero-trust {
        margin-bottom: 2rem;
    }
    
    .trust-logos {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .trust-logo {
        font-size: 0.8rem;
    }
}

/* Live Metrics Dashboard */
.metrics-dashboard {
    background: var(--color-white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(91, 48, 0, 0.1);
    max-width: 420px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.metrics-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.dashboard-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-card-large {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.metric-card-large .metric-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.metric-card-large .metric-icon svg {
    color: var(--color-accent);
}

.metric-value-container {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.metric-prefix,
.metric-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.metric-number-large {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.metric-label-large {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #4ade80;
}

.metric-change.negative {
    color: #ef4444;
}

.sparkline-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    opacity: 0.3;
}

.sparkline-chart svg {
    width: 100%;
    height: 100%;
}

.sparkline-line {
    color: var(--color-accent);
}

.metric-card-medium {
    background: rgba(222, 110, 39, 0.08);
    border: 1px solid rgba(222, 110, 39, 0.15);
    border-radius: 12px;
    padding: 1rem;
}

.metric-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-icon-small {
    width: 36px;
    height: 36px;
    background: rgba(222, 110, 39, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon-small svg {
    color: var(--color-accent);
}

.metric-value-medium {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.metric-value-medium .metric-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
}

.metric-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
}

.metric-label-medium {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
}

.progress-bar {
    height: 6px;
    background: rgba(222, 110, 39, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-accent);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
}

.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.mini-bar-chart .bar {
    flex: 1;
    background: var(--color-accent);
    border-radius: 2px 2px 0 0;
    opacity: 0.6;
    transition: height 1s ease-out;
}

.mini-bar-chart .bar:nth-child(odd) {
    opacity: 0.8;
}

.mini-bar-chart .bar:last-child {
    opacity: 1;
    background: var(--color-primary);
}

.dashboard-stats-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.stat-pill {
    flex: 1;
    background: var(--color-light);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}

.stat-number-small {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-suffix-small {
    font-size: 0.75rem;
    color: var(--color-gray);
}

.stat-label-small {
    display: block;
    font-size: 0.7rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(91, 48, 0, 0.1);
}

.dashboard-footer p {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 0;
}

.dashboard-footer strong {
    color: var(--color-accent);
}

.dashboard-link {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.dashboard-link:hover {
    text-decoration: underline;
}

/* Team Photo Container */
.team-photo-container {
    background: var(--color-white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(91, 48, 0, 0.1);
    max-width: 700px;
    width: 60%;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: scale(1.05);
}

.team-photo {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* Browser Mockup */
.browser-mockup {
    width: 160%;
    max-width: none;
    margin-left: auto;
    margin-right: -40%;
    margin-top: 1rem;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 2;
}

/* Desktop Mockup */
.desktop-mockup {
    width: 160%;
    max-width: none;
    margin-left: auto;
    margin-right: -40%;
    margin-top: 1rem;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 2;
}

.desktop-chrome {
    background: var(--color-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(91, 48, 0, 0.2),
        0 25px 80px rgba(0, 0, 0, 0.35),
        0 10px 30px rgba(91, 48, 0, 0.15);
    animation: frameFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.desktop-header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 12px;
}

.desktop-content {
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe5df 100%);
    min-height: 300px;
    padding: 1rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.desktop-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-start;
}

.desktop-folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
    min-width: 60px;
}

.desktop-folder svg {
    width: 32px;
    height: 32px;
}

.desktop-folder:hover {
    background: rgba(222, 110, 39, 0.1);
}

.desktop-folder.clicked {
    animation: folderClick 0.3s ease;
}

@keyframes folderClick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); }
}

.folder-label {
    color: var(--color-dark);
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
}

/* KPI Window */
.kpi-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 320px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: kpiWindowOpen 0.5s ease 2s forwards;
    z-index: 10;
}

@keyframes kpiWindowOpen {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.kpi-header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
    border-radius: 12px 12px 0 0;
}

.traffic-lights.small {
    margin-right: 10px;
}

.traffic-lights.small .light {
    width: 8px;
    height: 8px;
}

.kpi-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
}

.kpi-content {
    padding: 1.25rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.kpi-card {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(222, 110, 39, 0.1);
}

.kpi-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.kpi-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.kpi-change {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.kpi-change.positive {
    background: rgba(40, 200, 64, 0.15);
    color: #28c840;
}

/* Desktop Mouse Animation - see updated 4-folder version below */

.desktop-mouse .mouse-cursor {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Report Windows */
.report-window {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 280px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    z-index: 10;
}

#report-social {
    animation: reportCycle1 20s ease-in-out infinite;
}

#report-website {
    animation: reportCycle2 20s ease-in-out infinite;
}

#report-ads {
    animation: reportCycle3 20s ease-in-out infinite;
}

#report-instagram {
    animation: reportCycle4 20s ease-in-out infinite;
}

#report-2kdraft {
    animation: reportCycle5 20s ease-in-out infinite;
}

@keyframes reportCycle1 {
    0%, 2% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    5%, 17% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    20%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes reportCycle2 {
    0%, 20% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    23%, 37% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    40%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes reportCycle3 {
    0%, 40% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    43%, 57% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    60%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes reportCycle4 {
    0%, 60% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    63%, 77% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    80%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes reportCycle5 {
    0%, 80% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    83%, 95% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    98%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

.report-header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
    border-radius: 12px 12px 0 0;
}

.report-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
}

.report-content {
    padding: 1rem;
}

.report-chart {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    height: 100px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
}

.chart-bar.website {
    background: linear-gradient(180deg, #5B3000 0%, var(--color-dark) 100%);
}

.chart-bar.ads {
    background: linear-gradient(180deg, #28c840 0%, #1a8a2a 100%);
}

/* Staggered bar growth animation showing growth over time */
.chart-bar:nth-child(1) { animation: barGrowth1 20s ease-out infinite; }
.chart-bar:nth-child(2) { animation: barGrowth2 20s ease-out infinite; }
.chart-bar:nth-child(3) { animation: barGrowth3 20s ease-out infinite; }
.chart-bar:nth-child(4) { animation: barGrowth4 20s ease-out infinite; }
.chart-bar:nth-child(5) { animation: barGrowth5 20s ease-out infinite; }
.chart-bar:nth-child(6) { animation: barGrowth6 20s ease-out infinite; }

@keyframes barGrowth1 {
    0%, 4% { transform: scaleY(0); }
    7%, 17% { transform: scaleY(1); }
    20%, 23% { transform: scaleY(0); }
    26%, 37% { transform: scaleY(1); }
    40%, 43% { transform: scaleY(0); }
    46%, 57% { transform: scaleY(1); }
    60%, 100% { transform: scaleY(0); }
}

@keyframes barGrowth2 {
    0%, 5% { transform: scaleY(0); }
    9%, 17% { transform: scaleY(1); }
    20%, 24% { transform: scaleY(0); }
    28%, 37% { transform: scaleY(1); }
    40%, 44% { transform: scaleY(0); }
    48%, 57% { transform: scaleY(1); }
    60%, 100% { transform: scaleY(0); }
}

@keyframes barGrowth3 {
    0%, 6% { transform: scaleY(0); }
    11%, 17% { transform: scaleY(1); }
    20%, 25% { transform: scaleY(0); }
    30%, 37% { transform: scaleY(1); }
    40%, 45% { transform: scaleY(0); }
    50%, 57% { transform: scaleY(1); }
    60%, 100% { transform: scaleY(0); }
}

@keyframes barGrowth4 {
    0%, 7% { transform: scaleY(0); }
    12%, 17% { transform: scaleY(1); }
    20%, 26% { transform: scaleY(0); }
    32%, 37% { transform: scaleY(1); }
    40%, 46% { transform: scaleY(0); }
    52%, 57% { transform: scaleY(1); }
    60%, 100% { transform: scaleY(0); }
}

@keyframes barGrowth5 {
    0%, 8% { transform: scaleY(0); }
    13%, 17% { transform: scaleY(1); }
    20%, 27% { transform: scaleY(0); }
    34%, 37% { transform: scaleY(1); }
    40%, 47% { transform: scaleY(0); }
    54%, 57% { transform: scaleY(1); }
    60%, 100% { transform: scaleY(0); }
}

@keyframes barGrowth6 {
    0%, 9% { transform: scaleY(0); }
    14%, 17% { transform: scaleY(1); }
    20%, 28% { transform: scaleY(0); }
    36%, 37% { transform: scaleY(1); }
    40%, 48% { transform: scaleY(0); }
    56%, 57% { transform: scaleY(1); }
    60%, 100% { transform: scaleY(0); }
}

.report-stats {
    display: flex;
    justify-content: space-around;
}

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

.report-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
}

.report-label {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gray);
    margin-top: 0.15rem;
}

/* Update mouse animation to cycle through 5 folders horizontally */
.desktop-mouse {
    position: absolute;
    z-index: 20;
    animation: mouseToFolders 20s ease-in-out infinite;
}

@keyframes mouseToFolders {
    0%, 2% { top: 35%; left: 10%; }
    4%, 18% { top: 35%; left: 10%; }
    20% { top: 35%; left: 28%; }
    22%, 38% { top: 35%; left: 28%; }
    40% { top: 35%; left: 46%; }
    42%, 58% { top: 35%; left: 46%; }
    60% { top: 35%; left: 64%; }
    62%, 78% { top: 35%; left: 64%; }
    80% { top: 35%; left: 82%; }
    82%, 95% { top: 35%; left: 82%; }
    98%, 100% { top: 35%; left: 10%; }
}

.desktop-mouse .click-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: folderClicks 20s ease-in-out infinite;
}

@keyframes folderClicks {
    0%, 3% { transform: scale(0); opacity: 0; }
    4% { transform: scale(0); opacity: 1; }
    7% { transform: scale(2); opacity: 0; }
    20%, 22% { transform: scale(0); opacity: 0; }
    23% { transform: scale(0); opacity: 1; }
    26% { transform: scale(2); opacity: 0; }
    40%, 42% { transform: scale(0); opacity: 0; }
    43% { transform: scale(0); opacity: 1; }
    46% { transform: scale(2); opacity: 0; }
    60%, 62% { transform: scale(0); opacity: 0; }
    63% { transform: scale(0); opacity: 1; }
    66% { transform: scale(2); opacity: 0; }
    80%, 82% { transform: scale(0); opacity: 0; }
    83% { transform: scale(0); opacity: 1; }
    86% { transform: scale(2); opacity: 0; }
    100% { transform: scale(0); opacity: 0; }
}

/* Instagram Report Window */
.instagram-report {
    width: 340px;
}

/* 2K Draft Client Website Report */
.client-web-report {
    width: 340px;
}

.draft-header {
    background: linear-gradient(135deg, #6C3AE0 0%, #4A1FB8 100%);
}

.draft-content {
    padding: 0.5rem;
    background: #0d0d1a;
    border-radius: 0 0 12px 12px;
}

.draft-content .browser-frame {
    background: #1a1a2e;
    border-color: rgba(108, 58, 224, 0.2);
}

.instagram-header {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
}

.instagram-content {
    padding: 0.75rem;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
}

.instagram-showcase {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    justify-content: center;
}

.browser-frame {
    flex: 1;
    background: #262626;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 6px 6px;
}

.phone-frame {
    width: 90px;
    min-width: 90px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    position: relative;
}

.phone-notch {
    width: 40px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 0 0 4px 4px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.browser-chrome {
    background: var(--color-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(91, 48, 0, 0.2),
        0 25px 80px rgba(0, 0, 0, 0.35),
        0 10px 30px rgba(91, 48, 0, 0.15);
    animation: frameFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes frameFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.traffic-lights {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.light.red {
    background: #ff5f57;
    box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.light.yellow {
    background: #febc2e;
    box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.light.green {
    background: #28c840;
    box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.browser-toolbar {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 8px 14px;
    margin-left: 12px;
}

.toolbar-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toolbar-group svg {
    color: rgba(255, 255, 255, 0.5);
    width: 16px;
    height: 16px;
}

.filename {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

.browser-content {
    background: var(--color-primary);
    padding: 16px;
    line-height: 0;
}

.browser-content .team-photo {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 8px;
    display: block;
}

/* Browser Carousel */
.browser-carousel {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--color-primary);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Animated Mouse Cursor - Synced with carousel (16s total = 4s per slide) */
.carousel-mouse {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    animation: mouseMove4Corners 16s ease-in-out infinite;
}

.mouse-cursor {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: mouseClick4Corners 16s ease-in-out infinite;
}

.click-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(222, 110, 39, 0.4);
    opacity: 0;
    animation: rippleEffect4Corners 16s ease-in-out infinite;
}

@keyframes mouseMove4Corners {
    /* Slide 1: Top-left (0-4s) */
    0%, 20% {
        top: 15%;
        left: 15%;
    }
    /* Slide 2: Top-right (4-8s) */
    25%, 45% {
        top: 15%;
        left: 85%;
    }
    /* Slide 3: Bottom-left (8-12s) */
    50%, 70% {
        top: 75%;
        left: 15%;
    }
    /* Slide 4: Center (12-16s) */
    75%, 95% {
        top: 50%;
        left: 50%;
    }
    /* wrap */
    100% {
        top: 15%;
        left: 15%;
    }
}

@keyframes mouseClick4Corners {
    /* Click at start of each position (0%, 25%, 50%, 75%) */
    0%, 2%, 23%, 27%, 48%, 52%, 73%, 77%, 98%, 100% {
        transform: scale(1);
    }
    1%, 26%, 51%, 76% {
        transform: scale(0.85);
    }
}

@keyframes rippleEffect4Corners {
    /* Ripple at each click */
    0%, 23%, 25%, 48%, 50%, 73%, 75%, 98%, 100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    1%, 26%, 51%, 76% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    4%, 29%, 54%, 79% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .team-photo-container {
        width: 55%;
        max-width: 600px;
    }
    
    .browser-mockup {
        width: 110%;
        margin-right: -5%;
    }
    
    .desktop-mockup {
        width: 110%;
        margin-right: -5%;
    }
}

@media (max-width: 1024px) {
    .team-photo-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
        transform: scale(1);
    }
    
    .browser-mockup {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .desktop-mockup {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .team-photo-container,
    .browser-mockup,
    .desktop-mockup {
        display: none;
    }
}

@media (max-width: 480px) {
    .team-photo-container {
        padding: 1rem;
    }
    
    .team-photo {
        border-radius: 12px;
        max-height: 350px;
    }
    
    .browser-header {
        padding: 10px 12px;
    }
    
    .light {
        width: 10px;
        height: 10px;
    }
}

/* Team Preview Section on About Page */
.team-preview-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.team-preview-wrapper {
    text-align: center;
}

.team-preview-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 900;
}

.team-photo-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Climate Contribution Section */
.climate-contribution {
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(222, 110, 39, 0.05) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.climate-contribution .contribution-text {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.climate-contribution .contribution-text strong {
    color: var(--color-primary);
}

.climate-contribution iframe {
    margin: 1rem 0;
    max-width: 100%;
}

.climate-contribution .contribution-date {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.contribution-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(222, 110, 39, 0.2);
}

.contribution-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contribution-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.contribution-stat-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .team-preview-title {
        font-size: 2rem;
    }
    
    .team-photo-frame {
        border-radius: 12px;
    }
}

/* Legal Pages (Privacy Policy & Terms of Service) */
.legal-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    text-align: center;
}

.legal-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    color: var(--color-gray);
    font-size: 1rem;
}

.legal-content {
    padding: 4rem 0 6rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-body ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
    color: var(--color-dark);
}

.legal-body ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-body a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-body a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }

    .legal-hero {
        padding: 7rem 0 2rem;
    }

    .legal-content {
        padding: 2.5rem 0 4rem;
    }
}
