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

:root {
    /* Professional Consulting Colors */
    --primary-blue: #2c5aa0;
    --secondary-blue: #1e3a5f;
    --accent-orange: #ff6b1a;
    --light-blue: #f0f4f8;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border-light: #e2e8f0;
    --success-green: #38a169;
    
    /* Legacy colors for compatibility */
    --primary: #2c5aa0;
    --secondary: #fff;
    --accent: #ff6b1a;
    --accent-2: #1e3a5f;
    --accent-3: #2c5aa0;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #f0f4f8;
    --dark-bg: #2d3748;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Professional Header Styles */
.professional-header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-utility {
    background: var(--secondary-blue);
    padding: 8px 0;
    font-size: 0.875rem;
}

.utility-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.utility-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.utility-link:hover {
    opacity: 0.8;
}

.main-navigation {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-orange);
}

.nav-cta .btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.nav-cta .btn-primary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-1px);
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Professional Hero Section */
.professional-hero {
    margin-top: 140px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--light-blue);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.9) 0%, rgba(30, 58, 95, 0.8) 100%);
    z-index: 1;
}

.professional-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-large {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-orange);
}

.btn-primary-large:hover {
    background: #e55a00;
    border-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.3);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-container {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--secondary-blue);
}

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

/* Loading Screen */
.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.loader-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.synthion-text {
    display: flex;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    gap: 2px;
    flex-wrap: nowrap;
}

.typewriter-container {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.typewriter-text {
    color: #fff;
    line-height: 1.4;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    min-height: 6rem;
}

.typewriter-line-1 {
    display: block;
}

.typewriter-line-2 {
    display: block;
    min-height: 1.4em;
}

.typewriter-cursor {
    color: #fff;
    animation: blink 0.7s infinite;
    display: inline;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

body {
    font-family: 'Space Grotesk', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn {
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', Arial, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: var(--secondary);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 40px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo {
    color: var(--accent-3);
}

.navbar.scrolled .nav-link {
    color: var(--primary);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.navbar.scrolled .demo-btn {
    background: rgba(0, 0, 0, 0.85);
    color: var(--secondary);
}

.navbar.scrolled .demo-btn:hover {
    background: rgba(0, 0, 0, 1);
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--accent-3);
}

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

.nav-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover::after {
    display: none;
}

.demo-btn {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1547499417-2512136c2d93?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: slowZoom 20s ease-out forwards;
    transform: scale(1);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

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

@keyframes drift {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(30px) translateX(-30px); }
}

@keyframes drift-reverse {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(30px); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 20px;
}

.hero-title {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1.1;
    font-weight: 900;
}

.hero-title .gradient {
    color: var(--secondary);
    font-size: 5rem;
}

.hero-title .word {
    display: block;
    animation: slideInUp 0.8s ease forwards;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-title .word:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 400;
}

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

.hero-visual {
    position: relative;
    height: 500px;
}

/* Tech Float */
.tech-float {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid {
    width: 320px;
    height: 320px;
    opacity: 0;
    animation: float-grid 10s ease-in-out infinite forwards;
    filter: drop-shadow(0 30px 80px rgba(255, 255, 255, 0.2));
}

/* Animations */
@keyframes float-orb-1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 1; }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(0px); }
    75% { transform: translateY(-20px) translateX(-10px); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 1; }
    25% { transform: translateY(-30px) translateX(-15px); }
    50% { transform: translateY(-50px) translateX(0px); }
    75% { transform: translateY(-30px) translateX(15px); }
}

@keyframes float-cube {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); opacity: 1; }
    25% { transform: translateY(-20px) rotateX(20deg) rotateY(20deg); }
    50% { transform: translateY(-35px) rotateX(40deg) rotateY(40deg); }
    75% { transform: translateY(-20px) rotateX(20deg) rotateY(-20deg); }
}

@keyframes float-lines {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 1; }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes rotate-circle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes draw-path {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 50; }
}

@keyframes pulse-dot {
    0%, 100% { r: 4px; opacity: 0.6; }
    50% { r: 6px; opacity: 1; }
}

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

@keyframes float-grid {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 1; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.02); }
    50% { transform: translateY(-60px) translateX(0px) scale(1); }
    75% { transform: translateY(-30px) translateX(-20px) scale(1.02); }
}

/* Work Section */
.work {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.98));
    padding: 100px 40px;
    animation: scaleIn 1.5s ease-out forwards;
}

.section-intro {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.work-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.work-grid .large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.work-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.work-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.work-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.work-item.large .work-image {
    height: 400px;
}

.schedulo-bg {
    background: linear-gradient(135deg, #333 0%, #111 100%);
}

.library-bg {
    background: linear-gradient(135deg, #555 0%, #222 100%);
}

.events-bg {
    background: linear-gradient(135deg, #444 0%, #1a1a1a 100%);
}

.cloud-bg {
    background: linear-gradient(135deg, #666 0%, #2a2a2a 100%);
}

.work-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.work-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.work-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

/* Services Section */
.services {
    background: url('https://images.unsplash.com/photo-1636953056323-9c09fdd74fa6?q=80&w=2664&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 40px;
    position: relative;
    animation: scaleIn 1.5s ease-out forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.section-title {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.service-block {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-block:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-block h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Trusted By AWS Section */
.trusted-by-aws {
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 50%, #3f51b5 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.trusted-by-aws::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.trusted-by-aws .container {
    position: relative;
    z-index: 1;
}

.trusted-by-aws .section-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.aws-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.aws-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.aws-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: brightness(1) saturate(1);
}

.aws-content {
    color: #ffffff;
}

.aws-content h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.aws-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.aws-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

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

.aws-cta {
    text-align: center;
}

.btn-aws {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: #1e40af;
    border: 2px solid transparent;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-aws:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Innovation Section */
.innovation {
    background: #000;
    padding: 100px 40px;
    position: relative;
}

.innovation h2 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 60px;
}

.innovation-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 60px;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
}

.innovation-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    color: var(--secondary);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.innovation-card:hover {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(35px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.innovation-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.innovation-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), #1a1a1a);
    color: var(--secondary);
    text-align: center;
    padding: 100px 40px;
    position: relative;
}

.cta .container {
    padding: 60px 40px;
    border-radius: 20px;
}

.cta h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
.footer {
    background: #000;
    color: var(--secondary);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul,
.footer-social {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-bottom p {
    border-bottom: 3px solid var(--accent-3);
    display: inline-block;
    padding-bottom: 5px;
}

/* Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .demo-btn {
        display: block;
        font-size: 1.2rem;
        padding: 15px 40px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 1.2rem 20px;
    }

    .hero {
        padding: 60px 20px;
        margin-top: 70px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .typewriter-container {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .work {
        padding: 60px 20px;
    }

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

    .work-grid .large {
        grid-column: 1;
        grid-row: auto;
    }

    .services {
        padding: 60px 20px;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    /* AWS Section Responsive */
    .trusted-by-aws {
        padding: 80px 20px;
    }

    .aws-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .aws-logo-container {
        padding: 2rem;
        order: 1;
    }

    .aws-content {
        order: 2;
    }

    .aws-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.2rem;
    }

    .btn-aws {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .innovation {
        padding: 60px 20px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta .container {
        padding: 40px 20px;
    }

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

    .container {
        padding: 0 20px;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* Product Page Styles */

/* Product Hero */
.product-hero {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.product-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.product-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.product-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-accent {
    color: #60a5fa;
    font-weight: 900;
}

.product-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-product-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 16px 32px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-product-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-product-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.btn-product-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Product Overview */
.product-overview {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.overview-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1e293b;
    margin-bottom: 2rem;
}

.highlight-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 4px 12px;
    border-radius: 8px;
    position: relative;
}

.highlight-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    z-index: -1;
}

.overview-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.overview-footer {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem !important;
}

/* Feature Sections */
.product-features {
    background: #f8fafc;
    padding: 100px 40px;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 6rem;
}

.feature-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-section.reverse .feature-content {
    order: 2;
}

.feature-section.reverse .feature-visual {
    order: 1;
}

.feature-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Analytics Mockup */
.analytics-mockup {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.chart-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    font-weight: 600;
    color: #1e293b;
}

.chart-metric {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
}

.bar {
    background: #e2e8f0;
    width: 20px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.insight-popup {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid #fbbf24;
}

/* Cloud Mockup */
.cloud-mockup {
    background: #1e293b;
    border-radius: 16px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cloud-nodes {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.node {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.node.primary {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.node-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Integration Mockup */
.integration-mockup {
    position: relative;
    width: 300px;
    height: 300px;
}

.integration-hub {
    position: relative;
    width: 100%;
    height: 100%;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.synthion-logo-mini {
    color: white;
    font-weight: 900;
    font-size: 2rem;
}

.integration-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.integration-point {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.integration-point:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.integration-point:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.integration-point:nth-child(2) { top: 30%; right: 10%; }
.integration-point:nth-child(3) { bottom: 30%; right: 10%; }
.integration-point:nth-child(4) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.integration-point:nth-child(5) { bottom: 30%; left: 10%; }
.integration-point:nth-child(6) { top: 30%; left: 10%; }

/* Support Mockup */
.support-mockup {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.support-avatar {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.support-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.support-status {
    font-size: 0.8rem;
    color: #10b981;
}

.message-bubble {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    color: #1e293b;
    line-height: 1.5;
}

.message-bubble.support {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

/* Advanced Features Grid */
.advanced-features {
    padding: 100px 40px;
    background: #ffffff;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advanced-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.advanced-card:hover::before {
    transform: translateX(0);
}

.advanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.advanced-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advanced-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.advanced-card p {
    color: #64748b;
    line-height: 1.6;
}

/* FAQ Section */
.product-faq {
    padding: 100px 40px;
    background: #f8fafc;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* Product CTA Section */
.product-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* New Product Page Styles */

/* Hero Ratings */
.hero-ratings {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0.9;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars {
    font-size: 1rem;
}

.rating-score {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

.rating-source {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Platform Overview */
.platform-overview {
    padding: 100px 40px;
    background: #f8fafc;
}

.platform-overview h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.platform-overview p {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.demo-desktop {
    flex: 1;
    max-width: 600px;
}

.demo-screen {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.demo-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-logo {
    font-weight: 700;
    color: #1e293b;
}

.demo-user {
    font-size: 0.9rem;
    color: #64748b;
}

.demo-content {
    display: flex;
    height: 300px;
}

.demo-sidebar {
    width: 180px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 1rem;
}

.demo-nav-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.demo-nav-item.active {
    background: #3b82f6;
    color: #ffffff;
}

.demo-nav-item:not(.active):hover {
    background: #e2e8f0;
}

.demo-main {
    flex: 1;
    padding: 1.5rem;
}

.demo-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.demo-widget {
    background: #f8fafc;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.demo-widget h4 {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.demo-chart {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.demo-mobile {
    width: 200px;
    flex-shrink: 0;
}

.mobile-screen {
    background: #1e293b;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mobile-header {
    text-align: center;
    margin-bottom: 1rem;
}

.mobile-title {
    color: #ffffff;
    font-weight: 700;
}

.mobile-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
}

.mobile-stat {
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-stat:last-child {
    border-bottom: none;
}

/* Feature Categories */
.feature-categories {
    padding: 100px 40px;
    background: #ffffff;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Detailed Features */
.detailed-features {
    padding: 100px 40px;
    background: #f8fafc;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 8rem;
}

.feature-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-detail.reverse .feature-content {
    order: 2;
}

.feature-detail.reverse .feature-visual {
    order: 1;
}

.feature-label {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-detail h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-detail p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Analytics Mockup Enhanced */
.analytics-mockup {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-header h4 {
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

.live-indicator {
    font-size: 0.9rem;
    background: #10b981;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.analytics-chart {
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 120px;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.bar {
    background: #e2e8f0;
    width: 40px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.bar.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.bar:hover::after {
    content: attr(data-value);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.insight-card.positive {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.insight-card.neutral {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.workflow-step h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Automation Mockup */
.automation-mockup {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.workflow-canvas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    overflow-x: auto;
    min-width: 600px;
}

.workflow-node {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.workflow-node.start {
    border-color: #10b981;
    background: #f0fdf4;
}

.workflow-node.decision {
    border-color: #f59e0b;
    background: #fffbeb;
}

.workflow-node.action {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.workflow-node.integration {
    border-color: #8b5cf6;
    background: #faf5ff;
}

.workflow-arrow {
    color: #64748b;
    font-size: 1.5rem;
    font-weight: 700;
}

.node-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.workflow-node span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.automation-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

/* Integration Categories */
.integration-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-group h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.category-group p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Integration Hub Mockup */
.integration-hub-mockup {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.synthion-logo {
    color: #ffffff;
    font-weight: 900;
    font-size: 2rem;
}

.hub-label {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
}

.integration-rings {
    position: relative;
    width: 100%;
    height: 100%;
}

.integration-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.integration-app {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.integration-app:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.integration-app:nth-child(1) { 
    top: 10%; 
    left: 50%; 
    transform: translateX(-50%); 
}
.integration-app:nth-child(2) { 
    top: 30%; 
    right: 10%; 
}
.integration-app:nth-child(3) { 
    bottom: 30%; 
    right: 10%; 
}
.integration-app:nth-child(4) { 
    bottom: 10%; 
    left: 50%; 
    transform: translateX(-50%); 
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    transform-origin: center bottom;
    transform: translate(-50%, -100%) rotate(var(--angle));
    opacity: 0.6;
    animation: flow 2s ease-in-out infinite;
}

@keyframes flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Product Styles */
@media (max-width: 968px) {
    .product-hero {
        padding: 60px 20px;
        min-height: 60vh;
    }

    .product-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-ratings {
        flex-direction: column;
        gap: 1rem;
    }

    .platform-demo {
        flex-direction: column;
        gap: 2rem;
    }

    .demo-mobile {
        width: 250px;
        align-self: center;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

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

    .feature-detail,
    .feature-detail.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .feature-detail.reverse .feature-content {
        order: 1;
    }

    .feature-detail.reverse .feature-visual {
        order: 2;
    }

    .integration-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workflow-canvas {
        flex-direction: column;
        min-width: auto;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .automation-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .integration-hub-mockup {
        width: 250px;
        height: 250px;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .platform-overview,
    .feature-categories,
    .detailed-features,
    .product-faq,
    .product-cta-section {
        padding: 60px 20px;
    }
}

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

    .workflow-canvas {
        padding: 1rem;
    }

    .integration-hub-mockup {
        width: 200px;
        height: 200px;
    }

    .chart-bars {
        gap: 0.5rem;
    }

    .bar {
        width: 30px;
    }
}

/* ThoughtWorks-Inspired Styles */

/* Reset body for ThoughtWorks design */
body {
    font-family: 'Space Grotesk', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ThoughtWorks Navigation */
.navbar-thoughtworks {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo-thoughtworks {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-menu-thoughtworks {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link-thoughtworks {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link-thoughtworks:hover,
.nav-link-thoughtworks.active {
    color: #e74c3c;
}

.menu-btn-thoughtworks {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn-thoughtworks:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* ThoughtWorks Hero Section */
.hero-thoughtworks {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background-thoughtworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cube {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.cube-1 { top: 20%; left: 15%; animation-delay: 0s; }
.cube-2 { top: 30%; left: 80%; animation-delay: 1s; background: rgba(52, 152, 219, 0.8); }
.cube-3 { top: 60%; left: 10%; animation-delay: 2s; background: rgba(46, 204, 113, 0.8); }
.cube-4 { top: 70%; left: 85%; animation-delay: 3s; background: rgba(155, 89, 182, 0.8); }
.cube-5 { top: 40%; left: 70%; animation-delay: 4s; background: rgba(241, 196, 15, 0.8); }
.cube-6 { top: 80%; left: 40%; animation-delay: 5s; background: rgba(230, 126, 34, 0.8); }
.cube-7 { top: 15%; left: 60%; animation-delay: 0.5s; background: rgba(231, 76, 60, 0.6); }
.cube-8 { top: 50%; left: 30%; animation-delay: 2.5s; background: rgba(52, 152, 219, 0.6); }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); opacity: 0.8; }
    25% { transform: translateY(-20px) rotateX(90deg) rotateY(45deg); opacity: 1; }
    50% { transform: translateY(-40px) rotateX(180deg) rotateY(90deg); opacity: 0.6; }
    75% { transform: translateY(-20px) rotateX(270deg) rotateY(135deg); opacity: 1; }
}

.hero-overlay-thoughtworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Scroll Animation Styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for multiple elements */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Parallax background effect */
.parallax-bg {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Smooth background movement on cubes */
.cube {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

.hero-content-thoughtworks {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #ffffff;
}

.hero-title-thoughtworks {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-accent-text {
    color: #e74c3c;
    display: block;
}

.hero-subtitle-thoughtworks {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn-primary-thoughtworks {
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-thoughtworks:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary-thoughtworks {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-thoughtworks:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ThoughtWorks Stats Section */
.stats-section-thoughtworks {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stats-grid-thoughtworks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.stat-number-thoughtworks {
    font-size: 3rem;
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-thoughtworks {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ThoughtWorks Services Section */
.services-thoughtworks {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header-thoughtworks {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header-thoughtworks h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header-thoughtworks p {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
}

.services-grid-thoughtworks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card-thoughtworks {
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-thoughtworks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e74c3c;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card-thoughtworks:hover::before {
    transform: translateX(0);
}

.service-card-thoughtworks:hover {
    border-color: #cccccc;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card-thoughtworks h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.service-card-thoughtworks p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #c0392b;
}

/* ThoughtWorks Testimonial */
.testimonial-thoughtworks {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.testimonial-content blockquote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 2rem 0;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.testimonial-content cite strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

/* Featured Work */
.featured-work-thoughtworks {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-title-thoughtworks {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.work-item-main {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.work-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.work-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.work-content p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.result-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Insights */
.insights-thoughtworks {
    padding: 6rem 0;
    background: #ffffff;
}

.insights-grid-thoughtworks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.insight-card-thoughtworks {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.insight-card-thoughtworks:hover {
    border-color: #cccccc;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.insight-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-card-thoughtworks h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.insight-card-thoughtworks p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-link-thoughtworks {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.insight-link-thoughtworks:hover {
    color: #c0392b;
}

/* CTA Section */
.cta-thoughtworks {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.cta-content-thoughtworks h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content-thoughtworks p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer-thoughtworks {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 4rem 0 2rem;
}

.footer-content-thoughtworks {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.footer-section-thoughtworks h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-section-thoughtworks h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.footer-section-thoughtworks p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.footer-section-thoughtworks ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section-thoughtworks ul li {
    margin-bottom: 0.75rem;
}

.footer-section-thoughtworks ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section-thoughtworks ul li a:hover {
    color: #e74c3c;
}

.footer-bottom-thoughtworks {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-bottom-thoughtworks p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Clean Navigation */
.navbar-clean {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo-clean {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-menu-clean {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link-clean {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link-clean:hover,
.nav-link-clean.active {
    color: #1a1a1a;
}

.nav-link-clean.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
}

.demo-btn-clean {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.demo-btn-clean:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Clean Hero Section */
.hero-clean {
    margin-top: 80px;
    padding: 6rem 0 4rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Hero with Background */
.hero-with-bg {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay-clean {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content-clean {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-with-bg .hero-title-clean {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-clean {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-with-bg .hero-subtitle-clean {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-clean {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666666;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-cta-clean {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-clean {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-primary-clean:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-clean {
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.btn-secondary-clean:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: #ffffff;
}

.clients-title {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.client-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

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

.client-logo img {
    height: 40px;
    filter: grayscale(1);
}

.client-text {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card-clean {
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card-clean:hover {
    border-color: #cccccc;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon-clean {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card-clean h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card-clean p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Case Study Section */
.case-study-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.case-study-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.case-study-text p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.results-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.results-list li {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.metrics-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Insights Section */
.insights-section {
    padding: 6rem 0;
    background: #ffffff;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.insight-card {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: #cccccc;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.insight-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.insight-link:hover {
    color: #333333;
}

/* CTA Section Clean */
.cta-section-clean {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-content-clean {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-clean h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content-clean p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.cta-buttons-clean .btn-primary-clean {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.cta-buttons-clean .btn-primary-clean:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
}

.cta-buttons-clean .btn-secondary-clean {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cta-buttons-clean .btn-secondary-clean:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Clean */
.footer-clean {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 4rem 0 2rem;
}

.footer-content-clean {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1a1a1a;
}

.footer-bottom-clean {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-bottom-clean p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

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

    .nav-menu-clean {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: #1a1a1a;
        transition: all 0.3s ease;
    }

    .hero-clean {
        padding: 4rem 0 3rem;
    }

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

    .metrics-dashboard {
        grid-template-columns: 1fr 1fr;
    }

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

    .services-grid-clean,
    .insights-grid {
        grid-template-columns: 1fr;
    }

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

    .clients-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .typewriter-container {
        font-size: 1.5rem;
    }

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

    h2 {
        font-size: 1.6rem;
    }

    .service-block,
    .innovation-card {
        padding: 1.5rem;
    }

    .innovation-icon {
        width: 60px;
        height: 60px;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }

    .advanced-card {
        padding: 1.5rem;
    }

    .integration-mockup {
        width: 200px;
        height: 200px;
    }

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

    .btn-primary-clean,
    .btn-secondary-clean {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

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

    .metrics-dashboard {
        grid-template-columns: 1fr;
    }

    .clients-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-card-clean,
    .insight-card {
        padding: 1.5rem;
    }
}
