/* ===================================
   ARZOIN - Développeur Web Freelance
   Design ultra moderne inspiré startup
   =================================== */

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette grise professionnelle avec touches de bleu canard */
    --primary: #2D3748;
    --primary-dark: #1A202C;
    --primary-light: #4A5568;
    --accent: #14b8a6;
    --accent-light: #2dd4bf;
    --accent-dark: #0f766e;
    --success: #48BB78;
    --dark: #1A202C;
    --dark-medium: #2D3748;
    --dark-light: #4A5568;
    --gray: #718096;
    --gray-medium: #A0AEC0;
    --gray-light: #CBD5E0;
    --gray-lighter: #E2E8F0;
    --light: #F7FAFC;
    --white: #FFFFFF;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    
    /* Gradients avec bleu canard */
    --gradient-1: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    --gradient-2: linear-gradient(135deg, #2D3748 0%, #14b8a6 100%);
    --gradient-3: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    --gradient-4: linear-gradient(135deg, #CBD5E0 0%, #E2E8F0 100%);
    --gradient-accent: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-teal: 0 4px 16px rgba(20, 184, 166, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-bottom-color: rgba(20, 184, 166, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.logo-text .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    position: relative;
}

@media (min-width: 981px) {
    .nav-menu::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 24px;
        background: rgba(20, 184, 166, 0.15);
        margin-right: -16px;
    }
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-link.active {
    color: var(--accent);
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 8px;
    margin: -8px;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-cta {
    margin-left: 8px;
    position: relative;
}

.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(20, 184, 166, 0.3);
    background: transparent;
    color: var(--accent);
    letter-spacing: 0.3px;
}

.btn-nav-outline:hover {
    background: rgba(20, 184, 166, 0.05);
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-nav-outline:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    width: 100%;
}

.hero .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    bottom: -300px;
    right: -200px;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

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

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-teal);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, #2dd4bf 0%, #0f766e 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray);
    backdrop-filter: blur(10px);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

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

.stat-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===== SECTIONS COMMUNES ===== */
section {
    padding: 120px 0;
    position: relative;
}

/* Exclure les sections des pages légales du padding général */
body > main section {
    padding: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gray-lighter);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROBLEMS ===== */
.problems {
    background: var(--light);
}

.problems-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.problems-intro {
    position: sticky;
    top: 120px;
}

.problems-intro .section-tag {
    display: inline-block;
    margin-bottom: 20px;
}

.problems-intro .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.problems-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-lighter);
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
    transform: translateY(-4px);
}

.problem-marker {
    width: 12px;
    height: 12px;
    background: var(--gray-light);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.problem-item:hover .problem-marker {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.4);
}

.problem-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.floating-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-xl);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-teal);
    border: 3px solid var(--white);
}

.step-icon {
    margin: 20px 0 24px;
    display: flex;
    justify-content: center;
}

.step-card:hover .step-icon svg {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s ease;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-lg);
    opacity: 0.15;
}

.element-1 {
    width: 180px;
    height: 180px;
    top: 5%;
    left: -5%;
    background: var(--gradient-1);
    animation: floatElement1 8s infinite ease-in-out;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -7%;
    background: var(--gradient-2);
    animation: floatElement2 10s infinite ease-in-out;
    animation-delay: -2s;
}

.element-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    right: -5%;
    background: var(--gradient-3);
    animation: floatElement3 7s infinite ease-in-out;
    animation-delay: -4s;
}

.element-4 {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: -6%;
    background: var(--gradient-1);
    animation: floatElement4 9s infinite ease-in-out;
    animation-delay: -1s;
}

.element-5 {
    width: 170px;
    height: 170px;
    top: 20%;
    right: 8%;
    background: var(--gradient-2);
    animation: floatElement5 11s infinite ease-in-out;
    animation-delay: -5s;
}

@keyframes floatElement1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(45deg);
    }
    50% {
        transform: translate(-20px, -40px) rotate(90deg);
    }
    75% {
        transform: translate(40px, -10px) rotate(135deg);
    }
}

@keyframes floatElement2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 30px) rotate(-60deg);
    }
    66% {
        transform: translate(20px, -20px) rotate(120deg);
    }
}

@keyframes floatElement3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(35px, 35px) rotate(180deg) scale(1.1);
    }
}

@keyframes floatElement4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    30% {
        transform: translate(-25px, -35px) rotate(-90deg);
    }
    70% {
        transform: translate(25px, 15px) rotate(90deg);
    }
}

@keyframes floatElement5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    40% {
        transform: translate(45px, -25px) rotate(120deg) scale(0.9);
    }
    80% {
        transform: translate(-30px, 20px) rotate(-120deg) scale(1.05);
    }
}

/* ===== SERVICES ===== */
.services {
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gray-lighter);
    transition: height 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ===== RÉALISATIONS ===== */
.realisations {
    background: var(--white);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.realisation-card {
    background: rgba(247, 250, 252, 0.6);
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.realisation-card:hover {
    border-color: rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.08);
    transform: translateY(-2px);
    background: rgba(247, 250, 252, 0.8);
}

.realisation-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.realisation-meta {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.realisation-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.realisation-bullets li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.realisation-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.15);
}

.realisation-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(20, 184, 166, 0.08);
    color: var(--text-secondary);
    font-size: 11px;
    font-style: italic;
    line-height: 1.5;
}

.realisations-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* ===== WHY  ===== */
.why {
    background: var(--dark);
    color: var(--white);
}

.why h2,
.why .section-tag {
    color: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.why-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-main .why-item:last-child {
    margin-bottom: 0;
}

.why-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(20, 184, 166, 0.05);
    border-color: var(--accent);
    transform: translateX(8px);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-item:hover .why-number {
    color: rgba(255, 255, 255, 0.2);
}

.why-text h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

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

.why-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.why-highlight h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.why-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== REASSURANCE ===== */
.reassurance {
    background: var(--light);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

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

.reassurance-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.reassurance-item p {
    font-size: 1.1rem;
    color: var(--dark);
}

.tech-stack {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tech-stack h3 {
    margin-top: 60px;
    margin-bottom: 12px;
}

.tech-stack > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-badge {
    background: var(--white);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.tech-badge:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent);
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-tag {
    margin-bottom: 16px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.profile-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--accent);
    box-shadow: 
        0 0 0 8px rgba(20, 184, 166, 0.1),
        0 0 0 16px rgba(20, 184, 166, 0.05),
        0 0 40px rgba(20, 184, 166, 0.3),
        0 8px 32px rgba(20, 184, 166, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.4) 0%, rgba(20, 184, 166, 0.1) 50%, transparent 100%);
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

.profile-image-wrapper::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px solid rgba(20, 184, 166, 0.3);
    z-index: 0;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.08);
    }
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 8px rgba(20, 184, 166, 0.15),
        0 0 0 16px rgba(20, 184, 166, 0.08),
        0 0 60px rgba(20, 184, 166, 0.4),
        0 12px 48px rgba(20, 184, 166, 0.3);
}

.profile-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(45, 212, 191, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-placeholder p {
    color: var(--gray);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--light);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-form {
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.08);
    max-width: 100%;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-method {
    text-align: center;
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-lighter);
    transition: all 0.3s ease;
}

.contact-method svg {
    display: block;
    margin: 0 auto 8px;
    color: var(--accent);
}

.contact-method strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-method a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.contact-method strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-method a {
    color: var(--accent);
    text-decoration: none;
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--light);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 50px;
    max-height: 100px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.form-group textarea::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2314b8a6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f766e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}


.form-row .form-group {
    margin-bottom: 0;
}

.form-row + .form-group {
    margin-top: 0;
}

.btn-submit {
    width: auto;
    margin: 24px auto 0;
    display: block;
}

.form-privacy {
    margin-top: 20px;
    text-align: center;
}

.form-privacy a {
    color: var(--accent);
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: var(--radius-md);
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand h3 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 20px 0 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--gray-medium);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.social-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4,
.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-toggle span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.footer-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    gap: 12px;
}

.footer-toggle h4 {
    margin-bottom: 0;
    display: inline-block;
    flex: 1;
}

.footer-arrow {
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.footer-toggle[aria-expanded="true"] .footer-arrow {
    transform: rotate(180deg);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.is-open {
        display: flex;
    }
    
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .problems-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .problems-intro {
        position: relative;
        top: 0;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-sidebar {
        position: relative;
        top: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Empêcher tout overflow horizontal sur mobile uniquement */
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden !important;
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 24px;
        gap: 0;
        transition: left 0.4s ease;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 0 0 16px 16px;
        box-sizing: border-box;
    }
    
    .nav-menu::before {
        display: none;
    }
    
    .nav-menu.is-open {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(20, 184, 166, 0.08);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        width: 100%;
        display: block;
        text-align: left;
        padding: 16px 0;
        font-size: 15px;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(20, 184, 166, 0.15);
    }
    
    .nav-menu .btn-nav-outline {
        width: 100%;
        display: block;
        text-align: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .nav-link:focus-visible,
    .btn-nav-outline:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
    }
    
    .hero {
        min-height: calc(100vh - 80px);
        padding-top: 80px;
        padding-bottom: 0;
        margin: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    .hero-bg {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
    }
    
    .hero .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .hero-stats {
        display: none !important;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Exclure les sections des pages légales du padding en mobile */
    body > main section {
        padding: 0 !important;
    }

/* Exclure les sections des pages légales du padding général */
body > main section {
    padding: 0 !important;
    margin-bottom: 2.5rem;
}
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .problems-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problems-intro {
        text-align: center !important;
    }
    
    .problems-intro .section-title {
        text-align: center !important;
    }
    
    .problems-description {
        text-align: center;
    }
    
    .problem-item:hover {
        transform: translateX(4px);
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .why-number {
        font-size: 32px;
    }
    
    .why-item:hover {
        transform: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col:first-child .logo {
        display: none;
    }
    
    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }
    
    .footer-title {
        display: none;
    }
    
    .footer-toggle {
        display: flex;
        margin-bottom: 0;
    }
    
    .footer-toggle span {
        font-size: 15px;
    }
    
    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin-top 0.3s ease;
        margin-top: 0;
    }
    
    .footer-toggle[aria-expanded="true"] + .footer-links {
        max-height: 500px;
        margin-top: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links li:last-child {
        margin-bottom: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        text-align: center !important;
    }
    
    .about-text .section-tag {
        display: inline-block;
    }
    
    .about-text .section-title {
        text-align: center !important;
    }
    
    .about-description {
        text-align: center;
    }
    
    .profile-image-wrapper {
        max-width: 100%;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .profile-image-wrapper::before {
        width: 260px;
        height: 260px;
    }
    
    .profile-image-wrapper::after {
        width: 280px;
        height: 280px;
    }
    
    .profile-image-wrapper {
        max-width: 100%;
    }
    
    .profile-image {
        width: 240px;
        height: 240px;
    }
    
    .profile-image-wrapper::before {
        width: 280px;
        height: 280px;
    }
    
    .profile-image-wrapper::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 24px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* Scrollbar visible sur desktop */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
    border-left: 1px solid rgba(20, 184, 166, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 6px;
    border: 2px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--light);
}

/* Masquer la scrollbar sur mobile */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }
    
    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

/* ===== LEGAL PAGES STYLES ===== */
body > main {
    background: var(--white);
    min-height: calc(100vh - 80px);
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body > main .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body > main h1 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.legal-update {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 0.95rem;
    display: block;
    visibility: visible;
}

body > main h2 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body > main h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-medium);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
    visibility: visible;
}

body > main section {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background: transparent !important;
}

body > main p {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: var(--text-primary) !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.legal-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
}

.legal-list li {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.75rem !important;
    padding-left: 0 !important;
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body > main ul:not(.legal-list) {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    display: block;
    visibility: visible;
}

body > main ul:not(.legal-list) li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: list-item;
    visibility: visible;
}

body > main a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline;
    visibility: visible;
}

body > main a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

body > main strong {
    font-weight: 600;
    color: var(--dark);
    display: inline;
    visibility: visible;
}

.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    text-align: center;
}

@media (max-width: 768px) {
    body > main {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    body > main h1 {
        font-size: 2rem;
    }
    
    body > main h2 {
        font-size: 1.5rem;
    }
    
    body > main h3 {
        font-size: 1.2rem;
    }
}
