/* inter-latin-wght-normal */
@font-face {
    font-family: 'Inter Variable';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --dark: #1a1a2e;
    --light: #f8f9fa;
}

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

body {
    font-family: 'Inter Variable', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Glassmorphism styles */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15); */
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 20px;
}

nav.glass {
    background: rgba(255, 255, 255, 0.8);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.nav-links a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Sections */
section {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.card {
    border-radius: 30px;
    padding: 3rem;
    margin: 2rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 2rem 2rem 2rem 0;
}

.hero-content-left {
    text-align: left;
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-screenshot {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.screenshot-container {
    padding: 2rem;
    border-radius: 30px;
    /* box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2); */
}

.screenshot-mockup {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
}

.mockup-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-content {
    display: flex;
    min-height: 400px;
}

.mockup-sidebar {
    width: 200px;
    background: #f7fafc;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item {
    height: 40px;
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}

.mockup-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-card {
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    opacity: .65;
}

.hero h1 {
    font-size: 4rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-highlight svg {
    stroke: var(--dark);
}

.hero-highlight>p:first-child {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hero-highlight {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin: 2rem 0;
    padding: 1.2rem;
    border-radius: 15px;
    background: rgba(102, 126, 234, 0.1);
    display: inline-block;
}

.badge {
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    color: #2d3748;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); */
}

.btn-primary:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4); */
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content sections */
h2 {
    font-size: 3.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: oklch(50.7% .022 261.325);
    margin-bottom: 3rem;
}

/* Grid layouts */
.clients-grid,
.services-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-type {
    display: flex;
    flex-direction: column;
}

.client-type,
.service-card,
.why-card {
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.client-type.glass,
.service-card.glass,
.why-card.glass {
    background: rgba(255, 255, 255, 0.7);
}

.client-type:hover,
.service-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    /* box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2); */
}

.client-icon,
.service-icon,
.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-type h3,
.service-card h3,
.why-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.client-type p,
.service-card p,
.why-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* About section */
.about-content {
    margin-top: 3rem;
}

.duo-intro {
    padding: 3rem;
    margin-bottom: 3rem;
}

.duo-intro.glass {
    background: transparent;
    border: none;
}

.duo-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.duo-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.duo-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.profile-card {
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.profile-card.glass {
    background: rgba(255, 255, 255, 0.7);
}

.profile-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
}

.profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.profile-card h4 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.profile-role {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.profile-card ul {
    list-style: none;
    text-align: left;
}

.profile-card li {
    padding: 0.7rem 0;
    color: #4a5568;
    font-size: 1.05rem;
}

.profile-card li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Process timeline */
.process-timeline {
    margin-top: 3rem;
}

.process-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.process-item.glass {
    background: rgba(255, 255, 255, 0.7);
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(10px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.process-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.process-description {
    color: #4a5568;
    font-size: 1.05rem;
}

/* Results */
.results {
    display: flex;
    gap: 1.5rem;
    padding-top: 2rem;
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.results div {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    font-weight: 600;
}

/* Contact section */
.contact-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    border-radius: 30px;
}

.contact-content.glass {
    background: rgba(255, 255, 255, 0.7);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #2d3748;
}

.contact-info p {
    color: #4a5568;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
}

.contact-item-icon {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item strong {
    display: block;
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #4a5568;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-content.glass {
    background: rgba(255, 255, 255, 0.7);
}

.footer-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section p {
    color: #4a5568;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    color: #718096;
}

@media (max-width: 1200px) {
    .mockup-card span {
        display: none !important;
    }

    .hero-screenshot {
        display: none !important;
    }

    .hero-split {
        display: block;
        gap: 0;
        padding: 0;

    }

    .hero-content-left {
        padding-top: 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .duo-intro {
        padding: 1rem;
    }

    .duo-intro h3 {
        text-align: center;
    }

    .realisations-grid {
        grid-template-columns: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 1rem;
    }

    .hero-content-left {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .process-item {
        flex-direction: column;
    }

    .client-type {
        padding: 2rem 1rem;
    }

    .results {
        gap: .5rem;
    }

    .contact-content {
        padding: 2rem 1rem;
    }

    .contact-item {
        gap: 1rem;
    }
    
    .contact-info h3 {
        text-align: center;
    }

    #contact,
    footer {
        padding: 0rem;
    }

    .section-subtitle {
        padding: 0 .5rem;
    }

    .contact-content,
    .footer-content {
        border-radius: 0;
    }
}