/* ============================================
   CodeCyTerra — Charte graphique complète
   ============================================ */

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

:root {
    --navy:  #1a3560;
    --blue:  #1a9ed4;
    --green: #6abf69;
    --white: #ffffff;
    --light: #f4f7fb;
    --muted: #5a6e8a;
    --border:#dce8f5;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
    position: sticky; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0 5%; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700;
    color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--blue); }
.logo-img {
    width: 70px; height: 70px; object-fit: contain;
}
.logo-dot {
    width: 32px; height: 32px; border-radius: 7px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: grid; place-items: center; color: white; font-size: .85rem; font-weight: 700;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    font-size: .86rem; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

/* Dropdown projets */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: .7rem; margin-left: 2px; }
.dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 8px 24px rgba(26,53,96,0.12); padding: 8px 0;
    min-width: 220px; list-style: none; z-index: 200; margin-top: 12px;
}
.dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px; background: var(--white); border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    display: block; padding: 8px 18px; font-size: .84rem; color: var(--navy);
    white-space: nowrap; transition: background .2s;
}
.dropdown-menu li a:hover { background: var(--light); color: var(--blue); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

.nav-cta {
    background: var(--blue); color: white;
    padding: 8px 20px; border-radius: 6px;
    font-size: .85rem; font-weight: 600; text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--navy); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span {
    display: block; width: 22px; height: 2px; background: var(--navy);
    margin: 4px 0; transition: .2s;
}

/* ── HERO (HOME) ── */
.hero-home {
    min-height: 100vh; padding: 100px 5% 60px;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero-home::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(26,158,212,.07) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(26,158,212,.07) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-home::after {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(106,191,105,.1) 0%, transparent 70%);
    right: -100px; top: -100px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
    display: inline-block;
    background: rgba(26,158,212,.18); color: var(--blue);
    font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(26,158,212,.3);
    margin-bottom: 28px;
}
.hero-home h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
    color: white; line-height: 1.2; margin-bottom: 20px;
}
.hero-home h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-home p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO (INNER PAGES) ── */
.hero {
    background: var(--navy); padding: 60px 5% 52px;
    text-align: center; position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(26,158,212,.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(26,158,212,.06) 1px, transparent 1px);
    background-size: 44px 44px;
}
.hero .hero-inner { max-width: 580px; margin: auto; }
.badge {
    display: inline-block;
    background: rgba(26,158,212,.18); color: var(--blue);
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(26,158,212,.3);
    margin-bottom: 20px;
}
.badge-green {
    background: rgba(106,191,105,.18); color: var(--green);
    border-color: rgba(106,191,105,.3);
}
.hero h1 {
    font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700; color: white; margin-bottom: 12px;
}
.hero p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 28px; }
.hero-btn {
    display: inline-block;
    background: var(--blue); color: white;
    padding: 13px 28px; border-radius: 7px;
    font-weight: 600; font-size: .92rem; text-decoration: none;
    transition: background .2s, transform .15s;
}
.hero-btn:hover { background: #1588b8; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--blue); color: white; padding: 13px 28px; border-radius: 7px;
    font-weight: 600; font-size: .95rem; text-decoration: none; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #1588b8; transform: translateY(-1px); }
.btn-outline {
    border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85);
    padding: 13px 28px; border-radius: 7px;
    font-weight: 500; font-size: .95rem; text-decoration: none; transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-label {
    font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 10px;
}
.section-title {
    font-family: 'Sora', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700; color: var(--navy); margin-bottom: 40px;
}

/* ── SERVICES (Cards) ── */
.services { background: var(--light); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
    background: white; border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 28px rgba(26,53,96,.09); transform: translateY(-3px); }
.card-icon { font-size: 1.5rem; margin-bottom: 14px; }
.card h3 { font-family: 'Sora', sans-serif; font-size: .98rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.card p { font-size: .86rem; color: var(--muted); }

/* ── À PROPOS ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h2 {
    font-family: 'Sora', sans-serif; font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--navy); margin-bottom: 14px;
}
.about-text p { color: var(--muted); font-size: .93rem; margin-bottom: 12px; }
.values-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 20px; }
.values-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; color: var(--muted); }
.values-list li strong { color: var(--navy); }
.v-dot {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; font-size: .75rem;
}
.v-dot.blue  { background: rgba(26,158,212,.13); }
.v-dot.green { background: rgba(106,191,105,.13); }

/* ID Card */
.id-card {
    background: var(--navy); border-radius: 16px; padding: 32px;
    box-shadow: 0 12px 40px rgba(26,53,96,.15);
}
.id-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.id-avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: grid; place-items: center;
    font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: white;
}
.id-name  { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: white; }
.id-role  { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.id-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 18px; }
.id-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.id-contact {
    display: flex; align-items: center; gap: 10px;
    font-size: .83rem; color: rgba(255,255,255,.72); text-decoration: none; transition: color .2s;
}
.id-contact:hover { color: var(--blue); }
.id-contact-icon {
    width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
    background: rgba(255,255,255,.07); display: grid; place-items: center; font-size: .8rem;
}
.id-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.id-tag {
    font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.1);
}
.id-tag.blue  { background: rgba(26,158,212,.2);  color: #7dcfee; border-color: rgba(26,158,212,.3); }
.id-tag.green { background: rgba(106,191,105,.2); color: #a0e09a; border-color: rgba(106,191,105,.3); }

/* ── PROJECTS PREVIEW (Home) ── */
.projects-preview { background: var(--light); }
.proj-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.proj-card {
    background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 24px;
    transition: box-shadow .2s, transform .15s;
}
.proj-card:hover { box-shadow: 0 6px 22px rgba(26,53,96,.08); transform: translateY(-2px); }
.proj-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; flex-wrap: wrap; }
.proj-emoji { font-size: 1.3rem; }
.proj-name { font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy); }

/* Pills */
.pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 20px;
}
.pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
.pill-live { background: rgba(106,191,105,.15); color: #3a8a39; }
.pill-live::before { background: var(--green); animation: pulse 1.8s infinite; }
.pill-beta { background: rgba(26,158,212,.12); color: #0d7ab5; }
.pill-beta::before { background: var(--blue); }
.pill-dev  { background: rgba(220,160,60,.12); color: #a06010; }
.pill-dev::before  { background: #e0a030; }
.pill-concept { background: rgba(150,120,200,.12); color: #6040a0; }
.pill-concept::before { background: #9070c8; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 2px rgba(106,191,105,.35)} 50%{box-shadow:0 0 0 5px rgba(106,191,105,.08)} }

.proj-card p { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.proj-link { font-size: .82rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.proj-link:hover { text-decoration: underline; }
.see-all { text-align: center; margin-top: 32px; }
.see-all a {
    border: 1.5px solid var(--border); color: var(--navy);
    padding: 10px 24px; border-radius: 7px;
    font-size: .88rem; font-weight: 600; text-decoration: none; transition: border-color .2s, color .2s;
}
.see-all a:hover { border-color: var(--blue); color: var(--blue); }

/* ── CONTACT SECTION (Home) ── */
.contact-section { background: var(--navy); }
.contact-section .section-label { color: var(--green); }
.contact-section .section-title { color: white; margin-bottom: 14px; }
.contact-sub { color: rgba(255,255,255,.55); font-size: .93rem; margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.8); font-size: .9rem; }
.c-icon {
    width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
    background: rgba(255,255,255,.07); display: grid; place-items: center; font-size: .95rem;
}
.contact-section .contact-item a { color: rgba(255,255,255,.8); text-decoration: none; }
.contact-section .contact-item a:hover { color: var(--blue); }

/* ── PAGE LAYOUT ── */
.page { max-width: 1060px; margin: auto; padding: 64px 5%; }

/* ── PROJECTS PAGE ── */
.projects { display: flex; flex-direction: column; gap: 20px; margin-bottom: 60px; }
.page .proj-card {
    display: grid; grid-template-columns: 1fr auto;
    gap: 20px 32px; align-items: start;
    padding: 30px 32px; border-radius: 14px;
}
.page .proj-card.featured { border-color: var(--blue); background: #fafcff; }
.proj-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.proj-header .proj-emoji { font-size: 1.6rem; }
.proj-header .proj-name { font-size: 1.15rem; font-weight: 700; }
.proj-desc { font-size: .9rem; color: var(--muted); margin-bottom: 16px; max-width: 580px; }
.proj-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-item { font-size: .8rem; color: var(--muted); }
.meta-item strong { color: var(--navy); }
.feat-list { display: flex; flex-direction: column; gap: 5px; list-style: none; }
.feat-list li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: .83rem; color: var(--muted);
}
.feat-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.proj-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; min-width: 160px; }
.btn-visit {
    background: var(--blue); color: white;
    padding: 9px 18px; border-radius: 7px;
    font-size: .82rem; font-weight: 600; text-decoration: none;
    white-space: nowrap; text-align: center; transition: background .2s;
}
.btn-visit:hover { background: var(--navy); }
.page .btn-outline {
    border: 1.5px solid var(--border); color: var(--muted);
    padding: 9px 18px; border-radius: 7px;
    font-size: .82rem; font-weight: 500; text-decoration: none;
    white-space: nowrap; text-align: center;
    transition: border-color .2s, color .2s;
}
.page .btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* Coming soon */
.coming-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px; margin-bottom: 60px;
}
.coming-card {
    border: 1.5px dashed var(--border); border-radius: 12px; padding: 24px 20px;
}
.coming-card .proj-header { margin-bottom: 8px; }
.coming-card p { font-size: .84rem; color: var(--muted); }

/* Method */
.method {
    background: var(--light); border-radius: 14px; padding: 36px;
    margin-bottom: 60px;
}
.method .section-title { margin-bottom: 24px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { display: flex; flex-direction: column; gap: 8px; }
.step-num {
    font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 700;
    color: var(--border);
}
.step h4 { font-size: .9rem; font-weight: 600; color: var(--navy); }
.step p  { font-size: .81rem; color: var(--muted); }

/* CTA Block */
.cta-block {
    background: var(--navy); border-radius: 14px; padding: 40px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.cta-block h2 { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 6px; }
.cta-block p  { font-size: .88rem; color: rgba(255,255,255,.6); }
.cta-blue { background: linear-gradient(135deg, var(--blue), #0d7bb5); }
.cta-white {
    background: white; color: var(--navy);
    padding: 12px 26px; border-radius: 8px;
    font-weight: 700; font-size: .9rem; text-decoration: none;
    white-space: nowrap; flex-shrink: 0; transition: opacity .2s;
}
.cta-white:hover { opacity: .9; }
.cta-blue .cta-white { color: var(--blue); }

/* ── PRICING PAGE ── */
.tabs-wrap { background: var(--light); border-bottom: 1px solid var(--border); padding: 0 5%; }
.tabs { display: flex; gap: 0; overflow-x: auto; }
.tab {
    padding: 16px 22px; font-size: .88rem; font-weight: 500; color: var(--muted);
    cursor: pointer; border-bottom: 2.5px solid transparent;
    white-space: nowrap; transition: color .2s, border-color .2s;
    background: none; border-top: none; border-left: none; border-right: none;
    font-family: inherit;
}
.tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab:hover { color: var(--navy); }

.section { padding: 60px 5%; display: none; }
.section.active { display: block; }
.section-intro { max-width: 560px; color: var(--muted); font-size: .92rem; margin-bottom: 40px; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.price-card {
    border: 1.5px solid var(--border); border-radius: 12px;
    padding: 28px; background: white;
    display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .15s;
}
.price-card:hover { box-shadow: 0 8px 28px rgba(26,53,96,.09); transform: translateY(-2px); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,158,212,.12); }
.featured-badge {
    display: inline-block;
    background: var(--blue); color: white;
    font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 20px; margin-bottom: 14px; width: fit-content;
}
.card-label {
    font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 6px;
}
.price-card h3 {
    font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 600;
    color: var(--navy); margin-bottom: 10px;
}
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-num { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.price-unit { font-size: .82rem; color: var(--muted); }
.price-range { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.devis-tag { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--muted); font-style: italic; }
.price-desc { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.divider { height: 1px; background: var(--border); margin: 16px 0; }
.features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.features li { display: flex; gap: 9px; font-size: .84rem; color: var(--muted); align-items: flex-start; }
.features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: .82rem; flex-shrink: 0; margin-top: 1px; }
.features li strong { color: var(--navy); }
.card-btn {
    margin-top: 20px; display: block; text-align: center;
    padding: 10px; border-radius: 7px;
    font-size: .85rem; font-weight: 600; text-decoration: none;
    transition: background .2s, color .2s;
    border: 1.5px solid var(--border); color: var(--navy);
}
.card-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.price-card.featured .card-btn { background: var(--blue); color: white; border-color: var(--blue); }
.price-card.featured .card-btn:hover { background: var(--navy); border-color: var(--navy); }

.note {
    background: var(--light); border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0; padding: 14px 18px;
    font-size: .84rem; color: var(--muted); margin-top: 32px;
}

/* ── PARTNERS PAGE ── */
.why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px; margin-bottom: 60px;
}
.why-card {
    background: var(--light); border-radius: 10px; padding: 22px 20px;
    border: 1px solid var(--border);
}
.why-icon { font-size: 1.5rem; margin-bottom: 10px; }
.why-card p { font-size: .87rem; color: var(--muted); }
.why-card strong { color: var(--navy); }

.types-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px; margin-bottom: 60px;
}
.type-tag {
    display: inline-block;
    font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.tag-blue   { background: rgba(26,158,212,.12); color: var(--blue); }
.tag-green  { background: rgba(106,191,105,.12); color: #4a9e49; }
.tag-navy   { background: rgba(26,53,96,.1);    color: var(--navy); }
.tag-orange { background: rgba(220,140,60,.12); color: #b86a10; }

.types-grid .type-card {
    border: 1.5px solid var(--border); border-radius: 10px; padding: 24px 20px;
    transition: box-shadow .2s, border-color .2s;
    cursor: default;
}
.types-grid .type-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,53,96,.08); }
.types-grid .type-card h3 { font-family: 'Sora', sans-serif; font-size: .98rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.types-grid .type-card p  { font-size: .84rem; color: var(--muted); }

.process {
    background: var(--navy); border-radius: 14px; padding: 36px;
    margin-bottom: 60px;
}
.process .section-label { color: var(--green); }
.process .section-title { color: white; margin-bottom: 24px; }
.process .steps { display: flex; gap: 0; flex-wrap: wrap; }
.process .step {
    flex: 1; min-width: 180px;
    padding: 0 24px 0 0; position: relative;
}
.process .step:not(:last-child)::after {
    content: '→';
    position: absolute; right: 6px; top: 10px;
    color: rgba(255,255,255,.25); font-size: 1.1rem;
}
.process .step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(26,158,212,.25); border: 1.5px solid var(--blue);
    display: grid; place-items: center;
    font-family: 'Sora', sans-serif; font-size: .8rem; font-weight: 700; color: var(--blue);
    margin-bottom: 10px;
}
.process .step h4 { font-size: .88rem; font-weight: 600; color: white; margin-bottom: 4px; }
.process .step p  { font-size: .8rem; color: rgba(255,255,255,.55); }

.empty {
    background: var(--light); border: 2px dashed var(--border);
    border-radius: 12px; padding: 48px 32px; text-align: center;
    margin-bottom: 48px;
}
.empty-icon { font-size: 2.2rem; margin-bottom: 14px; }
.empty h3 { font-family: 'Sora', sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.empty p { font-size: .87rem; color: var(--muted); max-width: 380px; margin: auto; }

/* ── CONTACT PAGE ── */
.contact-page {
    max-width: 1000px; margin: auto;
    padding: 60px 5%;
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start;
}
.info-block { display: flex; flex-direction: column; gap: 32px; }
.info-label {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--blue); margin-bottom: 14px;
}
.contact-page .contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-page .contact-item { display: flex; align-items: center; gap: 14px; color: var(--navy); }
.contact-page .c-icon {
    width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
    background: var(--light); border: 1px solid var(--border);
    display: grid; place-items: center; font-size: 1rem;
}
.c-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.c-val { font-size: .92rem; color: var(--navy); font-weight: 500; text-decoration: none; }
.c-val:hover { color: var(--blue); }

.type-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-page .type-card {
    background: var(--light); border: 1px solid var(--border); border-radius: 10px;
    padding: 14px 16px; cursor: pointer;
    display: flex; align-items: flex-start; gap: 12px;
    transition: border-color .2s, background .2s;
}
.contact-page .type-card.selected { border-color: var(--blue); background: #f0f8fd; }
.contact-page .type-card:hover { border-color: #b0cfe8; }
.type-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.type-text h4 { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.type-text p  { font-size: .78rem; color: var(--muted); }

/* Form */
.form-title {
    font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
}
.form-required-note { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.required-star { color: #e74c3c; font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.label-text {
    font-size: .76rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .07em; color: var(--muted);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--light); border: 1.5px solid var(--border);
    border-radius: 8px; padding: 11px 14px;
    font-size: .9rem; font-family: inherit; color: var(--navy);
    outline: none; transition: border-color .2s, background .2s;
    width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--blue); background: white;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a0b4c8; }
.contact-form textarea { resize: none; }
.contact-form select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e8a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
}

.rgpd {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .8rem; color: var(--muted);
}
.rgpd input[type="checkbox"] { margin-top: 2px; accent-color: var(--blue); width: 15px; height: 15px; flex-shrink: 0; }
.rgpd label { cursor: pointer; }

.submit-btn {
    background: var(--blue); color: white; border: none;
    padding: 13px; border-radius: 8px;
    font-family: inherit; font-size: .92rem; font-weight: 700;
    cursor: pointer; transition: background .2s, transform .15s;
    width: 100%;
}
.submit-btn:hover { background: var(--navy); transform: translateY(-1px); }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; }

.success-msg {
    background: rgba(106,191,105,.1);
    border: 1.5px solid var(--green); border-radius: 10px;
    padding: 20px; text-align: center; margin-bottom: 20px;
}
.success-msg p { font-size: .9rem; color: #3a7a39; font-weight: 500; }

/* Form errors */
.contact-form .form-field ul { list-style: none; }
.contact-form .form-field li,
.contact-form li.form-error { font-size: .78rem; color: #d44; margin-top: 4px; }

/* ── FOOTER ── */
footer {
    background: #0f2340; padding: 24px 5%;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-links a:hover { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: white; padding: 20px 5%;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }
    .nav-burger { display: block; }
    .nav-cta { display: none; }
    .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; margin: 4px 0 0 16px; padding: 0; display: block; }
    .dropdown-menu::before { display: none; }
    .dropdown-menu li a { padding: 6px 12px; font-size: .82rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-page { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .page .proj-card { grid-template-columns: 1fr; }
    .proj-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .steps { grid-template-columns: 1fr 1fr; }
    .process .steps { flex-direction: column; gap: 20px; }
    .process .step::after { display: none; }
}

@media (max-width: 600px) {
    .price-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
}
