:root {
    --blue: #1e3a8a;
    --blue-mid: #2d52b8;
    --green: #059669;
    --green-light: #10b981;
    --cyan: #0891b2;
    --dark: #0d1f4e;
    --light: #f0f4ff;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #f8fafc;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    overflow-x: hidden;
    background: var(--white);
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30,58,138,0.08);
    box-shadow: 0 2px 24px rgba(30,58,138,0.07);
    transition: all 0.3s ease;
}

nav .logo img {
    height: 65px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

nav ul li a {
    font-family: 'Montserrat medium', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: var(--green); }

.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 14px rgba(5,150,105,0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5,150,105,0.4) !important;
    color: white !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    padding-top: 72px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 80% 60% at 70% 40%, rgba(8,145,178,0.18) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 20% 70%, rgba(5,150,105,0.14) 0%, transparent 55%),
            radial-gradient(ellipse 40% 40% at 85% 80%, rgba(30,58,138,0.3) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5,150,105,0.15);
    border: 1px solid rgba(5,150,105,0.3);
    color: var(--green-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Montserrat medium', sans-serif;
    font-size: clamp(2.1rem, 4.0vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--green-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(5,150,105,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(5,150,105,0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s 0.2s ease both;
}

.hero-globe {
    width: 360px;
    height: 360px;
    position: relative;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(5,150,105,0.3);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 20s linear infinite;
}

.globe-ring:nth-child(1) { width: 340px; height: 340px; border-color: rgba(8,145,178,0.25); }
.globe-ring:nth-child(2) { width: 280px; height: 280px; border-color: rgba(5,150,105,0.3); animation-duration: 15s; animation-direction: reverse; }
.globe-ring:nth-child(3) { width: 200px; height: 200px; border-color: rgba(30,58,138,0.4); animation-duration: 10s; }

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotateY(0deg); }
    to { transform: translate(-50%, -50%) rotateY(360deg); }
}

.globe-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(30,58,138,0.6), rgba(8,145,178,0.4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8,145,178,0.4);
    box-shadow: 0 0 40px rgba(8,145,178,0.2), inset 0 0 20px rgba(30,58,138,0.3);
}

.globe-center svg {
    width: 56px;
    height: 56px;
    opacity: 0.9;
}

.orbit-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green-light);
    top: 50%; left: 50%;
    box-shadow: 0 0 12px var(--green-light);
}

.orbit-dot:nth-child(5) {
    animation: orbit1 8s linear infinite;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}
.orbit-dot:nth-child(6) {
    animation: orbit2 12s linear infinite;
}
.orbit-dot:nth-child(7) {
    animation: orbit3 6s linear infinite;
    background: #a78bfa;
    box-shadow: 0 0 12px #a78bfa;
    width: 7px; height: 7px;
}

@keyframes orbit1 {
    from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}
@keyframes orbit2 {
    from { transform: rotate(90deg) translateX(110px) rotate(-90deg); }
    to { transform: rotate(450deg) translateX(110px) rotate(-450deg); }
}
@keyframes orbit3 {
    from { transform: rotate(45deg) translateX(170px) rotate(-45deg); }
    to { transform: rotate(405deg) translateX(170px) rotate(-405deg); }
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-family: 'BabaPro', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── SECTIONS ── */
.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full {
    padding: 100px 5%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: BabaPro;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--green);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 580px;
}

/* ── ABOUT ── */
#about {
    background: var(--gray-light);
}

#about .section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(30,58,138,0.08);
    border: 1px solid rgba(30,58,138,0.06);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--cyan));
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.about-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--blue);
}

.about-icon-item .icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(30,58,138,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(30,58,138,0.08);
}

.value-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-icon.blue { background: rgba(30,58,138,0.1); }
.value-icon.green { background: rgba(5,150,105,0.1); }
.value-icon.cyan { background: rgba(8,145,178,0.1); }

.value-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ── SERVICES ── */
#services {
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(30,58,138,0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(30,58,138,0.04), rgba(8,145,178,0.06));
    transition: height 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(30,58,138,0.12);
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(30,58,138,0.06);
    line-height: 1;
    position: absolute;
    top: 20px; right: 20px;
}

.service-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card:nth-child(1) .service-icon-wrap { background: rgba(30,58,138,0.1); }
.service-card:nth-child(2) .service-icon-wrap { background: rgba(5,150,105,0.1); }
.service-card:nth-child(3) .service-icon-wrap { background: rgba(8,145,178,0.1); }
.service-card:nth-child(4) .service-icon-wrap { background: rgba(167,139,250,0.15); }

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(30,58,138,0.08);
    color: var(--blue);
}

/* ── MODEL ÉCON ── */
#model {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

#model .section-full {
    max-width: 1200px;
    margin: 0 auto;
}

#model::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
}

.model-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.model-header .section-label { color: var(--green-light); }
.model-header .section-label::before { background: var(--green-light); }
.model-header .section-title { color: white; }
.model-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.model-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s;
}

.model-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(8,145,178,0.3);
}

.model-card-icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(30,58,138,0.4), rgba(8,145,178,0.3));
    border: 1px solid rgba(8,145,178,0.2);
}

.model-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.model-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ── MARCHE ── */
#marche {
    background: white;
}

.marche-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.marche-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.marche-stat {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(30,58,138,0.07);
}

.marche-stat .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.marche-stat .label {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.opportunity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(30,58,138,0.08);
    transition: border-color 0.2s;
}

.opp-item:hover { border-color: rgba(5,150,105,0.3); }

.opp-dot {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    color: white;
}

.opp-item p {
    font-size: 0.92rem;
    color: var(--dark);
    line-height: 1.5;
    padding-top: 5px;
}

/* ── INVESTIR ── */
#investir {
    background: var(--gray-light);
}

.investir-inner {
    text-align: center;
    margin-bottom: 60px;
}

.investir-inner .section-subtitle { margin: 0 auto; }

.investir-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.investir-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(30,58,138,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.investir-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30,58,138,0.1);
}

.investir-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(8,145,178,0.08));
    border-radius: 12px;
}

.investir-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.investir-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ── EQUIPE ── */
#equipe {
    background: white;
}

.equipe-header {
    margin-bottom: 50px;
}

.team-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(30,58,138,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30,58,138,0.1);
}

.team-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.team-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-card span {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 500;
}

/* ── CONTACT ── */
#contact {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,0.12), transparent 70%);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-left .section-label { color: var(--green-light); }
.contact-left .section-label::before { background: var(--green-light); }
.contact-left .section-title { color: white; }
.contact-left .section-subtitle { color: rgba(255,255,255,0.6); }

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item .info {
    padding-top: 2px;
}

.contact-item .info .c-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-item .info a,
.contact-item .info p {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-item .info a:hover { color: var(--green-light); }

.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px;
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(8,145,178,0.5);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
    background: #06112e;
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

footer .footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

footer .footer-links {
    display: flex;
    gap: 24px;
}

footer .footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s;
}

footer .footer-links a:hover { color: var(--green-light); }

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .model-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    nav ul.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: white;
        padding: 20px 5%;
        border-bottom: 1px solid rgba(30,58,138,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 16px;
    }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    #about .section { grid-template-columns: 1fr; }
    .marche-inner { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .model-grid { grid-template-columns: 1fr; }
    .investir-grid { grid-template-columns: 1fr; }
    .team-visual { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; text-align: center; }
}