/* Laboratoire Fertray — Styles principaux */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg:#07091A; --bg2:#0C0E24; --bg3:#11143A;
  --navy:#2f2f6e; --teal:#225676; --sky:#4AABCD; --sky2:#7ECDE8;
  --white:#F0F4FF; --muted:rgba(200,215,255,0.55);
  --line:rgba(74,171,205,0.18); --lineb:rgba(74,171,205,0.08);
}
html { scroll-behavior:smooth; cursor:none; }
body { background:var(--bg); color:var(--white); font-family:"Inter",sans-serif; font-size:16px; line-height:1.6; overflow-x:hidden; }
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--sky); border-radius:2px; }

#cursor { position:fixed; top:0; left:0; z-index:9999; pointer-events:none; }
#cdot { width:7px; height:7px; background:var(--sky); border-radius:50%; position:absolute; transform:translate(-50%,-50%); }
#cring { width:36px; height:36px; border:1px solid rgba(74,171,205,0.5); border-radius:50%; position:absolute; transform:translate(-50%,-50%); transition:width .3s,height .3s,border-color .3s; }
body:has(a:hover) #cring, body:has(button:hover) #cring { width:54px; height:54px; border-color:var(--sky); }
#prog { position:fixed; top:0; left:0; height:2px; background:linear-gradient(90deg,var(--navy),var(--sky)); z-index:9997; width:0%; transition:width .08s; }
body::after { content:''; position:fixed; inset:0; z-index:9998; opacity:.025; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* NAV */
nav { position:fixed; top:0; left:0; right:0; z-index:100; padding:26px 64px; display:flex; align-items:center; justify-content:space-between; transition:all .5s; }
nav.scrolled { padding:14px 64px; background:rgba(7,9,26,0.94); backdrop-filter:blur(24px); border-bottom:1px solid var(--line); }
.nav-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.nav-logo-text { font-family:"Syne",sans-serif; font-size:17px; font-weight:700; letter-spacing:.04em; color:var(--white); }
.nav-logo-text span { color:var(--sky); }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a { font-size:12px; font-weight:400; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); text-decoration:none; position:relative; transition:color .3s; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--sky); transform:scaleX(0); transform-origin:right; transition:transform .4s cubic-bezier(.4,0,.2,1); }
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { transform:scaleX(1); transform-origin:left; }
.nav-cta { font-size:11px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--bg); background:var(--sky); border:none; padding:11px 26px; cursor:pointer; clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,0 100%); transition:all .3s; text-decoration:none; display:inline-block; }
.nav-cta:hover { background:var(--sky2); transform:translateY(-1px); box-shadow:0 12px 32px rgba(74,171,205,0.3); }

/* HERO */
#hero { height:100vh; min-height:680px; display:flex; align-items:center; padding:0 64px; position:relative; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background:radial-gradient(ellipse 70% 60% at 65% 50%,rgba(47,47,110,0.45) 0%,transparent 65%), radial-gradient(ellipse 50% 50% at 10% 80%,rgba(34,86,118,0.2) 0%,transparent 55%), var(--bg); }
.hero-grid { position:absolute; inset:0; opacity:.035; background-image:linear-gradient(rgba(74,171,205,1) 1px,transparent 1px),linear-gradient(90deg,rgba(74,171,205,1) 1px,transparent 1px); background-size:72px 72px; }
.hero-glow { position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(47,47,110,0.35) 0%,transparent 70%); top:50%; left:55%; transform:translate(-50%,-50%); pointer-events:none; animation:pulse 5s ease-in-out infinite; }
.hero-content { position:relative; z-index:2; max-width:820px; }
.hero-eyebrow { font-size:10px; font-weight:400; letter-spacing:.35em; text-transform:uppercase; color:var(--sky); margin-bottom:28px; display:flex; align-items:center; gap:14px; opacity:0; transform:translateY(18px); animation:fadeUp .8s .2s forwards; }
.hero-eyebrow::before { content:''; width:36px; height:1px; background:var(--sky); }
.hero-title { font-family:"Playfair Display",serif; font-size:clamp(48px,6.5vw,90px); font-weight:700; line-height:1.05; letter-spacing:-.02em; margin-bottom:28px; }
.hero-title .ln { display:block; overflow:hidden; }
.hero-title .ln span { display:block; opacity:0; transform:translateY(100%); animation:slideUp .9s forwards; }
.hero-title .ln:nth-child(1) span { animation-delay:.25s; }
.hero-title .ln:nth-child(2) span { animation-delay:.4s; }
.hero-title .ln:nth-child(3) span { animation-delay:.55s; }
.hero-title em { font-style:italic; color:var(--sky); }
.hero-sub { font-size:15px; font-weight:300; color:var(--muted); max-width:420px; line-height:1.85; margin-bottom:44px; opacity:0; transform:translateY(18px); animation:fadeUp .8s .7s forwards; }
.hero-actions { display:flex; gap:18px; align-items:center; opacity:0; transform:translateY(18px); animation:fadeUp .8s .85s forwards; }
.btn-primary { font-size:11px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; color:var(--bg); background:var(--sky); border:none; padding:15px 34px; cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; gap:10px; clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,0 100%); transition:all .4s cubic-bezier(.4,0,.2,1); }
.btn-primary:hover { background:var(--sky2); transform:translateY(-2px); box-shadow:0 16px 40px rgba(74,171,205,0.28); }
.btn-ghost { font-size:11px; font-weight:400; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); background:none; border:1px solid var(--line); padding:15px 28px; cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; gap:10px; transition:all .3s; }
.btn-ghost:hover { color:var(--white); border-color:var(--sky); }
.btn-ghost svg { transition:transform .3s; }
.btn-ghost:hover svg { transform:translateX(5px); }
.hero-scroll { position:absolute; bottom:36px; left:64px; display:flex; align-items:center; gap:14px; font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--muted); opacity:0; animation:fadeUp .8s 1.1s forwards; }
.hero-scroll-line { width:1px; height:52px; background:linear-gradient(to bottom,var(--sky),transparent); animation:scrl 2s 1.4s infinite; }
.hero-tags { position:absolute; right:64px; bottom:36px; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; max-width:280px; opacity:0; animation:fadeUp .8s .95s forwards; }
.hero-tag { font-size:10px; font-weight:400; letter-spacing:.1em; text-transform:uppercase; color:var(--sky); border:1px solid var(--line); padding:6px 12px; }

/* MARQUEE */
.mqwrap { overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:18px 0; background:var(--bg2); }
.mqtrack { display:flex; gap:56px; animation:mq 28s linear infinite; width:max-content; }
.mqitem { font-family:"Playfair Display",serif; font-size:18px; font-style:italic; color:var(--muted); white-space:nowrap; display:flex; align-items:center; gap:18px; }
.mqitem span { color:var(--sky); font-style:normal; font-size:10px; }

/* SECTIONS */
section { padding:110px 64px; position:relative; }
.slabel { font-size:10px; font-weight:400; letter-spacing:.32em; text-transform:uppercase; color:var(--sky); margin-bottom:18px; display:flex; align-items:center; gap:14px; }
.slabel::before { content:''; width:28px; height:1px; background:var(--sky); }
.stitle { font-family:"Playfair Display",serif; font-size:clamp(32px,3.8vw,52px); font-weight:700; line-height:1.1; letter-spacing:-.02em; }
.stitle em { font-style:italic; color:var(--sky); }

/* ABOUT */
#about { background:var(--bg2); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.about-visual { position:relative; }
.about-img-wrap { overflow:hidden; border:1px solid var(--line); }
.about-img-wrap img { width:100%; height:480px; object-fit:cover; object-position:center; display:block; transition:transform .8s cubic-bezier(.4,0,.2,1); }
.about-img-wrap:hover img { transform:scale(1.04); }
.about-badge { position:absolute; bottom:-20px; right:-20px; width:110px; height:110px; border:1px solid var(--sky); background:var(--bg); display:flex; flex-direction:column; align-items:center; justify-content:center; }
.about-badge-num { font-family:"Playfair Display",serif; font-size:28px; font-weight:700; color:var(--sky); line-height:1; }
.about-badge-text { font-size:9px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); text-align:center; padding:0 8px; line-height:1.5; margin-top:4px; }
.about-text .stitle { margin-bottom:24px; }
.about-text p { color:var(--muted); line-height:1.9; margin-bottom:18px; font-weight:300; font-size:14px; }
.about-text p strong { color:var(--white); font-weight:500; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:36px; }
.af { padding:18px; border:1px solid var(--lineb); border-left:2px solid var(--sky); background:rgba(74,171,205,0.04); transition:all .3s; }
.af:hover { background:rgba(74,171,205,0.09); }
.af-title { font-size:12px; font-weight:500; letter-spacing:.04em; margin-bottom:4px; color:var(--white); }
.af-text { font-size:11px; color:var(--muted); font-weight:300; }

/* STATS */
#stats { padding:72px 64px; background:linear-gradient(135deg,rgba(47,47,110,0.6),rgba(34,86,118,0.5)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat { text-align:center; padding:16px; border-right:1px solid rgba(74,171,205,0.15); }
.stat:last-child { border-right:none; }
.stat-num { font-family:"Playfair Display",serif; font-size:52px; font-weight:700; color:var(--sky2); line-height:1; }
.stat-suf { font-size:24px; }
.stat-label { font-size:11px; font-weight:300; letter-spacing:.1em; text-transform:uppercase; color:rgba(200,215,255,0.45); margin-top:6px; }

/* SERVICES */
#services { background:var(--bg); }
.services-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:64px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.scard { background:var(--bg); padding:44px 36px; position:relative; overflow:hidden; transition:background .4s; }
.scard::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--sky),var(--navy)); transform:scaleX(0); transform-origin:left; transition:transform .45s cubic-bezier(.4,0,.2,1); }
.scard:hover { background:var(--bg2); }
.scard:hover::before { transform:scaleX(1); }
.scard-num { font-family:"Playfair Display",serif; font-size:56px; font-weight:700; color:rgba(74,171,205,0.07); line-height:1; position:absolute; top:20px; right:28px; transition:color .4s; }
.scard:hover .scard-num { color:rgba(74,171,205,0.14); }
.scard-ico { width:44px; height:44px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom:24px; transition:border-color .3s; }
.scard:hover .scard-ico { border-color:var(--sky); }
.scard-ico svg { width:20px; height:20px; stroke:var(--sky); fill:none; stroke-width:1.5; }
.scard-title { font-family:"Playfair Display",serif; font-size:20px; font-weight:600; margin-bottom:12px; }
.scard-text { font-size:13px; color:var(--muted); font-weight:300; line-height:1.8; margin-bottom:28px; }
.service-link { font-size:11px; font-weight:500; letter-spacing:.15em; text-transform:uppercase; color:var(--sky); text-decoration:none; display:flex; align-items:center; gap:10px; transition:gap .3s; }
.scard:hover .service-link { gap:16px; }

/* TARIFS */
#tarifs { background:var(--bg2); }
.tarifs-header { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:end; margin-bottom:64px; }
.tarifs-intro { font-size:14px; color:var(--muted); font-weight:300; line-height:1.9; }
.tarifs-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.tarif-row { background:var(--bg2); display:flex; justify-content:space-between; align-items:center; padding:18px 28px; transition:background .25s; border-bottom:1px solid var(--lineb); }
.tarif-row:hover { background:rgba(74,171,205,0.06); }
.tarif-name { font-size:14px; font-weight:300; color:var(--white); }
.tarif-price { font-family:"Inter",sans-serif; font-size:14px; font-weight:500; color:var(--sky); letter-spacing:.05em; }
.tarif-note { grid-column:1/-1; background:rgba(74,171,205,0.05); border:1px solid var(--line); padding:20px 28px; display:flex; align-items:center; gap:14px; margin-top:1px; }
.tarif-note p { font-size:12px; color:var(--muted); font-weight:300; line-height:1.7; }

/* PROCESS */
#process { background:var(--bg); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:72px; position:relative; }
.process-steps::before { content:''; position:absolute; top:31px; left:12.5%; right:12.5%; height:1px; background:linear-gradient(90deg,transparent,var(--sky),transparent); }
.pstep { padding:0 28px 36px; text-align:center; }
.pdot { width:62px; height:62px; border:1px solid var(--sky); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 28px; background:var(--bg); font-family:"Playfair Display",serif; font-size:20px; font-weight:700; color:var(--sky); position:relative; z-index:1; transition:all .4s; }
.pstep:hover .pdot { background:var(--sky); color:var(--bg); box-shadow:0 0 36px rgba(74,171,205,0.3); }
.pstep-title { font-family:"Playfair Display",serif; font-size:17px; font-weight:600; margin-bottom:10px; }
.pstep-text { font-size:12px; color:var(--muted); font-weight:300; line-height:1.8; }

/* TECH */
#tech { background:var(--bg2); }
.tech-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; margin-top:64px; }
.tech-photo { position:relative; overflow:hidden; }
.tech-photo img { width:100%; height:320px; object-fit:cover; display:block; transition:transform .7s cubic-bezier(.4,0,.2,1); filter:brightness(.9) saturate(.85); }
.tech-photo:hover img { transform:scale(1.07); filter:brightness(1) saturate(1); }
.tech-photo-label { position:absolute; bottom:0; left:0; right:0; padding:20px; background:linear-gradient(to top,rgba(7,9,26,0.9),transparent); }
.tpl-title { font-family:"Playfair Display",serif; font-size:16px; font-weight:600; margin-bottom:3px; }
.tpl-sub { font-size:11px; color:var(--sky); font-weight:300; letter-spacing:.06em; }
.tech-brands { display:flex; gap:20px; flex-wrap:wrap; margin-top:28px; }
.tech-brand { border:1px solid var(--line); padding:12px 20px; font-size:13px; font-weight:500; color:var(--muted); letter-spacing:.06em; transition:all .3s; }
.tech-brand:hover { border-color:var(--sky); color:var(--white); }

/* DIFF */
#diff { background:var(--bg); }
.diff-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:center; margin-top:64px; }
.diff-list { display:flex; flex-direction:column; }
.diff-item { padding:24px 0; border-bottom:1px solid var(--lineb); display:flex; align-items:flex-start; gap:20px; transition:padding-left .3s; }
.diff-item:first-child { padding-top:0; }
.diff-item:hover { padding-left:8px; }
.diff-dot { width:8px; height:8px; border-radius:50%; background:var(--sky); flex-shrink:0; margin-top:6px; }
.diff-item-title { font-size:14px; font-weight:500; margin-bottom:4px; }
.diff-item-text { font-size:13px; color:var(--muted); font-weight:300; line-height:1.75; }
.diff-visual { background:var(--bg2); border:1px solid var(--line); padding:44px; clip-path:polygon(0 0,95% 0,100% 5%,100% 100%,5% 100%,0 95%); }
.diff-quote { font-family:"Playfair Display",serif; font-size:22px; font-style:italic; line-height:1.6; color:var(--white); margin-bottom:24px; }
.diff-quote-author { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--sky); display:flex; align-items:center; gap:12px; }
.diff-quote-author::before { content:''; width:24px; height:1px; background:var(--sky); }

/* CTA BAND */
#ctaband { padding:90px 64px; background:var(--bg2); text-align:center; position:relative; overflow:hidden; }
#ctaband::before { content:''; position:absolute; top:-1px; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--sky),transparent); }
#ctaband::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--sky),transparent); }
.cta-bgtext { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-family:"Playfair Display",serif; font-size:clamp(72px,13vw,180px); font-weight:700; color:rgba(74,171,205,0.03); white-space:nowrap; pointer-events:none; }
.cta-content { position:relative; z-index:1; }
.cta-title { font-family:"Playfair Display",serif; font-size:clamp(32px,3.8vw,52px); font-weight:700; margin-bottom:18px; letter-spacing:-.02em; }
.cta-title em { font-style:italic; color:var(--sky); }
.cta-sub { font-size:15px; color:var(--muted); font-weight:300; max-width:480px; margin:0 auto 36px; line-height:1.85; }

/* CONTACT */
#contact { background:var(--bg); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; margin-top:64px; align-items:start; }
.contact-intro { font-size:14px; color:var(--muted); font-weight:300; line-height:1.9; margin-bottom:36px; }
.contact-details { display:flex; flex-direction:column; gap:18px; margin-bottom:36px; }
.cdetail { display:flex; align-items:center; gap:14px; font-size:13px; }
.cdetail-ico { width:38px; height:38px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cdetail-ico svg { width:15px; height:15px; stroke:var(--sky); fill:none; stroke-width:1.5; }
.cdetail span { color:var(--muted); font-weight:300; }
.contact-form { display:flex; flex-direction:column; gap:16px; }
.fgroup { display:flex; flex-direction:column; gap:6px; }
.flabel { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--sky); font-weight:400; }
.finput, .ftextarea { background:var(--bg2); border:1px solid var(--lineb); color:var(--white); padding:13px 16px; font-family:"Inter",sans-serif; font-size:13px; font-weight:300; outline:none; resize:none; transition:border-color .3s; }
.finput:focus, .ftextarea:focus { border-color:var(--sky); box-shadow:0 0 0 1px rgba(74,171,205,0.08); }
.ftextarea { height:110px; }
.frow { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* FOOTER */
footer { background:var(--bg2); border-top:1px solid var(--line); padding:56px 64px 36px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; padding-bottom:36px; border-bottom:1px solid var(--lineb); margin-bottom:32px; }
.fb-name { font-family:"Syne",sans-serif; font-size:22px; font-weight:700; margin-bottom:8px; }
.fb-name span { color:var(--sky); }
.fb-text { font-size:12px; color:var(--muted); font-weight:300; line-height:1.8; margin-bottom:20px; }
.fb-socials { display:flex; gap:10px; }
.fbsocial { width:34px; height:34px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--muted); text-decoration:none; font-size:12px; transition:all .3s; }
.fbsocial:hover { border-color:var(--sky); color:var(--sky); }
.fcol-title { font-size:10px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:var(--sky); margin-bottom:18px; }
.flinks { list-style:none; display:flex; flex-direction:column; gap:9px; }
.flinks a { font-size:12px; color:var(--muted); text-decoration:none; font-weight:300; transition:color .3s; }
.flinks a:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; }
.fcopy { font-size:11px; color:rgba(74,171,205,0.3); font-weight:300; }
.flegal { display:flex; gap:20px; }
.flegal a { font-size:11px; color:rgba(74,171,205,0.3); text-decoration:none; transition:color .3s; }
.flegal a:hover { color:var(--sky); }

/* REVEAL */
.reveal,.rl,.rr { opacity:0; transition:opacity .8s cubic-bezier(.4,0,.2,1),transform .8s cubic-bezier(.4,0,.2,1); }
.reveal { transform:translateY(36px); }
.rl { transform:translateX(-36px); }
.rr { transform:translateX(36px); }
.reveal.on,.rl.on,.rr.on { opacity:1; transform:none; }
/* Fallback : si JS ne déclenche pas, les éléments restent visibles après 1s */
@keyframes fallbackVisible { to { opacity:1; transform:none; } }
.reveal,.rl,.rr { animation:fallbackVisible 0s 1.5s forwards; }
.d1{transition-delay:.1s!important} .d2{transition-delay:.2s!important} .d3{transition-delay:.3s!important}
.d4{transition-delay:.4s!important} .d5{transition-delay:.5s!important} .d6{transition-delay:.6s!important}

/* KEYFRAMES */
@keyframes fadeUp { to{opacity:1;transform:translateY(0);} }
@keyframes slideUp { to{opacity:1;transform:translateY(0);} }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrl { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:.8} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* MOBILE */
@media(max-width:900px){
  nav{padding:18px 22px} nav.scrolled{padding:12px 22px} .nav-links{display:none}
  section{padding:72px 22px} #hero{padding:0 22px} #stats{padding:48px 22px}
  .hero-tags{right:22px;max-width:160px}
  .about-grid,.contact-grid,.diff-grid,.tarifs-header{grid-template-columns:1fr;gap:40px}
  .services-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr 1fr} .process-steps::before{display:none}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat:nth-child(2){border-right:none}
  .stat:nth-child(3){border-top:1px solid rgba(74,171,205,0.15)}
  .stat:nth-child(4){border-top:1px solid rgba(74,171,205,0.15);border-right:none}
  .tech-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
  .footer-bottom{flex-direction:column;gap:14px;text-align:center}
  .services-header{flex-direction:column;align-items:flex-start;gap:18px}
  .frow{grid-template-columns:1fr}
  html{cursor:auto} #cursor{display:none}
}