/* ============================================
   FONT FACES
   ============================================ */

/* Google Fonts - Inter for body text */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Kallisto';
    src: url('fonts/Kallisto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('fonts/Kallisto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('fonts/Kallisto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Kallisto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 72px;
}

/* Inter for long-form body text (paragraphs, descriptions, testimonials) */
.hero-subheadline,
.stats-title,
.process-card-desc,
.testimonial-text,
.footer-text,
.hero-description,
.case-study-text,
p[data-i18n],
p[data-i18n-html] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
    50% {
        box-shadow: 0 8px 25px rgba(207, 203, 255, 0.4);
    }
}

@keyframes flipVertical {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.feature-icon img {
    display: inline-block;
    perspective: 1000px;
}

.fadeIn {
    animation: fadeIn 0.6s ease-in-out forwards;
    opacity: 0;
}

.slideInUp {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.slideInLeft {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.slideInRight {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    height: 72px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-icon {
    height: 60px;
    width: auto;
}

.logo-text {
    display: inline;
}

.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1.5px solid #E5E7EB;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kallisto', sans-serif;
}

.lang-toggle:hover {
    border-color: #D1D5DB;
    color: #111827;
}

.language-switcher.open .lang-toggle {
    border-color: #E8C7DD;
    color: #374151;
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.language-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 130px;
    background: #ffffff;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 14px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-family: 'Kallisto', sans-serif;
}

.lang-option:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.lang-option.active {
    background-color: #E8C7DD;
    color: #374151;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
    flex: 1;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: all 0.15s ease;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    background-color: #E8C7DD;
    color: #111827;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-dropdown {
    padding: 6px 10px;
}

.chevron {
    width: 12px;
    height: 8px;
    transition: transform 0.15s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .chevron {
    transform: rotateZ(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: all 0.15s ease;
}

.dropdown-link:hover {
    background-color: #F3F4F6;
    color: #111827;
}

/* Case Studies dropdown: one item per line, no wrapping */
.nav-dropdown:has(> a[data-i18n="nav.caseStudies"]) .dropdown-menu {
    min-width: 340px;
}

.nav-dropdown:has(> a[data-i18n="nav.caseStudies"]) .dropdown-link {
    white-space: nowrap;
}

/* "All Case Studies" header link in dropdown */
.dropdown-link-header {
    font-weight: 600;
    color: #6366f1 !important;
}

.dropdown-link-header:hover {
    background-color: rgba(99, 102, 241, 0.06) !important;
}

.dropdown-divider {
    height: 1px;
    background-color: #E5E7EB;
    margin: 4px 12px;
}

.dropdown-item-with-submenu {
    position: relative;
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.2s ease;
    margin-left: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1001;
}

.dropdown-submenu .dropdown-submenu {
    min-width: 320px;
}

.dropdown-submenu .dropdown-submenu .dropdown-link {
    white-space: nowrap;
    padding: 7px 14px;
    line-height: 1.15;
}

.dropdown-item-with-submenu:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, rgba(207, 203, 255, 0.2) 0%, rgba(248, 198, 216, 0.2) 50%, rgba(184, 225, 255, 0.2) 100%), url('images/Visuels (4).png');
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(207, 203, 255, 0.05), rgba(248, 198, 216, 0.05), rgba(184, 225, 255, 0.05));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 28px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite, gentleRock 8s ease-in-out infinite;
    filter:
        drop-shadow(0 0 0.5px rgba(255,255,255,0.9))
        drop-shadow(0 0 1px rgba(255,255,255,0.7));
    position: relative;
    display: inline-block;
}

.hero-subheadline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 90%;
    height: 8px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 Q25 0 50 5 T100 5 T150 5 T200 5' fill='none' stroke='%236366f1' stroke-width='1.2' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
    background-size: 200px 10px;
    animation: waveScroll 3s linear infinite;
    opacity: 0.45;
}

.hero-subheadline::before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 8%;
    width: 84%;
    height: 8px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 Q25 0 50 5 T100 5 T150 5 T200 5' fill='none' stroke='%23a855f7' stroke-width='1' opacity='0.25'/%3E%3C/svg%3E") repeat-x;
    background-size: 180px 10px;
    animation: waveScroll 4s linear infinite reverse;
    opacity: 0.35;
}

@keyframes waveScroll {
    0%   { background-position-x: 0; }
    100% { background-position-x: 200px; }
}

@keyframes shimmerText {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes gentleRock {
    0%   { transform: rotate(0deg)    translateY(0)    translateX(0); }
    15%  { transform: rotate(2.5deg)  translateY(-4px)  translateX(6px); }
    30%  { transform: rotate(0.5deg)  translateY(2px)   translateX(2px); }
    50%  { transform: rotate(-3deg)   translateY(-5px)  translateX(-8px); }
    65%  { transform: rotate(-1deg)   translateY(1px)   translateX(-3px); }
    80%  { transform: rotate(2deg)    translateY(-3px)  translateX(5px); }
    100% { transform: rotate(0deg)    translateY(0)     translateX(0); }
}

.hero-video {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 500px;
}

.hero-video:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
}

.hero-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ============================================
   FEATURED CASE STUDIES SECTION
   ============================================ */

.featured-cases-section {
    background: linear-gradient(135deg, #ede9fe 0%, #fce7f3 25%, #e0f2fe 50%, #fce7f3 75%, #ede9fe 100%);
    background-size: 400% 400%;
    animation: featuredWaveFlow 12s ease-in-out infinite;
    padding: 80px 0 64px;
}

@keyframes featuredWaveFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.featured-cases-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
}

.featured-cases-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.featured-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1060px;
    margin: 0 auto;
}

.featured-case-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
    border-color: #6366f1;
}

.featured-case-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.featured-case-card:hover .featured-case-icon {
    background: rgba(99, 102, 241, 0.15);
}

.featured-case-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.featured-case-card-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

.featured-cases-more {
    text-align: center;
    margin-top: 36px;
}

.featured-cases-more-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-cases-more-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .featured-cases-section {
        padding: 56px 0 48px;
    }

    .featured-cases-title {
        font-size: 24px;
    }

    .featured-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 8px;
    }
}

/* ============================================
   STATS / METRICS SECTION
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, rgba(214, 204, 255, 0.6) 0%, rgba(245, 201, 220, 0.6) 50%, rgba(200, 233, 255, 0.6) 100%), url('images/Lausanne.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 96px;
    padding-bottom: 96px;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(207, 203, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #6B7280;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Force "20+ years" to single line */
.stats-grid .stat-card:nth-child(2) .stat-number {
    white-space: nowrap;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    background-color: #ffffff;
    padding-top: 96px;
    padding-bottom: 96px;
}

.process-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
}

.process-subtitle {
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 64px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 16px;
}

.process-card:hover {
    transform: translateY(-10px);
    background-color: rgba(207, 203, 255, 0.1);
}

.process-icon {
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon {
    animation: pulse 0.6s ease-in-out;
}

.process-icon svg {
    width: 48px;
    height: 48px;
}

.process-icon-img {
    width: 192px;
    height: 192px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon-img {
    transform: scale(1.08) rotate(2deg);
}

.process-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.process-card-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: #ffffff;
    padding-top: 48px;
    padding-bottom: 96px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
}

.cta-button {
    padding: 10px 22px;
    border-radius: 999px;
    background-color: #E8C7DD;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kallisto', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.cta-button:hover {
    background-color: #DDB3CA;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(207, 203, 255, 0.5);
    animation: glow 1.5s ease-in-out infinite;
}

.cta-button:active {
    transform: scale(0.98);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, #F8BBD8 0%, #C7BFFF 100%);
    padding-top: 96px;
    padding-bottom: 96px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow: hidden;
    padding: 4px;
    scroll-behavior: smooth;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: none;
    flex-direction: column;
    min-height: 200px;
    flex: 0 0 100%;
    transition: all 0.4s ease;
    opacity: 0;
}

.testimonial-card.active {
    display: flex;
    opacity: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    background-color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111827;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    border-color: #111827;
    background-color: #F3F4F6;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.testimonial-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-logo {
    flex-shrink: 0;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.testimonial-company {
    font-size: 12px;
    color: #6B7280;
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */

.trusted-by-section {
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 96px;
}

.trusted-by-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 32px;
}

/* Logos Carousel */
.logos-carousel-wrapper {
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.logos-carousel-wrapper:hover .logos-carousel {
    animation-play-state: paused;
}

.logos-carousel {
    display: flex;
    gap: 48px;
    animation: scroll-logos 20s linear infinite;
    width: fit-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Each slide: logo + flag stacked */
.carousel-slide {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Logo area - fixed height for alignment */
.slide-logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slide-logo-container img.company-logo {
    height: 50px;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

.slide-logo-container img.large-logo {
    height: 65px;
}

.slide-logo-container img.xlarge-logo {
    height: 85px;
    max-width: 170px;
}

/* Dark background on logo image */
.carousel-slide.dark-bg .slide-logo-container img.company-logo {
    height: 35px;
    background-color: #000000;
    padding: 8px 12px;
    border-radius: 4px;
}

.carousel-slide.dark-bg .slide-logo-container img.large-logo {
    height: 55px;
}

.carousel-slide.dark-bg-gray .slide-logo-container img.company-logo {
    height: 35px;
    background-color: #374151;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Flag area */
.slide-flag {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-flag img.country-flag {
    height: 20px;
    width: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .logos-carousel-wrapper {
        max-width: 100%;
    }
    
    .logos-carousel {
        gap: 32px;
    }
    
    .carousel-slide {
        flex: 0 0 130px;
    }
}

@media (max-width: 480px) {
    .logos-carousel {
        gap: 24px;
    }
    
    .carousel-slide {
        flex: 0 0 110px;
    }
    
    .slide-logo-container {
        height: 55px;
    }
    
    .slide-logo-container img.company-logo {
        height: 40px;
        max-width: 100px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #F5F3FF 0%, #FFF1F5 50%, #F0F9FF 100%);
    padding-top: 64px;
    padding-bottom: 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-column {
    flex: 1;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.8;
}

.footer-link:hover {
    color: #111827;
}

/* ============================================
   CONTACT FORM
   ============================================ */

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #7b7fbf;
    box-shadow: 0 0 0 3px rgba(123, 127, 191, 0.15);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #9ca3af;
}

@media (max-width: 768px) {
    #contactForm {
        padding: 32px 24px !important;
    }
    #contactForm > div:first-child {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   OUR OFFICES SECTION
   ============================================ */

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.office-card {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.office-country {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    font-family: 'Kallisto', sans-serif;
}

.office-flag {
    width: 80px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.office-address {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.office-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 8px;
}

.office-phone-link {
    color: #374151;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.2s ease;
}

.office-phone-link:hover {
    color: #7b7fbf;
}

.office-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 28px;
}

.office-email-link {
    color: #374151;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.2s ease;
}

.office-email-link:hover {
    color: #7b7fbf;
}

.office-clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.office-city {
    font-size: 13px;
    color: #7b7fbf;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Analog Clock */
.analog-clock {
    width: 90px;
    height: 90px;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #ffffff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 2px;
}

.clock-hour {
    width: 3px;
    height: 22px;
    background: #1f2937;
    margin-left: -1.5px;
}

.clock-minute {
    width: 2px;
    height: 30px;
    background: #374151;
    margin-left: -1px;
}

.clock-second {
    width: 1px;
    height: 32px;
    background: #ef4444;
    margin-left: -0.5px;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #374151;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.clock-mark {
    position: absolute;
    background: #9ca3af;
}

.clock-mark-12 {
    top: 6px;
    left: 50%;
    width: 2px;
    height: 8px;
    margin-left: -1px;
}

.clock-mark-3 {
    right: 6px;
    top: 50%;
    width: 8px;
    height: 2px;
    margin-top: -1px;
}

.clock-mark-6 {
    bottom: 6px;
    left: 50%;
    width: 2px;
    height: 8px;
    margin-left: -1px;
}

.clock-mark-9 {
    left: 6px;
    top: 50%;
    width: 8px;
    height: 2px;
    margin-top: -1px;
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   CTA CONTACT BUTTON
   ============================================ */

.cta-button-contact {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #c88da0 0%, #9b8cbf 35%, #7b7fbf 60%, #4a90c4 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Kallisto', sans-serif;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cta-button-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.footer-bottom {
    border-top: 1px solid #E5E7EB;
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #6B7280;
}

/* ============================================
   HAMBURGER MENU BUTTON (hidden on desktop)
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 201;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   MOBILE OVERLAY (for closing menu by tapping outside)
   ============================================ */

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

.mobile-overlay.active {
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* --- Tablet: 769px – 1024px --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .hero-headline {
        font-size: 40px;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* --- Mobile: up to 768px --- */
@media (max-width: 768px) {
    /* Hamburger visible */
    .hamburger {
        display: flex;
        order: 3;
    }

    /* Header */
    .header {
        height: 60px;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .logo-icon {
        height: 44px;
    }

    .logo-text {
        font-size: 14px;
    }

    /* Language switcher: stays in header bar */
    .language-switcher {
        order: 2;
    }

    .lang-toggle {
        padding: 4px 10px;
        font-size: 11px;
    }

    .lang-menu {
        right: 0;
        min-width: 120px;
    }

    /* Nav becomes slide-out panel */
    .nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 72px 0 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        z-index: 200;
        overflow-y: auto;
        transition: right 0.3s ease;
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 24px;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #F5F3FF;
    }

    /* Dropdown menus in mobile panel */
    .nav-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-dropdown .nav-link-dropdown {
        padding: 14px 24px;
    }

    .chevron {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .nav-dropdown.open > .chevron {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        display: none;
        background: #f9fafb;
    }

    .nav-dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
    }

    .dropdown-item-with-submenu {
        position: static;
    }

    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-left: 0;
        padding: 0;
        display: none;
        background: #f3f4f6;
    }

    .dropdown-submenu .dropdown-submenu {
        min-width: unset;
    }

    .dropdown-item-with-submenu.open > .dropdown-submenu {
        display: block;
    }

    .dropdown-submenu .dropdown-link {
        padding-left: 56px;
        font-size: 13px;
    }

    .dropdown-submenu .dropdown-submenu .dropdown-link {
        padding-left: 56px;
        white-space: normal;
    }

    /* Hero */
    .hero {
        padding-top: 64px;
        padding-bottom: 64px;
        background-attachment: scroll, scroll;
    }

    .hero-headline {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-subheadline {
        font-size: 23px;
        margin-bottom: 32px;
    }

    .hero-video {
        max-width: 100%;
        min-height: auto;
    }

    /* Stats */
    .stats-section {
        padding-top: 64px;
        padding-bottom: 64px;
        background-attachment: scroll;
    }

    .stats-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    /* Process */
    .process-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .process-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .process-subtitle {
        margin-bottom: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* CTA */
    .cta-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .cta-title {
        font-size: 26px;
    }

    /* Testimonials */
    .testimonials-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    /* Trusted By */
    .trusted-by-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .trusted-by-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .logos-grid {
        gap: 32px;
    }

    /* Footer */
    .footer {
        padding-top: 48px;
        padding-bottom: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* Innovations section responsive */
    .innovations-section .container > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Fix background-attachment: fixed on mobile (iOS bug) */
    [style*="background-attachment: fixed"],
    .about-section,
    .case-study-hero,
    .features-section {
        background-attachment: scroll !important;
    }
}

/* --- Small phones: up to 480px --- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 26px;
    }

    .hero-subheadline {
        font-size: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 22px;
    }

    .logos-grid {
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-button,
    .cta-button-contact {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ============================================
   STARTUP PAGE
   ============================================ */

/* --- Hero --- */
.startup-hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0) 0 0 / 30px 30px,
        linear-gradient(160deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #7c3aed 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.startup-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(200, 141, 160, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.startup-hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.startup-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Kallisto', sans-serif;
}

.startup-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
}

.startup-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.startup-btn-primary {
    display: inline-block;
    padding: 15px 36px;
    background: linear-gradient(135deg, #c88da0 0%, #9b8cbf 50%, #7b7fbf 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Kallisto', sans-serif;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(200, 141, 160, 0.35);
    transition: all 0.3s ease;
}

.startup-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(200, 141, 160, 0.5);
}

.startup-btn-secondary {
    display: inline-block;
    padding: 15px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Kallisto', sans-serif;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.startup-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.startup-hero-trust {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

/* --- Shared section styles --- */
.startup-section {
    padding: 80px 0;
}

.startup-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Kallisto', sans-serif;
}

.startup-section-lead {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Inter', sans-serif;
}

/* --- Pain section --- */
.startup-pain {
    background: #ffffff;
}

.startup-pain-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.startup-pain-card {
    text-align: center;
    padding: 28px 16px;
    background: #fef2f2;
    border-radius: 12px;
    border: 1px solid #fecaca;
    transition: transform 0.3s ease;
}

.startup-pain-card:hover {
    transform: translateY(-4px);
}

.startup-pain-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.startup-pain-card p {
    font-size: 14px;
    color: #7f1d1d;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.startup-pain-closing {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #991b1b;
    font-family: 'Kallisto', sans-serif;
}

/* --- Education section --- */
.startup-education {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.startup-education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 40px auto;
}

.startup-edu-card {
    padding: 32px;
    border-radius: 16px;
}

.startup-edu-bad {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.startup-edu-good {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.startup-edu-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Kallisto', sans-serif;
}

.startup-edu-bad .startup-edu-label {
    color: #c2410c;
}

.startup-edu-good .startup-edu-label {
    color: #15803d;
}

.startup-edu-card p {
    font-size: 15px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

.startup-edu-visual {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.startup-bar {
    padding: 8px 14px;
    background: #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.startup-bar span {
    font-weight: 700;
    font-size: 12px;
}

.startup-bar-accent {
    background: linear-gradient(135deg, #c88da0, #7b7fbf);
    color: #374151;
    overflow: visible;
    white-space: nowrap;
    justify-content: flex-start;
    gap: 8px;
}

.startup-bar-accent span {
    color: #374151;
}

.startup-result-statement {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
    margin-top: 48px;
}

/* --- Clarity / Outputs section --- */
.startup-clarity {
    background: #ffffff;
}

.startup-clarity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.startup-clarity-item {
    text-align: center;
    padding: 32px 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.startup-clarity-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.startup-clarity-number {
    font-size: 32px;
    font-weight: 800;
    color: #c88da0;
    font-family: 'Kallisto', sans-serif;
    margin-bottom: 12px;
}

.startup-clarity-item p {
    font-size: 14px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.startup-emotional-bridge {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.startup-emotional-bridge p {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8;
    font-family: 'Kallisto', sans-serif;
}

/* --- Use cases section --- */
.startup-usecases {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.startup-usecases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.startup-usecase-card {
    text-align: center;
    padding: 32px 16px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.startup-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.startup-usecase-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.startup-usecase-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-family: 'Kallisto', sans-serif;
}

.startup-usecase-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.startup-usecases-closing {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* --- Credibility section --- */
.startup-credibility {
    background: #ffffff;
    text-align: center;
}

.startup-credibility-text {
    font-size: 17px;
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- Speed / Timeline section --- */
.startup-speed {
    background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
}

.startup-speed-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 800px;
    margin: 48px auto;
    position: relative;
}

.startup-speed-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #c88da0, #9b8cbf, #7b7fbf, #4a90c4);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 0;
}

.startup-speed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.startup-speed-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c88da0, #7b7fbf);
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.startup-speed-item span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.startup-speed-closing {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
    font-style: italic;
}

/* --- Differentiation section --- */
.startup-differentiation {
    background: #ffffff;
    text-align: center;
}

.startup-diff-text {
    font-size: 18px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 12px;
}

.startup-diff-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.startup-diff-logo-icon {
    width: 40px;
    height: auto;
}

.startup-diff-logo span {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
    letter-spacing: 0.5px;
}

.startup-diff-highlight {
    font-weight: 700;
    color: #1f2937;
    font-size: 20px;
}

/* --- Conversion section --- */
.startup-conversion {
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0) 0 0 / 28px 28px,
        linear-gradient(160deg, #1e1b4b 0%, #312e81 40%, #4c1d95 70%, #7c3aed 100%);
    text-align: center;
    padding: 100px 0;
}

.startup-conversion-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Kallisto', sans-serif;
}

.startup-conversion-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 40px;
}

.startup-conversion-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Reassurance section --- */
.startup-reassurance {
    background: #ffffff;
    text-align: center;
    padding: 60px 0 40px;
}

.startup-reassurance-text {
    font-size: 17px;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    line-height: 2;
    margin-bottom: 32px;
}

.startup-memory-hook {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
    padding: 24px;
    border-left: 4px solid #c88da0;
    display: inline-block;
    text-align: left;
}

/* --- Startup responsive --- */
@media (max-width: 768px) {
    .startup-hero-title {
        font-size: 32px;
    }

    .startup-section-title {
        font-size: 26px;
    }

    .startup-pain-grid,
    .startup-clarity-grid,
    .startup-usecases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .startup-education-grid {
        grid-template-columns: 1fr;
    }

    .startup-speed-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .startup-speed-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
    }

    .startup-hero-buttons,
    .startup-conversion-buttons {
        flex-direction: column;
        align-items: center;
    }

    .startup-conversion-title {
        font-size: 28px;
    }

    .startup-memory-hook {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .startup-pain-grid,
    .startup-clarity-grid,
    .startup-usecases-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   AGENCIES PAGE STYLES
   ============================================= */

/* --- Agency Hero --- */
.agency-hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0) 0 0 / 30px 30px,
        linear-gradient(160deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #7c3aed 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.agency-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(200, 141, 160, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.agency-hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.agency-hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Kallisto', sans-serif;
}

.agency-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 700px;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
}

.agency-hero-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
}

.agency-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Shared Agency Section Styles --- */
.agency-section {
    padding: 80px 0;
}

.agency-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Kallisto', sans-serif;
}

.agency-section-text {
    font-size: 17px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.agency-section-lead {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.agency-text-muted {
    color: #9ca3af;
    font-style: italic;
}

/* --- Challenge Section --- */
.agency-challenge {
    background: #ffffff;
}

.agency-challenge-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 32px auto;
    max-width: 600px;
}

.agency-challenge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    transition: transform 0.2s ease;
}

.agency-challenge-item:hover {
    transform: translateY(-2px);
}

.agency-challenge-icon {
    font-size: 18px;
}

.agency-highlight-box {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: 16px;
    padding: 32px 40px;
    margin: 32px auto;
    max-width: 600px;
}

.agency-highlight-box p {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Kallisto', sans-serif;
    text-align: center;
    line-height: 1.5;
}

/* --- Solution Section --- */
.agency-solution {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.agency-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 32px auto;
}

.agency-solution-point {
    text-align: center;
    padding: 28px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.agency-solution-point:hover {
    transform: translateY(-4px);
}

.agency-solution-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.agency-solution-point p {
    font-size: 15px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* --- No Risk Section --- */
.agency-norisk {
    background: #ffffff;
}

.agency-norisk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.agency-norisk-card {
    text-align: center;
    padding: 28px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.agency-norisk-card:hover {
    transform: translateY(-4px);
}

.agency-norisk-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.agency-norisk-card p {
    font-size: 14px;
    color: #15803d;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-weight: 500;
}

/* --- Pitch Help Section --- */
.agency-pitchhelp {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.agency-pitchhelp-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 32px auto;
}

.agency-pitchhelp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.agency-pitchhelp-item:hover {
    transform: translateY(-4px);
}

.agency-pitchhelp-number {
    font-size: 24px;
    font-weight: 800;
    color: #c88da0;
    font-family: 'Kallisto', sans-serif;
    flex-shrink: 0;
}

.agency-pitchhelp-item p {
    font-size: 15px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.agency-free-badge {
    background: linear-gradient(135deg, #c88da0 0%, #9b8cbf 50%, #7b7fbf 100%);
    border-radius: 999px;
    padding: 14px 32px;
    display: inline-block;
    margin: 24px auto;
    display: flex;
    justify-content: center;
}

.agency-free-badge p {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Kallisto', sans-serif;
    text-align: center;
}

/* --- Use Cases Section --- */
.agency-usecases {
    background: #ffffff;
}

.agency-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.agency-usecase-card {
    text-align: center;
    padding: 32px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agency-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.agency-usecase-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.agency-usecase-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-family: 'Kallisto', sans-serif;
}

.agency-usecase-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* --- Testimonial Section --- */
.agency-testimonial {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.agency-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 32px;
}

.agency-testimonial-card blockquote {
    border-left: 4px solid #c88da0;
    padding-left: 24px;
    margin: 0 0 24px;
}

.agency-testimonial-card blockquote p {
    font-size: 16px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    font-style: italic;
}

.agency-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agency-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
}

.agency-author-company {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.agency-testimonial-author::before {
    content: '';
    display: none;
}

/* --- How It Works Section --- */
.agency-howitworks {
    background: #ffffff;
}

.agency-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.agency-step-card {
    text-align: center;
    padding: 32px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.agency-step-card:hover {
    transform: translateY(-4px);
}

.agency-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c88da0, #7b7fbf);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Kallisto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.agency-step-card p {
    font-size: 15px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* --- Study Specs Section --- */
.agency-specs {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #eff6ff 100%);
}

.agency-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.agency-spec-card {
    text-align: center;
    padding: 32px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.agency-spec-card:hover {
    transform: translateY(-4px);
}

.agency-spec-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.agency-spec-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
    margin-bottom: 4px;
}

.agency-spec-label {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

/* --- Win-Win Section --- */
.agency-winwin {
    background: #ffffff;
}

.agency-winwin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.agency-winwin-card {
    text-align: center;
    padding: 32px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agency-winwin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.agency-winwin-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.agency-winwin-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-family: 'Kallisto', sans-serif;
}

.agency-winwin-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* --- Final CTA Section --- */
.agency-cta-final {
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0) 0 0 / 28px 28px,
        linear-gradient(160deg, #1e1b4b 0%, #312e81 40%, #4c1d95 70%, #7c3aed 100%);
    text-align: center;
    padding: 100px 0;
}

.agency-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Kallisto', sans-serif;
}

.agency-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 40px;
}

.agency-cta-buttons {
    display: flex;
    justify-content: center;
}

/* --- Key Message Section --- */
.agency-keymessage {
    background: #ffffff;
    text-align: center;
    padding: 60px 0 40px;
}

.agency-memory-hook {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Kallisto', sans-serif;
    padding: 24px;
    border-left: 4px solid #c88da0;
    display: inline-block;
    text-align: left;
}

/* --- Agency Responsive --- */
@media (max-width: 768px) {
    .agency-hero-title {
        font-size: 30px;
    }

    .agency-section-title {
        font-size: 26px;
    }

    .agency-solution-grid {
        grid-template-columns: 1fr;
    }

    .agency-norisk-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agency-pitchhelp-list {
        grid-template-columns: 1fr;
    }

    .agency-usecases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agency-steps-grid,
    .agency-specs-grid,
    .agency-winwin-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agency-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .agency-cta-title {
        font-size: 28px;
    }

    .agency-memory-hook {
        font-size: 22px;
    }

    .agency-highlight-box {
        padding: 24px;
    }

    .agency-highlight-box p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .agency-norisk-grid,
    .agency-usecases-grid,
    .agency-steps-grid,
    .agency-specs-grid,
    .agency-winwin-grid {
        grid-template-columns: 1fr;
    }

    .agency-challenge-list {
        flex-direction: column;
        align-items: stretch;
    }
}
