/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #FF6854;
    --coral-dark: #e85a47;
    --coral-light: #ff8a7a;
    --black: #1a1a1a;
    --black-light: #2d2d2d;
    --white: #ffffff;
    --cream: #FFF7F6;
    --gray: #f5f5f5;
    --gray-dark: #888888;
    --mint: #30E1C4;
    --font-family-body: 'Plus Jakarta Sans', sans-serif;
    --font-family-heading: 'Space Grotesk', sans-serif;
    --font-size-text: 1rem;
    --font-size-h1: clamp(2.15rem, 5vw, 3.8rem);
    --font-size-h2: clamp(2rem, 4vw, 3rem);
    --font-size-h3: 1.5rem;
    --section-spacing: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 95px;
}

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

p {
    font-family: var(--font-family-body);
    font-size: var(--font-size-text);
}

h2 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(255, 104, 84, 0.1);
}

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

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

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

.nav-link:focus-visible,
.nav-cta:focus-visible,
.btn:focus-visible,
.footer-nav a:focus-visible,
.footer-social a:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 8px;
}

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

.nav-link:hover {
    color: var(--coral);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(255, 104, 84, 0.25);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 104, 84, 0.25);
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
}

.nav-language-mobile {
    display: none;
}

.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    border-radius: 999px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.language-link:hover {
    color: var(--coral);
    background: rgba(255, 104, 84, 0.08);
}

.language-link.active {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(255, 104, 84, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--coral);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding-top: 138px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 104, 84, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .title-highlight-teal {
    color: #0d9488;
}

.hero-title .title-highlight-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--coral);
    font-weight: 700;
}

.hero-subtitle {
    font-size: var(--font-size-text);
    color: var(--black-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-subtitle strong {
    font-weight: 600;
    color: var(--black);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 104, 84, 0.3);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 104, 84, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}

.btn-secondary:hover {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    transform: translateY(-2px);
}

/* Hero: bouton secondaire style maquette (fond blanc, bordure grise) */
.hero .btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black-light);
}

.hero .btn-secondary:hover {
    background: var(--black-light);
    color: var(--white);
    border-color: var(--black-light);
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 104, 84, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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


/* Section Styles */
section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h2);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--coral);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    font-size: var(--font-size-text);
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--black-light);
    line-height: 1.8;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--black);
}

.skill-bar {
    height: 8px;
    background: rgba(255, 104, 84, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 10px;
    transition: width 1s ease-out;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { width: 0; }
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 104, 84, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}

/* Problem / Solution Section */
.problem-solution {
    background: linear-gradient(180deg, #180606 0%, #140909 100%);
    color: var(--white);
}

.problem-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    color: var(--mint);
    margin-bottom: 1.25rem;
}

.problem-title {
    font-family: var(--font-family-heading);
    text-align: center;
    font-size: var(--font-size-h2);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.problem-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
}

.problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 4.5rem;
}

.problem-solution-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(21, 10, 10, 0.85);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.problem-row,
.solution-row {
    padding: 2rem;
}

.problem-row {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(48, 225, 196, 0.04) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.solution-row {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(48, 225, 196, 0.04) 100%);
}

.problem-label,
.solution-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-row .problem-label {
    color: var(--coral);
}

.solution-row .solution-label {
    color: var(--mint);
}

.problem-row p,
.solution-row p {
    font-size: 1.1rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

.problem-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.message-line {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.line-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.1rem;
}

.problem-line .line-icon {
    color: var(--coral);
    border: 1px solid rgba(255, 104, 84, 0.9);
    background: rgba(255, 104, 84, 0.08);
}

.solution-line .line-icon {
    color: var(--mint);
    border: 1px solid rgba(48, 225, 196, 0.9);
    background: rgba(48, 225, 196, 0.08);
}

.difference-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3.5rem;
    text-align: center;
}

.difference-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mint);
    margin-bottom: 1.2rem;
}

.difference-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h2);
    line-height: 1.2;
    color: #ffffff;
    max-width: 980px;
    margin: 0 auto;
}

.difference-title span {
    color: var(--mint);
}

.difference-cta {
    margin-top: 2.2rem;
    min-width: 260px;
}

.difference-note {
    margin-top: 0.9rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Services Section */
.services {
    background: #f4efef;
}

.services-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.services-title.section-title::after {
    display: none;
}

.services-subtitle {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: #5f5a5a;
}

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

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #ece4e4;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.service-card h3 {
    margin: 1rem 0;
    color: #161212;
}

.service-card > p {
    color: #5f5a5a;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(48, 225, 196, 0.12);
    color: var(--mint);
    padding: 0.55rem;
}

.service-icon svg {
    width: 82%;
    height: 82%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.service-icon-coral {
    background: rgba(255, 104, 84, 0.12);
    color: var(--coral);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 1rem;
    background: var(--coral);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(255, 104, 84, 0.28);
}

.service-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.service-list li {
    position: relative;
    padding-left: 1rem;
    color: #2f2a2a;
    line-height: 1.35;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
}

.service-list-coral li::before {
    background: var(--coral);
}


.services-bottom-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.services-bottom-cta p {
    color: #7a7373;
    margin-bottom: 0.9rem;
}

.services-cta-note {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #8d8585;
    font-size: 0.9rem;
}

.services-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid #ddd4d4;
    color: #272121;
    text-decoration: none;
    font-weight: 600;
    background: #ffffff;
}

/* Method Section */
.method {
    background: #fff3f1;
}

.method-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--mint);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.method-title.section-title::after {
    display: none;
}

.method-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #5f5a5a;
}

.method-timeline {
    margin-top: 2.6rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    margin-bottom: 1.4rem;
}

.method-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e4dcdc;
    transform: translateY(-50%);
}

.method-dot {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f4efef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border: 1.5px solid;
}

.method-dot-mint {
    color: var(--mint);
    border-color: rgba(48, 225, 196, 0.7);
}

.method-dot-coral {
    color: var(--coral);
    border-color: rgba(255, 104, 84, 0.7);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.method-card h3 {
    margin: 0.8rem 0;
    font-size: var(--font-size-h3);
}

.method-card p {
    color: #4e4747;
    line-height: 1.55;
}

.method-duration {
    display: inline-block;
    border-radius: 999px;
    padding: 0.23rem 0.68rem;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1;
}

.method-duration-mint {
    color: var(--mint);
    background: rgba(48, 225, 196, 0.12);
}

.method-duration-coral {
    color: var(--coral);
    background: rgba(255, 104, 84, 0.12);
}

.method-cta {
    margin-top: 2.8rem;
    border-radius: 22px;
    padding: 3rem 2rem 3.15rem;
    text-align: center;
    background: linear-gradient(140deg, #180606 0%, #240808 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.method-cta-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--mint);
    margin-bottom: 0.75rem;
}

.method-cta h3 {
    color: var(--white);
    font-size: clamp(1.95rem, 3.2vw, 2.95rem);
    margin-bottom: 0.85rem;
}

.method-cta p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
}

.method-cta-btn {
    margin-top: 1.65rem;
    min-width: 250px;
    box-shadow: 0 0 0 rgba(255, 104, 84, 0), 0 16px 30px rgba(255, 104, 84, 0.36);
}

.method-cta-btn:hover {
    box-shadow: 0 0 0 rgba(255, 104, 84, 0), 0 18px 34px rgba(255, 104, 84, 0.45);
}

.method-cta-note {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

/* Team Section */
.team {
    background: #f7efef;
}

.team-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-title.section-title::after {
    display: none;
}

.team-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #5f5a5a;
}

.team-grid {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
}

.team-card {
    background: #ffffff;
    border: 1px solid #ece4e4;
    border-radius: 18px;
    overflow: hidden;
}

.team-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f0ebeb;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(6px);
}

.team-badge-mint {
    color: #083a33;
    background: rgba(48, 225, 196, 0.92);
}

.team-badge-coral {
    color: #ffffff;
    background: rgba(255, 104, 84, 0.92);
}

.team-content {
    padding: 1.25rem 1.25rem 1.35rem;
}

.team-content h3 {
    margin-bottom: 0.35rem;
}

.team-content p {
    color: #5f5a5a;
}

.team-skills {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.team-skills li {
    margin: 0;
    padding: 0;
}

.team-tag {
    display: inline-block;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

.team-tag-mint {
    color: #0a5c52;
    background: rgba(48, 225, 196, 0.22);
    border: 1px solid rgba(48, 225, 196, 0.45);
}

.team-tag-coral {
    color: #9c2e22;
    background: rgba(255, 104, 84, 0.16);
    border: 1px solid rgba(255, 104, 84, 0.4);
}

.team-duo-card {
    max-width: 720px;
    margin: 2.75rem auto 0;
    padding: 2.25rem 1.75rem 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #ece4e4;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.team-duo-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.team-duo-title {
    margin: 0;
    color: #161212;
    font-size: var(--font-size-h3);
}

.team-duo-text {
    margin: 0;
    max-width: 560px;
    color: #5f5a5a;
    line-height: 1.65;
    font-size: 1rem;
}

.team-duo-text strong {
    color: #2f2a2a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .team-duo-card {
        margin-top: 2rem;
        padding: 1.75rem 1.25rem 2rem;
    }

    .team-duo-emoji {
        font-size: 2.1rem;
    }
}

/* Portfolio Section */
.portfolio {
    background: var(--white);
}

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

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--black-light);
    border-radius: 25px;
    color: var(--black);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

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

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/2;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 104, 84, 0.95) 0%, rgba(232, 90, 68, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.portfolio-overlay p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--coral);
}

/* Lightbox portfolio */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-close:hover {
    background: var(--coral);
    color: var(--white);
}

.lightbox-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: var(--cream);
    display: block;
}

.lightbox-info {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lightbox-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.lightbox-description {
    color: var(--black-light);
    font-size: 1rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: #faf6f4;
}

.testimonials-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--coral);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonials-title.section-title::after {
    display: none;
}

.testimonials-lead {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 18px;
    border: 1px solid #ece8e6;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-mark {
    position: absolute;
    top: 0.35rem;
    left: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.25rem;
    line-height: 1;
    color: #e5e2e0;
    pointer-events: none;
    user-select: none;
}

.testimonial-stars {
    position: relative;
    z-index: 1;
    color: #e6b00a;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
    margin-top: 0.25rem;
}

.testimonials .testimonial-text {
    position: relative;
    z-index: 1;
    margin: 0 0 1.15rem;
    padding: 0;
    border: none;
    color: #2a2624;
    line-height: 1.65;
    font-size: 0.98rem;
}

.testimonials .testimonial-text p {
    margin: 0;
}

.testimonial-metric {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.15rem;
}

.testimonial-metric-icon {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.testimonial-metric-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-metric-sky {
    color: #0c4a6e;
    background: #e0f2fe;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.testimonial-metric-sky .testimonial-metric-icon {
    color: #0284c7;
}

.testimonial-metric-coral {
    color: #9c2e22;
    background: rgba(255, 104, 84, 0.14);
    border: 1px solid rgba(255, 104, 84, 0.35);
}

.testimonial-metric-coral .testimonial-metric-icon {
    color: var(--coral);
}

.testimonial-metric-mint {
    color: #0f5c52;
    background: rgba(48, 225, 196, 0.18);
    border: 1px solid rgba(48, 225, 196, 0.4);
}

.testimonial-metric-mint .testimonial-metric-icon {
    color: #0d9488;
}

.testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.testimonials .author-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    border: none;
    overflow: hidden;
}

.testimonials .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-avatar-teal {
    background: linear-gradient(145deg, #0d9488 0%, #0f766e 100%);
}

.author-avatar-coral {
    background: linear-gradient(145deg, #ff6854 0%, #e85a47 100%);
}

.author-avatar-mint {
    background: linear-gradient(145deg, #30e1c4 0%, #14b8a6 100%);
}

.testimonials .author-name {
    font-weight: 700;
    color: #161212;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.testimonials .author-role {
    font-size: 0.88rem;
    color: #7a7373;
    line-height: 1.35;
}


/* Final CTA Section */
.final-cta {
    background: #faf6f4;
}

.final-cta-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 3.25rem 2rem 2.1rem;
    border-radius: 24px;
    text-align: center;
    background: radial-gradient(1200px 600px at 20% 30%, rgba(48, 225, 196, 0.12) 0%, transparent 55%),
        radial-gradient(1000px 520px at 80% 35%, rgba(255, 104, 84, 0.16) 0%, transparent 55%),
        linear-gradient(140deg, #150606 0%, #1d0707 55%, #0b1620 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 60px rgba(0, 0, 0, 0.22);
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.final-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(48, 225, 196, 0.14);
}

.final-cta-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-title span {
    color: var(--coral);
}

.final-cta-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.final-cta-btn {
    margin-top: 1.8rem;
    min-width: 260px;
    box-shadow: 0 16px 32px rgba(255, 104, 84, 0.38);
}

.final-cta-note {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.final-cta-points {
    margin-top: 2.1rem;
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.final-cta-point {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.final-cta-point-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: #faf6f4;
}

.faq-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--coral);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.faq-title.section-title::after {
    display: none;
}

.faq-list {
    margin-top: 2.25rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 104, 84, 0.06);
    border: 1px solid rgba(255, 104, 84, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item:not([open]) {
    background: #ffffff;
    border-color: #ece8e6;
}

.faq-summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    font-weight: 700;
    color: #161212;
}

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

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    color: #ffffff;
    background: var(--coral);
    flex-shrink: 0;
}

.faq-toggle::before {
    content: "+";
}

.faq-item[open] .faq-toggle::before {
    content: "−";
}

.faq-item:not([open]) .faq-toggle {
    background: #f3efed;
    color: #6b6464;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #5f5a5a;
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

.faq-footer {
    margin-top: 2.25rem;
    text-align: center;
    color: #7a7373;
}

.faq-footer a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 700;
}

.faq-footer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.contact-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.contact-header {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 0.25rem;
}

.contact-title {
    margin: 0 0 0.9rem;
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h2);
    line-height: 1.15;
    color: #161212;
}

.contact-lead {
    margin: 0 0 1.75rem;
    color: #6b6464;
    line-height: 1.65;
    max-width: 560px;
}

.contact-choice {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.contact-choice-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    padding: 1.05rem 1.1rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #ece8e6;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.contact-choice-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(48, 225, 196, 0.14);
    color: #0f766e;
    padding: 0.6rem;
}

.contact-choice-icon-coral {
    background: rgba(255, 104, 84, 0.14);
    color: var(--coral);
}

.contact-choice-card h3 {
    margin: 0 0 0.2rem;
    font-size: var(--font-size-h3);
}

.contact-choice-card p {
    margin: 0;
    color: #7a7373;
    line-height: 1.55;
    font-size: var(--font-size-text);
}

.contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: #6b6464;
}

.contact-points li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.contact-choice-icon svg,
.contact-submit-icon svg,
.contact-check svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.contact-points li span {
    color: var(--mint);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 0.1rem;
}

.contact-details {
    margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 0.75rem;
    max-width: 560px;
}

.contact-detail {
    display: grid;
    gap: 0.15rem;
}

.contact-detail-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9b9494;
    font-weight: 700;
}

.contact-detail-value {
    color: #2a2624;
    font-weight: 600;
}

.contact-detail-link {
    color: #2a2624;
    font-weight: 600;
    text-decoration: none;
}

.contact-detail-link:hover {
    color: var(--coral);
    text-decoration: underline;
}

.contact-check {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(48, 225, 196, 0.16);
    color: #0f766e;
    flex-shrink: 0;
    margin-top: 0.1rem;
    padding: 0.2rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #ece8e6;
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.label-helper {
    font-size: 0.82rem;
    font-weight: 500;
    color: #9b9494;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 104, 84, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.05rem 1.2rem;
    box-shadow: 0 16px 34px rgba(255, 104, 84, 0.28);
}

.contact-submit-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    padding: 0.3rem;
}

.contact-fineprint {
    margin: 0.9rem 0 0;
    text-align: center;
    color: #9b9494;
    font-size: 0.92rem;
}

.form-consent {
    margin-bottom: 1rem;
}

.consent-label {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: #5f5a5a;
    font-size: 0.92rem;
}

.consent-label input {
    margin-top: 0.15rem;
    width: 16px;
    height: 16px;
}

.consent-label a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
}

.consent-label a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    display: block;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9997;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(20, 20, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn-primary {
    background: var(--coral);
    color: #fff;
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #180606 0%, #1d0707 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 2.4rem 0 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.footer-brand-badge {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    color: var(--white);
    font-size: 0.9rem;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
}

.footer-brand-text strong {
    color: var(--coral);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.15rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    display: flex;
    gap: 0.55rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: rgba(255, 104, 84, 0.45);
    color: var(--coral);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.8rem;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p:nth-child(1) {
    text-align: left;
}

.footer-bottom p:nth-child(2) {
    text-align: center;
}

.footer-bottom p:nth-child(3) {
    text-align: right;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.88);
}

/* Legal pages */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding: 3rem 0 4rem;
}

.legal-wrapper {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #ece8e6;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.legal-back {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--coral);
    text-decoration: none;
    font-weight: 700;
}

.legal-back:hover {
    text-decoration: underline;
}

.legal-title {
    margin-bottom: 0.75rem;
}

.legal-date {
    color: #7a7373;
    margin-bottom: 1.5rem;
}

.legal-section {
    margin-top: 1.4rem;
}

.legal-section h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    margin-bottom: 0.55rem;
}

.legal-section p,
.legal-section li {
    color: #3a3333;
}

.legal-section ul {
    margin-left: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

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

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

    .contact-header {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

    .final-cta-card {
        padding: 2.6rem 1.4rem 1.9rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom p:nth-child(1),
    .footer-bottom p:nth-child(2),
    .footer-bottom p:nth-child(3) {
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .problem-cards-grid {
        grid-template-columns: 1fr;
    }

    .difference-block {
        padding-top: 2.5rem;
    }

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

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

    .method-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1rem;
        margin-bottom: 2rem;
    }

    .method-line {
        display: none;
    }

    .method-cta {
        padding: 2.4rem 1.3rem;
    }

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

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }

    .language-switcher {
        display: none;
    }

    .nav-language-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        margin-top: 0.5rem;
    }

    .language-link {
        min-width: 2rem;
        height: 1.85rem;
        padding: 0 0.48rem;
        font-size: 0.72rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1250;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .hero {
        padding-top: 116px;
    }

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

    .portfolio-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .problem-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .problem-row,
    .solution-row {
        padding: 1.5rem;
    }

    .problem-row p,
    .solution-row p {
        font-size: 1rem;
    }

    .difference-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }

    .difference-cta {
        min-width: 220px;
    }

    .difference-note {
        font-size: 0.9rem;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-submit {
        font-size: 0.95rem;
        padding: 0.95rem 1rem;
    }

    .footer-nav {
        gap: 0.8rem;
    }

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

    .method-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .method-dot {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: var(--section-spacing) 0;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .contact-title {
        line-height: 1.2;
    }

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

}
