@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* =============================================
   NEEDWEBCOM — CSS PARTAGÉ (pages internes)
   Importe les styles de base depuis index.html
============================================= */

/* ============================================
       NEEDWEBCOM — CSS COMPLET
       Couleur principale : #00A59E
    ============================================ */

    :root {
      --teal: #00A59E;
      --teal-dark: #007f79;
      --teal-light: #00c4bc;
      --teal-glow: rgba(0,165,158,0.25);
      --night: #0a0f1e;
      --navy: #111827;
      --navy-light: #1e2a3a;
      --text: #0a0f1e;
      --text-muted: #fff;
      --text-dark: #1e293b;
      --white: #ffffff;
      --surface: #141c2e;
      --surface-2: #1a2540;
	  --surface-3: #ffffff;
      --border: rgba(255,255,255,0.07);
      --border-light: rgba(0,165,158,0.2);
	  --surface-3: #ffffff;
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --r: 14px;
      --r-lg: 22px;
      --shadow: 0 4px 30px rgba(0,0,0,0.3);
      --shadow-teal: 0 8px 40px rgba(0,165,158,0.3);
      --ease: cubic-bezier(0.4,0,0.2,1);
      --speed: 0.3s;
	  --grey : rgba(0,165,158,0.04);
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      background: var(--night);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--teal); text-decoration: none; transition: color var(--speed) var(--ease); }
    a:hover { color: var(--teal-light); }

    /* ── TYPOGRAPHY ── */
    h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
    h1 { font-size: clamp(2rem,5vw,3rem); }
    h2 { font-size: clamp(1.8rem,4vw,2.5rem); }
    h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
    h4 { font-size: 1.15rem; }
    p { color: var(--night); font-size: 1.025rem; }

    /* ── LAYOUT ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
    .section { padding: 50px 0; background:var(--white); }
    .section-sm { padding: 30px 0; }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* ── HEADER ── */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 40px; height: 76px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(10,15,30,0.85);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: all var(--speed) var(--ease);
    }
    #header.scrolled {
      background: rgba(10,15,30,0.97);
      box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    }
    .logo {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.5px;
    }
    .logo span { color: var(--teal); }

    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-family: var(--font-display);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-muted);
      padding: 7px 13px;
      border-radius: 8px;
      transition: all var(--speed) var(--ease);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      position: relative;
    }
    nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }

    /* Dropdown */
    .nav-item { position: relative; }
    .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown {
      position: absolute; top: calc(100% + 12px); left: 0;
      background: var(--surface-2);
      border: 1px solid var(--border-light);
      border-radius: var(--r);
      min-width: 230px; padding: 8px;
      opacity: 0; visibility: hidden;
      transform: translateY(-8px);
      transition: all var(--speed) var(--ease);
      box-shadow: var(--shadow);
    }
    .dropdown a {
      display: block; padding: 10px 14px;
      font-size: 0.875rem; text-transform: none; letter-spacing: 0;
      border-radius: 8px; color: var(--text-muted);
    }
    .dropdown a:hover { background: rgba(0,165,158,0.1); color: var(--teal); }

    .header-actions { display: flex; align-items: center; gap: 14px; }
    .header-phone {
      font-size: 0.82rem; font-weight: 700;
      
    }
    .header-phone:hover { color: var(--teal); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
      padding: 13px 26px; border-radius: 50px;
      border: 2px solid transparent; cursor: pointer;
      transition: all var(--speed) var(--ease);
      white-space: nowrap; text-align: center;
    }
    .btn-primary {
      background: var(--teal); color: var(--white); border-color: var(--teal);
      box-shadow: 0 4px 24px rgba(0,165,158,0.4);
    }
    .btn-primary:hover {
      background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white);
      transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,165,158,0.5);
    }
    .btn-outline {
      background: var(--teal); color: var(--white); border-color: var(--teal);
      border-color: rgba(255,255,255,0.25);
    }
    .btn-outline:hover {
      background: var(--night); border-color: rgba(255,255,255,0.5);
      color: var(--white); transform: translateY(-2px);
    }
    .btn-ghost {
      background: rgba(0,165,158,0.08);
      color: var(--teal); border-color: var(--border-light);
    }
    .btn-ghost:hover {
      background: rgba(0,165,158,0.18); color: var(--teal-light);
      transform: translateY(-2px);
    }
    .btn-lg { padding: 16px 36px; font-size: 1rem; }
    .btn-sm { padding: 9px 18px; font-size: 0.8rem; }
    .btn-arrow::after {
      content: '→'; transition: transform var(--speed) var(--ease);
    }
    .btn-arrow:hover::after { transform: translateX(5px); }

    /* ── BADGES & TAGS ── */
    .badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(0,165,158,0.1); border: 1px solid var(--border-light);
      color: var(--teal); padding: 6px 14px; border-radius: 50px;
      font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px;
    }
    .badge::before {
      content: ''; width: 7px; height: 7px; background: var(--teal);
      border-radius: 50%; animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.4; transform:scale(1.4); }
    }

    .tag {
      display: inline-block;
      background: rgba(0,165,158,0.1); color: var(--teal);
      padding: 5px 14px; border-radius: 50px;
      font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px;
    }

    /* ── SECTION HEADERS ── */
    .section-header { text-align: center; max-width: 680px; margin: 0 auto 70px; }
    .section-header p { color: var(--white); font-size: 1.05rem; }
	#services .section-header p { color: var(--night); }
	#services .section-header h2 { color: var(--night); }
    .section-header h2 { color: var(--night); margin: 12px 0 16px; }
    .section-header p { color: var(--night); font-size: 1.05rem; }
	#services .section-header p { color: var(--night); }
	#services .section-header h2 { color: var(--night); }
    .accent { color: var(--teal); }

    /* ── HERO ── */
    #hero {
      min-height: 80vh;
      display: flex; align-items: center;
      padding-top: 10px;
      position: relative; overflow: hidden;
    }
	 #hero .container { margin:0 20%; }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,165,158,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(0,100,200,0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0a0f1e 0%, #0f1a2e 50%, #0a0f1e 100%);
    }
    .hero-grid-bg {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
      background-image:
        linear-gradient(rgba(0,165,158,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,165,158,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 720px;
    }
    .hero-content .badge { margin-bottom: 28px; }

    h1.hero-title { color: var(--white); margin-bottom: 22px; font-weight: 700; }
    h1.hero-title .line-teal {
      color: var(--teal);
      position: relative; display: inline-block;
    }
    h1.hero-title .line-teal::after {
      content: '';
      position: absolute; bottom: 2px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light), transparent);
      border-radius: 2px;
    }

    .hero-desc {
      font-size: 1.15rem; line-height: 1.8;
      color: rgba(255,255,255,1);
      max-width: 580px; margin-bottom: 38px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

    .hero-stats {
      display: flex; gap: 80px; margin-top: 50px;
      padding: 20px;
      border-top: 1px solid var(--border);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem; font-weight: 700;
      color: var(--teal); display: block; line-height: 1;
    }
    .stat-lbl {
      font-size: 0.78rem; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.5px; margin-top: 5px;
    }

    /* Floating hero cards */
    .hero-visual {
      position: absolute; right: 10%; top: 50%;
      transform: translateY(-50%);
      width: 420px; z-index: 2;
    }
    .hero-browser {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
    }
    .browser-bar {
      background: var(--surface-2);
      padding: 12px 16px;
      display: flex; align-items: center; gap: 7px;
    }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #ff5f57; }
    .dot-y { background: #febc2e; }
    .dot-g { background: #28c840; }
    .url-bar {
      flex: 1; background: rgba(255,255,255,0.05); border-radius: 5px;
      height: 22px; margin-left: 8px; display: flex; align-items: center;
      padding: 0 10px;
    }
    .url-bar span { font-size: 0.7rem; color: rgba(255,255,255,0.3); }
    .browser-body { padding: 20px; }
    .mock-hero-img {
      background: linear-gradient(135deg, rgba(0,165,158,0.15), rgba(0,165,158,0.05));
      border-radius: 10px; height: 130px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px; border: 1px solid var(--border-light);
    }
    .mock-hero-img span { font-size: 0.8rem; color: var(--text-muted); }
    .mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .mock-card { background: var(--surface-2); border-radius: 8px; height: 55px; border: 1px solid var(--border); }

    .float-card {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border-light);
      border-radius: var(--r);
      padding: 14px 18px;
      display: flex; align-items: center; gap: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
      animation: floatY 6s ease-in-out infinite;
      backdrop-filter: blur(10px);
    }
    .float-card:nth-child(2) { animation-delay: -2s; }
    .float-card:nth-child(3) { animation-delay: -4s; }
    @keyframes floatY {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .fc-icon {
      width: 38px; height: 38px;
      background: rgba(0,165,158,0.15); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .fc-text strong { font-family: var(--font-display); font-size: 0.82rem; color: var(--white); display: block; }
    .fc-text span { font-size: 0.72rem; color: var(--text-muted); }

    /* ── SERVICES ── */
    #services { background: var(--surface-3); }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .service-card {
      background: var(--grey);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 38px 32px;
      transition: all var(--speed) var(--ease);
      position: relative; overflow: hidden;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform var(--speed) var(--ease);
    }
    .service-card:hover {
      border-color: var(--border-light);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--border-light);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .s-icon {
      width: 56px; height: 56px;
      background: rgba(0,165,158); border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 22px;
      transition: all var(--speed) var(--ease);
    }
    .service-card:hover .s-icon { background: rgba(0,165,158); transform: scale(1.05); }
    .service-card h3 { color: var(--teal); margin-bottom: 10px; font-size: 1.2rem; }
	.service-card h3 a { color: var(--night); }
    .service-card p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; color:var(--night); }
    .s-features { list-style: none; }
    .s-features li {
      font-size: 0.85rem; color: var(--night);
      padding: 5px 0; display: flex; align-items: center; gap: 8px;
    }
    .s-features li::before {
      content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.8rem;
      flex-shrink: 0;
    }
    .s-link {
      font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
      color: var(--teal); display: flex; align-items: center; gap: 6px;
      transition: all var(--speed) var(--ease);
    }
    .s-link:hover { gap: 10px; color: var(--teal-light); }

    /* ── STATS ── */
    #stats {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
      position: relative; overflow: hidden; color: white; font-size: 26px; text-align: center; font-family: var(--font-display);
    }
    #stats::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative; z-index: 1;
    }
    .stat-block {
      text-align: center; padding: 30px 30px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat-block:last-child { border-right: none; }
    .stat-block .big-num {
      font-family: var(--font-display);
      font-size: 3.8rem; font-weight: 700;
      color: var(--white); display: block; line-height: 1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    }
    .stat-block .big-lbl {
      font-size: 0.85rem; color: rgba(255,255,255,0.75);
      text-transform: uppercase; letter-spacing: 0.5px; margin-top: 8px;
    }

    /* ── PROCESS ── */
    #process { background: var(--white); }
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
      position: relative;
    }
	.process-grid p { color: var(--night); }
    .process-grid::before {
      content: '';
      position: absolute; top: 38px; left: 12%; right: 12%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--teal), var(--teal-light), transparent);
    }
    .process-step { text-align: center; position: relative; z-index: 1; }
    .step-num {
      width: 76px; height: 76px;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-body); font-size: 1.6rem; font-weight: 700;
      color: white; margin: 0 auto 20px;
      box-shadow: 0 8px 30px rgba(0,165,158,0.4);
    }
    .process-step h4 { color: var(--teal); margin-bottom: 8px; }
    .process-step p { font-size: 0.875rem; }

    /* ── WHY US ── */
    #why { background: var(--white); color: var(--night); }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
    }
    .why-visual {
      background: var(--grey);
      border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 50px 40px; text-align: center;
    }
    .why-visual h3 { color: var(--night); margin: 16px 0 12px; }
    .why-visual p { font-size: 0.9rem; margin-bottom: 28px; color: var(--night); }
    .cert-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
    .cert {
      background: rgba(0,165,158,0.1); border: 1px solid var(--border-light);
      padding: 7px 14px; border-radius: 50px;
      font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
      color: var(--teal);
    }
    .features-list { display: flex; flex-direction: column; gap: 26px; }
    .feat-item { display: flex; gap: 18px; align-items: flex-start; }
    .feat-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(0,165,158,0.08); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; transition: all var(--speed) var(--ease);
    }
    .feat-item:hover .feat-icon { background: rgba(0,165,158,0.2); }
    .feat-item h4 { color: var(--black); margin-bottom: 5px; font-size: 1rem; }
    .feat-item p { color: var(--black); font-size: 0.875rem; margin: 0; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--grey); }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 34px;
      transition: all var(--speed) var(--ease);
    }
	#testimonials .section-header h2, #testimonials .section-header > p { color:var(--white); }
	#testimonials p { color:var(--night); }
	#testimonials .note { color:var(--white); }
	#testimonials .note i { color:yellow; }
	#testimonials .section-header { margin-bottom:0; }
    .testi-card:hover {
      border-color: var(--border-light);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .star { color: #fbbf24; font-size: 0.95rem; }
    .testi-text {
      font-size: 0.95rem; color: var(--night); line-height: 1.8;
      margin-bottom: 22px; font-style: italic;
    }
    .testi-text::before {
      content: '"';
      font-family: var(--font-display); font-size: 2.5rem;
      color: var(--teal); opacity: 0.3;
      line-height: 0; vertical-align: -0.7rem; margin-right: 3px;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .avatar {
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.9rem;
    }
    .author-name {
      font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
      color: var(--teal); display: block;
    }
    .author-co { font-size: 0.78rem; color: var(--teal); }

    /* ── CTA ── */
    #cta {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
      position: relative; overflow: hidden; text-align: center;
    }
    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='32' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
      background-size: 80px 80px;
    }
    #cta .container { position: relative; z-index: 1; }
    #cta h2 { color: white; margin-bottom: 14px; }
    #cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-cta-white {
      background: white; color: var(--teal); border-color: white;
    }
    .btn-cta-white:hover {
      background: var(--night); color: var(--teal-light); border-color: var(--night);
      transform: translateY(-2px);
    }
    .btn-cta-outline {
      background: transparent; color: white; border-color: rgba(255,255,255,0.5);
    }
    .btn-cta-outline:hover {
      background: rgba(255,255,255,0.1); transform: translateY(-2px);
    }

    /* ── CONTACT SECTION ── */
    #contact { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: start; }
    .contact-info {
      background: linear-gradient(135deg, var(--grey), var(--grey));
      border: 1px solid var(--border); border-radius: var(--r-lg);
      padding: 44px 36px; position: sticky; top: 96px;
    }
    .contact-info h3 { color: var(--night); margin-bottom: 6px; }
    .contact-info > p { margin-bottom: 32px; font-size: 0.9rem; color: var(--night); }
    .contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
    .cd-icon {
      width: 44px; height: 44px; background: rgba(0,165,158);
      border-radius: 11px; display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .cd-label {
      font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
      color: var(--night); text-transform: uppercase; letter-spacing: 1px;
      display: block; margin-bottom: 3px;
    }
    .cd-value { color: var(--night); font-size: 0.95rem; font-weight: 500; }
    .cd-value a { color: var(--night); }
    .cd-value a:hover { color: var(--teal); }

    /* Form */
    .contact-form {
      background: var(--teal); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 46px;
    }
    .contact-form h3 { color: var(--white); margin-bottom: 6px; }
    .contact-form > p { margin-bottom: 30px; font-size: 0.9rem; }
	.contact-form a { color: var(--white); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-family: var(--font-display);
      font-size: 0.82rem; font-weight: 600; color: var(--white);
      margin-bottom: 7px;
    }
    .form-group label .req { color: var(--teal); }
    .form-control {
      width: 100%; padding: 13px 16px;
      background: var(--white); border: 2px solid var(--border);
      border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
      color: var(--night); outline: none;
      transition: all var(--speed) var(--ease);
    }
    .form-control:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 4px rgba(0,165,158,0.12);
      background: var(--white);
    }
    .form-control::placeholder { color: rgba(0,0,0,0.5); }
    select.form-control { cursor: pointer; }
    select.form-control option { background: var(--white); }
    textarea.form-control { min-height: 130px; resize: vertical; }
    .form-check { display: flex; gap: 10px; align-items: flex-start; }
    .form-check input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--teal); }
    .form-check label { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; cursor: pointer; }
    .form-msg {
      padding: 13px 16px; border-radius: 9px;
      font-size: 0.875rem; font-weight: 500; display: none;
      margin-bottom: 16px;
    }
    .form-msg.success { background: rgba(0,165,158,0.12); color: var(--teal-light); border: 1px solid var(--border-light); }
    .form-msg.error { background: rgba(255,80,80,0.1); color: #f87171; border: 1px solid rgba(255,80,80,0.2); }

    /* ── FOOTER ── */
    #footer { background: #050810; border-top: 1px solid var(--border); color:var(--white); }
    .footer-top { padding: 80px 0 60px; border-bottom: 1px solid var(--border); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
    .footer-brand .logo { font-size: 1.8rem; margin-bottom: 14px; display: block; }
    .footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 22px; color:var(--white); }
    .footer-contact-row {
      display: flex; align-items: flex-start; gap: 9px;
      font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px;
    }
    .footer-contact-row .ic { color: var(--teal); }
    .footer-contact-row a { color: var(--text-muted); }
    .footer-contact-row a:hover { color: var(--teal); }
    .social-row { display: flex; gap: 10px; margin-top: 22px; }
    .soc-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; color: var(--teal);
      transition: all var(--speed) var(--ease);
    }
    .soc-btn:hover { background: var(--teal); border-color: var(--teal); color: white; transform: translateY(-2px); }
    .footer-col h4 {
      font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--white); margin-bottom: 22px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links li a {
      font-size: 0.85rem; color: var(--text-muted);
      display: flex; align-items: center; gap: 6px;
      transition: all var(--speed) var(--ease);
    }
    .footer-links li a::before { content: '›'; color: var(--teal); font-weight: 700; }
    .footer-links li a:hover { color: var(--teal); padding-left: 4px; }
    .cert-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
    .cert-badge {
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      padding: 6px 11px; border-radius: 7px;
      font-size: 0.7rem; color: var(--text-muted); font-weight: 600;
      font-family: var(--font-display);
    }
    .footer-bottom { padding: 22px 0; }
    .footer-bottom-inner {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
    }
    .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
    .footer-copy a { color: rgba(255,255,255,0.35); }
    .footer-copy a:hover { color: var(--teal); }
    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
    .footer-legal a:hover { color: var(--teal); }

    /* ── BACK TO TOP ── */
    #btt {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 46px; height: 46px;
      background: var(--teal); color: white; border: none; border-radius: 50%;
      font-size: 1.1rem; cursor: pointer; display: none;
      align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(0,165,158,0.4);
      transition: all var(--speed) var(--ease);
    }
    #btt:hover { background: var(--teal-dark); transform: translateY(-3px); }

    /* ── ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
	#why-title { line-height:1; margin-bottom:20px; }

    /* ── MOBILE MENU ── */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--speed) var(--ease); }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero-visual { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      nav { display: none; }
      .hamburger { display: flex; }
      #mobile-nav {
        position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
        background: var(--night); z-index: 999;
        padding: 15px 20px; display: none; flex-direction: column; gap: 4px;
        border-top: 1px solid var(--border);
        overflow-y: auto;
      }
      #mobile-nav.open { display: flex; }
      #mobile-nav a {
        font-family: var(--font-display); font-size: 1rem; font-weight: 600;
        color: var(--text-muted); padding: 10px;
        border-bottom: 1px solid var(--border); border-radius: 0;
      }
      #mobile-nav a.sub { padding-left: 32px; font-size: 0.9rem; }
      .services-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info { position: static; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form { padding: 30px 22px; }
      #header { padding: 0 20px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }
   
	
	/* Page hero */
	.page-hero { min-height: 260px; align-items: center; position: relative; overflow: hidden; }
	.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,165,158,0.12) 0%, transparent 60%), linear-gradient(160deg, #0a0f1e 0%, #0f1a2e 100%); }
	.page-hero h1 { color: var(--white); margin-bottom: 14px; }
	.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; text-align: center; color: var(--white); }
	.page-hero.left p { margin: 0; text-align: left; }
	.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: 0.8rem; }
	.breadcrumb a { color: rgba(255,255,255,0.4); }
	.breadcrumb a:hover { color: var(--teal); }
	.breadcrumb span { color: rgba(255,255,255,0.25); }
	.page-hero { text-align: center; }
	
	.offer-box { background: var(--night); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; margin-bottom: 14px; }
	.offer-box p { color:var(--white); } 
	.offer-box .s-features li { color:var(--white); }
    .offer-box.featured { background: linear-gradient(135deg,rgba(0,165,158,0.08),rgba(0,165,158,0.03)); border-color: rgba(0,165,158,0.4); }
	.offer-box.featured li, .offer-box.featured .offer-price, .offer-box.featured p { color:var(--night); }
    .offer-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
    .offer-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); margin: 7px 0; }
	
	.formation-card { background: rgba(0,165,158,0.04); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 30px; transition: all var(--speed) var(--ease); }
    .formation-card:hover { border-color: var(--border-light); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
    .form-level { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 50px; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
    .level-debutant { background: rgba(0,165,158,0.12); color: var(--teal); }
    .level-intermediaire { background: rgba(255,165,0,0.1); color: #f59e0b; }
    .level-avance { background: rgba(139,92,246,0.1); color: #a78bfa; }
    .formation-card h3 { color: var(--night); margin-bottom: 10px; }
    .formation-card > p { font-size: 0.875rem; margin-bottom: 20px; }
    .form-details { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
    .form-detail { font-size: 0.78rem; color: var(--night); display: flex; align-items: center; gap: 5px; }
    .avantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .avantage { background: var(--grey); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; text-align: center; }
    .avantage h4 { color: var(--night); margin: 12px 0 8px; font-size: 1rem; }
    .avantage p { font-size: 0.83rem; }
    @media (max-width: 900px) { .avantages-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .avantages-grid { grid-template-columns: 1fr; } }
	
	.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .about-visual { background: rgba(0,165,158,0.04); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 50px 40px; text-align: center; }
    .value-card { background: rgba(0,165,158,0.04); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; transition: all var(--speed) var(--ease); }
    .value-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
    .value-card h4 { color: var(--night); margin-bottom: 10px; }
    .partner-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
    .partner-badge { background: rgba(0,165,158,0.04); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 28px; text-align: center; flex: 1; min-width: 150px; transition: all var(--speed) var(--ease); }
    .partner-badge:hover { border-color: var(--border-light); transform: translateY(-3px); }
    .partner-badge span { display: block; font-family: var(--font-display); font-weight: 700; color: var(--night); font-size: 0.95rem; margin-top: 8px; }
    .partner-badge small { font-size: 0.75rem; color: var(--night); }
    @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
	
	.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
    .contact-info { background: rgba(0,165,158,0.04); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 42px 34px; position: sticky; top: 96px; }
    .contact-info h3 { color: var(--night); margin-bottom: 6px; }
    .contact-info > p { margin-bottom: 28px; font-size: 0.9rem; }
    .contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
    .cd-icon { width: 44px; height: 44px; background: rgba(0,165,158,0.12); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .cd-label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
    .cd-value { color: var(--night); font-size: 0.92rem; }
    .cd-value a { color: var(--night); }
    .cd-value a:hover { color: var(--teal); }
    .contact-form { background: var(--teal); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 44px; }
    .contact-form h3 { color: var(--night); margin-bottom: 6px; }
    .contact-form > p { margin-bottom: 28px; font-size: 0.9rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-family: var(--font-display); font-size: 0.81rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
    .form-group label .req { color: var(--teal); }
    .form-control { width: 100%; padding: 12px 15px; background: var(--white); border: 2px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: 0.92rem; color: var(--text); outline: none; transition: all var(--speed) var(--ease); }
    .form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,165,158,0.1); }
    .form-control::placeholder { color: rgba(0,0,0,0.5); }
    select.form-control { cursor: pointer; }
    select.form-control option { }
    textarea.form-control { min-height: 130px; resize: vertical; }
    .form-check { display: flex; gap: 10px; align-items: flex-start; }
    .form-check input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--teal); }
    .form-check label { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; cursor: pointer; }
    .form-msg { padding: 13px 16px; border-radius: 9px; font-size: 0.875rem; font-weight: 500; display: none; margin-bottom: 16px; }
    .form-msg.success { background: rgba(0,165,158,0.1); color: var(--teal-light); border: 1px solid var(--border-light); }
    .form-msg.error { background: rgba(255,80,80,0.08); color: #f87171; border: 1px solid rgba(255,80,80,0.2); }
    .map-embed { border-radius: var(--r-lg); overflow: hidden; margin-top: 22px; border: 1px solid var(--border); }
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info { position: static; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form { padding: 28px 20px; }
    }
	@media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .cta-actions { flex-direction: column; align-items: center; }
      .cta-actions .btn { width: 100%; justify-content: center; }
      .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
	  #hero .container { margin: 0; padding: 0 20px; }
	  .header-actions { display:none; }
	  .page-hero { padding: 50px 0 0 0; }
	  .breadcrumb, .breadcrumb a { margin:0; font-size: 12px; }
	  .container { padding: 0 20px; }
    }
	
	.legal-content { }
    .legal-section { margin-bottom: 22px; }
    .legal-section h2 { font-size: 1.2rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
    .legal-section p, .legal-section li { font-size: 0.9rem; margin-bottom: 8px; }
    .legal-section ul { padding-left: 20px; }
    .legal-section a { color: var(--teal); }

    .legal-content {  }
    .legal-section { margin-bottom: 22px; }
    .legal-section h2 { font-size: 1.2rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
    .legal-section p, .legal-section li { font-size: 0.9rem; margin-bottom: 8px; }
    .legal-section ul { padding-left: 20px; }
    .legal-section a { color: var(--teal); }

/*
:root {
  --teal: #00A59E; --teal-dark: #007f79; --teal-light: #00c4bc;
  --teal-glow: rgba(0,165,158,0.25); --night: #0a0f1e; --navy: #111827;
  --navy-light: #1e2a3a; --text: #e2e8f0; --text-muted: #94a3b8;
  --white: #ffffff; --surface: #141c2e; --surface-2: #1a2540;
  --border: rgba(255,255,255,0.07); --border-light: rgba(0,165,158,0.2);
  --font-display: 'Syne', sans-serif; --font-body: 'DM Sans', sans-serif;
  --r: 14px; --r-lg: 22px;
  --shadow: 0 4px 30px rgba(0,0,0,0.3);
  --ease: cubic-bezier(0.4,0,0.2,1); --speed: 0.3s;
  --grey : #eee;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--night); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--speed) var(--ease); }
a:hover { color: var(--teal-light); }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.7rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
p { color: var(--night); font-size: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; background:var(--white); }
.section-sm { padding: 60px 0; }
.accent { color: var(--teal); }
.tag { display: inline-block; background: rgba(0,165,158,0.1); color: var(--teal); padding: 5px 14px; border-radius: 50px; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { color: var(--night); margin: 12px 0 16px; }

// Header 
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 40px; height: 76px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,15,30,0.92); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); transition: all var(--speed) var(--ease); }
#header.scrolled { background: rgba(10,15,30,0.99); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.logo span { color: var(--teal); }
nav { display: flex; align-items: center; gap: 4px; }
nav a { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--text-muted); padding: 7px 13px; border-radius: 8px; transition: all var(--speed) var(--ease); text-transform: uppercase; letter-spacing: 0.6px; }
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown { position: absolute; top: calc(100% + 12px); left: 0; background: var(--surface-2); border: 1px solid var(--border-light); border-radius: var(--r); min-width: 230px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--speed) var(--ease); box-shadow: var(--shadow); }
.dropdown a { display: block; padding: 10px 14px; font-size: 0.875rem; text-transform: none; letter-spacing: 0; border-radius: 8px; color: var(--text-muted); }
.dropdown a:hover { background: rgba(0,165,158,0.1); color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }
.header-phone:hover { color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--speed) var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
#mobile-nav { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--night); z-index: 999; padding: 30px 28px; display: none; flex-direction: column; gap: 4px; border-top: 1px solid var(--border); overflow-y: auto; }
#mobile-nav.open { display: flex; }
#mobile-nav a { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text-muted); padding: 14px 16px; border-bottom: 1px solid var(--border); }
#mobile-nav a.sub { padding-left: 32px; font-size: 0.9rem; }

// Buttons 
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; padding: 13px 26px; border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: all var(--speed) var(--ease); white-space: nowrap; }
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 4px 24px rgba(0,165,158,0.4); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,165,158,0.5); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.07); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: rgba(0,165,158,0.08); color: var(--teal); border-color: var(--border-light); }
.btn-ghost:hover { background: rgba(0,165,158,0.18); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

//  Page hero 
.page-hero { min-height: 320px; display: flex; align-items: center; padding: 120px 0 70px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,165,158,0.12) 0%, transparent 60%), linear-gradient(160deg, #0a0f1e 0%, #0f1a2e 100%); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; text-align: center; color: var(--white); }
.page-hero.left p { margin: 0; text-align: left; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: 0.8rem; }
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero { text-align: center; }

//  Services grid 
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: var(--grey); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 30px; transition: all var(--speed) var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); transform: scaleX(0); transform-origin: left; transition: transform var(--speed) var(--ease); }
.service-card:hover { border-color: var(--border-light); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.s-icon { width: 54px; height: 54px; background: rgba(0,165,158,0.1); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: all var(--speed) var(--ease); }
.service-card:hover .s-icon { background: rgba(0,165,158,0.2); }
.service-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.875rem; margin-bottom: 18px; }
.s-features { list-style: none; margin-bottom: 22px; }
.s-features li { font-size: 0.83rem; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 7px; }
.s-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--teal); font-size: 0.72rem; }
.s-link { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 6px; transition: all var(--speed) var(--ease); }
.s-link:hover { gap: 10px; color: var(--teal-light); }

//  Process 
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 37px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--teal-light), transparent); }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 74px; height: 74px; background: linear-gradient(135deg, var(--teal-dark), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; margin: 0 auto 18px; box-shadow: 0 8px 28px rgba(0,165,158,0.4); border: 3px solid var(--night); }
.process-step h4 { color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; }

//  Footer 
#footer { background: #050810; border-top: 1px solid var(--border); }
.footer-top { padding: 72px 0 55px; border-bottom: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 55px; }
.footer-brand .logo { font-size: 1.25rem; margin-bottom: 13px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 9px; font-size: 0.83rem; color: var(--text-muted); margin-bottom: 9px; }
.footer-contact-row .ic { color: var(--teal); }
.footer-contact-row a { color: var(--text-muted); }
.footer-contact-row a:hover { color: var(--teal); }
.social-row { display: flex; gap: 9px; margin-top: 20px; }
.soc-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); transition: all var(--speed) var(--ease); }
.soc-btn:hover { background: var(--teal); border-color: var(--teal); color: white; transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.77rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { font-size: 0.83rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; transition: all var(--speed) var(--ease); }
.footer-links li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--teal); font-size: 0.75rem; }
.footer-links li a:hover { color: var(--teal); padding-left: 3px; }
.cert-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 20px; }
.cert-badge { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 5px 10px; border-radius: 7px; font-size: 0.68rem; color: var(--text-muted); font-weight: 600; font-family: var(--font-display); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-copy a { color: rgba(255,255,255,0.35); }
.footer-copy a:hover { color: var(--teal); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.77rem; color: rgba(255,255,255,0.25); }
.footer-legal a:hover { color: var(--teal); }

//  Animations 
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

// Back to top 
#btt { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 44px; height: 44px; background: var(--teal); color: white; border: none; border-radius: 50%; font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,165,158,0.4); transition: all var(--speed) var(--ease); }
#btt:hover { background: var(--teal-dark); transform: translateY(-3px); }

//  Responsive 
@media (max-width: 900px) {
  nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  #header { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
}

*/