/*
  wolfiedesigns.com | Digital Design Agency | St. Gallen, Switzerland
  Deep Blue #0047B3 + Amber #FFB01F + Warm Paper #F8F7F3 | Rubik + Manrope
  wfd- CSS prefix | AMBER TOP BAR + PIPE-SEPARATED nav links
  BOTTOM-SHEET mobile panel (UNIQUE! slides from bottom like iOS sheet)
  SPLIT EDITORIAL hero with CSS rotating text | HORIZONTAL SCROLL services rail
  ALTERNATING testimonials | PROTRUDING center pricing card
  CHF currency (FIRST in series!) | EN/DE bilingual | First Swiss site!
  COMPLETELY UNIQUE from all 13 previous builds
*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700;900&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --wfd-bg:      #F8F7F3;
  --wfd-bg2:     #EDECEA;
  --wfd-bg3:     #E5E3DF;
  --wfd-dark:    #101010;
  --wfd-dark2:   #1C1C1C;
  --wfd-blue:    #0047B3;
  --wfd-blue2:   #0056D6;
  --wfd-bluet:   rgba(0,71,179,.1);
  --wfd-blue3:   rgba(0,71,179,.06);
  --wfd-amber:   #FFB01F;
  --wfd-amber2:  #FFC142;
  --wfd-amberd:  #CC8A00;
  --wfd-ambert:  rgba(255,176,31,.15);
  --wfd-white:   #FFFFFF;
  --wfd-mid:     #4A4A47;
  --wfd-muted:   #8E8E88;
  --wfd-border:  #D4D2CD;
  --wfd-border2: rgba(0,71,179,.2);
  --wfd-max:     1160px;
  --wfd-fh:      'Rubik', system-ui, sans-serif;
  --wfd-fb:      'Manrope', system-ui, sans-serif;
  --wfd-r:       4px;
  --wfd-r2:      8px;
  --wfd-r3:      14px;
  --wfd-r4:      22px;
  --wfd-rp:      100px;
  --wfd-ease:    all 0.18s cubic-bezier(.4,0,.2,1);
  --wfd-elev:    0 8px 36px rgba(16,16,16,.09);
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{background:var(--wfd-bg);color:var(--wfd-dark);font-family:var(--wfd-fb);font-size:1rem;line-height:1.72;overflow-x:hidden;}
img{display:block;max-width:100%;}a{color:inherit;text-decoration:none;}ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;}address{font-style:normal;}

/* ===== TYPOGRAPHY ===== */
h1{font-family:var(--wfd-fh);font-size:clamp(2.8rem,5.5vw,6.5rem);line-height:1.00;letter-spacing:-.025em;font-weight:900;}
h2{font-family:var(--wfd-fh);font-size:clamp(1.9rem,3.5vw,3.8rem);line-height:1.06;letter-spacing:-.02em;font-weight:700;}
h3{font-family:var(--wfd-fh);font-size:1rem;font-weight:700;}
p{font-size:.96rem;line-height:1.82;color:var(--wfd-mid);}

/* ===== CONTAINERS ===== */
.wfd-hull{max-width:var(--wfd-max);margin:0 auto;padding:0 2.5rem;}
.wfd-slab{padding:7rem 0;}

/* ===== AMBER TOP BAR (unique in series!) ===== */
.wfd-topbar{background:var(--wfd-amber);padding:.4rem 0;}
.wfd-topbar-inner{max-width:var(--wfd-max);margin:0 auto;padding:0 2.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;}
.wfd-topbar-brand{font-family:var(--wfd-fh);font-size:.62rem;font-weight:700;color:var(--wfd-dark);letter-spacing:.02em;}
.wfd-topbar-end{display:flex;align-items:center;gap:1.2rem;}
.wfd-topbar-loc{font-size:.62rem;color:rgba(16,16,16,.55);}
.wfd-topbar-lang{display:flex;align-items:center;gap:.2rem;}
.wfd-tb-la{font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(16,16,16,.45);padding:.08rem .22rem;border-radius:var(--wfd-r);transition:color .14s;}
.wfd-tb-la:hover,.wfd-tb-la.wfd-lon{color:var(--wfd-dark);}
.wfd-tb-sep{font-size:.6rem;color:rgba(16,16,16,.25);}

/* ===== MAIN NAV with PIPE SEPARATORS (unique!) ===== */
.wfd-main-nav{
  background:var(--wfd-white);border-bottom:1px solid var(--wfd-border);
  position:sticky;top:0;z-index:200;
  transition:box-shadow .2s;
}
.wfd-main-nav.wfd-nav-shadow{box-shadow:0 2px 20px rgba(16,16,16,.08);}
.wfd-nav-inner{
  max-width:var(--wfd-max);margin:0 auto;padding:0 2.5rem;
  height:64px;display:flex;align-items:center;gap:0;
}
/* BIGGER LOGO in Rubik */
.wfd-brand-logo{
  font-family:var(--wfd-fh);font-size:1.6rem;font-weight:900;
  color:var(--wfd-dark);letter-spacing:-.03em;margin-right:2.2rem;flex-shrink:0;
}
.wfd-brand-logo span{color:var(--wfd-amber);}
.wfd-brand-logo:hover{color:var(--wfd-blue);}
/* Nav links WITH PIPES */
.wfd-nav-links{display:flex;align-items:center;flex:1;gap:0;}
.wfd-nlink{
  font-family:var(--wfd-fh);font-size:1.0rem;font-weight:600;
  color:var(--wfd-muted);padding:.36rem .7rem;
  transition:color .14s;white-space:nowrap;
}
.wfd-nlink:hover,.wfd-nlink.wfd-on{color:var(--wfd-dark);}
.wfd-npipe{
  color:var(--wfd-border);font-size:.72rem;
  padding:0 .1rem;user-select:none;
}
/* Nav end */
.wfd-nav-end{display:flex;align-items:center;gap:.5rem;margin-left:auto;flex-shrink:0;}
.wfd-nav-cta{
  font-family:var(--wfd-fh);font-size:.9rem;font-weight:700;
  color:var(--wfd-dark);background:var(--wfd-amber);
  padding:.44rem 1.2rem;border-radius:var(--wfd-rp);
  transition:background .14s;white-space:nowrap;
  display:inline-flex;align-items:center;gap:.4rem;
}
.wfd-nav-cta:hover{background:var(--wfd-amber2);}
.wfd-burger{display:none;width:40px;height:40px;align-items:center;justify-content:center;border-radius:var(--wfd-r2);transition:background .14s;color:var(--wfd-dark);}
.wfd-burger:hover{background:var(--wfd-bg);}

/* ===== BOTTOM-SHEET MOBILE PANEL (UNIQUE! slides from bottom like iOS) ===== */
.wfd-sheet-overlay{position:fixed;inset:0;background:rgba(16,16,16,.5);z-index:280;opacity:0;visibility:hidden;transition:all .3s;}
.wfd-sheet-overlay.wfd-shov-on{opacity:1;visibility:visible;}
.wfd-sheet{
  position:fixed;bottom:0;left:0;right:0;z-index:290;
  background:var(--wfd-dark);
  border-radius:var(--wfd-r4) var(--wfd-r4) 0 0;
  transform:translateY(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  padding:2rem 2.5rem 3rem;
  max-height:85vh;overflow-y:auto;
}
.wfd-sheet.wfd-sheet-on{transform:translateY(0);}
.wfd-sheet-hd{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid rgba(255,255,255,.07);}
.wfd-sheet-logo{font-family:var(--wfd-fh);font-size:1.4rem;font-weight:900;color:white;letter-spacing:-.03em;}
.wfd-sheet-logo span{color:var(--wfd-amber);}
.wfd-sheet-cls{width:36px;height:36px;border:1px solid rgba(255,255,255,.12);border-radius:var(--wfd-r2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.4);cursor:pointer;transition:var(--wfd-ease);}
.wfd-sheet-cls:hover{border-color:rgba(255,255,255,.3);color:white;}
.wfd-sheet-nav{display:flex;flex-direction:column;gap:.4rem;}
.wfd-sheet-lnk{font-family:var(--wfd-fh);font-size:1.6rem;font-weight:900;color:rgba(255,255,255,.18);padding:.3rem 0;letter-spacing:-.02em;transition:color .14s;}
.wfd-sheet-lnk:hover{color:var(--wfd-amber);}
.wfd-sheet-cta{margin-top:1.5rem;background:var(--wfd-amber);color:var(--wfd-dark);font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;padding:.7rem 1.9rem;border-radius:var(--wfd-rp);display:inline-block;transition:background .14s;}
.wfd-sheet-cta:hover{background:var(--wfd-amber2);}
.wfd-sheet-lang{display:flex;gap:.5rem;margin-top:1.2rem;}
.wfd-sheet-la{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.2);transition:color .14s;}
.wfd-sheet-la:hover,.wfd-sheet-la.wfd-lon{color:var(--wfd-amber);}

/* ===== HERO - SPLIT EDITORIAL with ROTATING TEXT (UNIQUE!) ===== */
.wfd-hero-split{display:grid;grid-template-columns:48% 52%;min-height:92vh;}
.wfd-hero-L{background:var(--wfd-dark);display:flex;align-items:center;justify-content:flex-end;}
.wfd-hero-L-in{max-width:540px;width:100%;padding:7rem 4rem 7rem 2.5rem;}
.wfd-hero-pre{font-family:var(--wfd-fb);font-size:.48rem;font-weight:600;text-transform:uppercase;letter-spacing:.3em;color:rgba(255,255,255,.28);display:flex;align-items:center;gap:.5rem;margin-bottom:1rem;}
.wfd-hero-pre::before{content:'';width:20px;height:1px;background:var(--wfd-amber);}
.wfd-hero-L h1{color:var(--wfd-white);}
/* Rotating text block */
.wfd-rot-wrap{position:relative;display:block;height:1.05em;overflow:hidden;}
.wfd-rot{position:absolute;top:0;left:0;opacity:0;color:var(--wfd-amber);white-space:nowrap;}
@keyframes wfdR{
  0%{opacity:0;transform:translateY(-14px);}
  10%,32%{opacity:1;transform:translateY(0);}
  42%,100%{opacity:0;transform:translateY(14px);}
}
.wfd-rot-1{animation:wfdR 12s ease-in-out infinite 0s;}
.wfd-rot-2{animation:wfdR 12s ease-in-out infinite 4s;}
.wfd-rot-3{animation:wfdR 12s ease-in-out infinite 8s;}
.wfd-hero-sub{color:rgba(255,255,255,.38);max-width:44ch;margin:1rem 0 2.5rem;font-size:.96rem;}
.wfd-hero-acts{display:flex;gap:.7rem;flex-wrap:wrap;}
/* Right side */
.wfd-hero-R{position:relative;overflow:hidden;}
.wfd-hero-R img{width:100%;height:100%;object-fit:cover;}
.wfd-hero-badge{
  position:absolute;bottom:2rem;left:2rem;
  background:var(--wfd-amber);border-radius:var(--wfd-r3);
  padding:.7rem 1.1rem;display:flex;align-items:center;gap:.5rem;
}
.wfd-badge-n{font-family:var(--wfd-fh);font-size:2rem;font-weight:900;color:var(--wfd-dark);line-height:1;}
.wfd-badge-l{font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.18em;color:rgba(16,16,16,.55);}
.wfd-hero-overlap{position:absolute;top:2rem;right:2rem;background:rgba(16,16,16,.6);backdrop-filter:blur(8px);border-radius:var(--wfd-r2);padding:.6rem .9rem;border:1px solid rgba(255,255,255,.1);}
.wfd-hero-ol-t{font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.4);}
.wfd-hero-ol-v{font-family:var(--wfd-fh);font-size:.88rem;font-weight:700;color:white;}

/* ===== HORIZONTAL SCROLL SERVICES RAIL (UNIQUE in series!) ===== */
.wfd-svc-section{background:var(--wfd-bg);}
.wfd-svc-hdr{max-width:var(--wfd-max);margin:0 auto;padding:0 2.5rem 2rem;display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1rem;}
.wfd-svc-rail{
  display:flex;gap:1.4rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:0 2.5rem 1.5rem;
  scrollbar-width:none;-ms-overflow-style:none;
  max-width:calc(var(--wfd-max) + 5rem);margin:0 auto;
}
.wfd-svc-rail::-webkit-scrollbar{display:none;}
.wfd-svc-pane{
  min-width:320px;max-width:320px;
  scroll-snap-align:start;flex-shrink:0;
  background:var(--wfd-white);border:1.5px solid var(--wfd-border);
  border-radius:var(--wfd-r4);padding:1.8rem;
  transition:var(--wfd-ease);cursor:pointer;
  border-top:3px solid transparent;
}
.wfd-svc-pane:hover{border-top-color:var(--wfd-blue);transform:translateY(-2px);box-shadow:var(--wfd-elev);}
.wfd-svc-icon-ring{width:44px;height:44px;background:var(--wfd-blue3);border:1.5px solid rgba(0,71,179,.18);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--wfd-blue);margin-bottom:1.1rem;}
.wfd-svc-tag{font-family:var(--wfd-fh);font-size:.38rem;font-weight:700;text-transform:uppercase;letter-spacing:.22em;color:var(--wfd-blue);}
.wfd-svc-nm{font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:var(--wfd-dark);margin:.3rem 0 .5rem;}
.wfd-svc-blurb{font-size:.82rem;color:var(--wfd-mid);line-height:1.7;margin-bottom:1.2rem;}
.wfd-svc-from{font-family:var(--wfd-fh);font-size:.86rem;font-weight:700;color:var(--wfd-blue);}
/* Scroll arrows */
.wfd-rail-nav{display:flex;gap:.5rem;}
.wfd-rail-btn{width:36px;height:36px;border:1.5px solid var(--wfd-border);border-radius:var(--wfd-rp);display:flex;align-items:center;justify-content:center;color:var(--wfd-muted);cursor:pointer;transition:var(--wfd-ease);}
.wfd-rail-btn:hover{border-color:var(--wfd-blue);color:var(--wfd-blue);}

/* ===== STATS BAND ===== */
.wfd-stats-band{background:var(--wfd-blue);}
.wfd-stats-row{max-width:var(--wfd-max);margin:0 auto;padding:4rem 2.5rem;display:grid;grid-template-columns:repeat(4,1fr);}
.wfd-stat-col{text-align:center;padding:1rem;border-right:1px solid rgba(255,255,255,.1);}
.wfd-stat-col:last-child{border-right:none;}
.wfd-stat-n{font-family:var(--wfd-fh);font-size:3rem;font-weight:900;color:var(--wfd-amber);}
.wfd-stat-l{font-size:.46rem;font-weight:600;text-transform:uppercase;letter-spacing:.2em;color:rgba(255,255,255,.3);margin-top:.3rem;}

/* ===== PORTFOLIO 3-col triptych ===== */
.wfd-port-triptych{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.wfd-port-tile{border-radius:var(--wfd-r4);overflow:hidden;position:relative;height:300px;cursor:pointer;}
.wfd-port-tile img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.wfd-port-tile:hover img{transform:scale(1.04);}
.wfd-port-info{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(to top,rgba(16,16,16,.85) 0%,transparent 60%);
  padding:1.5rem;
  transform:translateY(6px);opacity:0;transition:all .28s;
}
.wfd-port-tile:hover .wfd-port-info{transform:translateY(0);opacity:1;}
.wfd-port-type{font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.18em;color:var(--wfd-amber);margin-bottom:.2rem;}
.wfd-port-nm{font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:white;}

/* ===== PROCESS numbered list ===== */
.wfd-proc-section{background:var(--wfd-dark);}
.wfd-proc-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;}
.wfd-proc-line{display:grid;grid-template-columns:80px 1fr;gap:2rem;padding:2.5rem 0;border-bottom:1px solid rgba(255,255,255,.05);}
.wfd-proc-line:last-child{border-bottom:none;}
.wfd-proc-nb{font-family:var(--wfd-fh);font-size:2.4rem;font-weight:900;color:var(--wfd-amber);line-height:1;opacity:.9;}
.wfd-proc-icon-spot{width:36px;height:36px;background:rgba(0,71,179,.2);border:1px solid rgba(0,71,179,.35);border-radius:var(--wfd-r2);display:flex;align-items:center;justify-content:center;color:rgba(0,86,214,.9);margin-bottom:.6rem;}
.wfd-proc-h{font-family:var(--wfd-fh);font-size:1rem;font-weight:700;color:rgba(255,255,255,.75);margin-bottom:.4rem;}
.wfd-proc-txt{font-size:.84rem;color:rgba(255,255,255,.28);line-height:1.7;max-width:55ch;}

/* ===== ALTERNATING TESTIMONIALS (UNIQUE pattern!) ===== */
.wfd-testi-section{background:var(--wfd-bg2);}
.wfd-testi-stack{display:flex;flex-direction:column;gap:0;}
.wfd-testi-row{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;padding:3.5rem 0;border-bottom:1px solid var(--wfd-border);}
.wfd-testi-row:last-child{border-bottom:none;}
.wfd-testi-row:nth-child(even) .wfd-testi-qblock{order:2;}
.wfd-testi-row:nth-child(even) .wfd-testi-who-block{order:1;}
.wfd-testi-mark{font-family:Georgia,serif;font-size:4.5rem;color:var(--wfd-blue);line-height:.7;margin-bottom:.3rem;opacity:.4;}
.wfd-testi-text{font-family:var(--wfd-fh);font-size:1.1rem;font-weight:700;color:var(--wfd-dark);line-height:1.4;max-width:44ch;}
.wfd-testi-who{font-family:var(--wfd-fb);font-size:.9rem;font-weight:600;color:var(--wfd-blue);margin-top:1.2rem;}
.wfd-testi-city{font-size:.72rem;color:var(--wfd-muted);}
.wfd-testi-who-block{background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r3);padding:1.6rem;border-left:4px solid var(--wfd-amber);}
.wfd-twho-nm{font-family:var(--wfd-fh);font-size:.9rem;font-weight:700;color:var(--wfd-dark);margin-bottom:.3rem;}
.wfd-twho-role{font-size:.8rem;color:var(--wfd-blue);}
.wfd-twho-loc{font-size:.7rem;color:var(--wfd-muted);margin-top:.2rem;}

/* ===== PRICING - PROTRUDING CENTER CARD (unique!) ===== */
.wfd-price-section{background:var(--wfd-bg);}
.wfd-price-rack{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:center;}
.wfd-pk{background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r4);padding:2rem;transition:var(--wfd-ease);}
.wfd-pk:hover{box-shadow:var(--wfd-elev);}
.wfd-pk-growth{margin:-24px 0;z-index:2;position:relative;box-shadow:0 12px 48px rgba(16,16,16,.14);}
.wfd-pk-growth{background:linear-gradient(155deg, var(--wfd-blue) 0%, var(--wfd-blue2) 100%);border:none;}
.wfd-pk-featured-lbl{position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:var(--wfd-amber);color:var(--wfd-dark);font-family:var(--wfd-fh);font-size:.4rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em;padding:.2rem .9rem;border-radius:0 0 var(--wfd-r) var(--wfd-r);}
.wfd-pk-nm{font-family:var(--wfd-fh);font-size:1.3rem;font-weight:900;color:var(--wfd-dark);}
.wfd-pk-growth .wfd-pk-nm{color:white;}
.wfd-pk-tag{font-size:.8rem;color:var(--wfd-muted);display:block;margin-bottom:1.2rem;}
.wfd-pk-growth .wfd-pk-tag{color:rgba(255,255,255,.5);}
.wfd-pk-amt{font-family:var(--wfd-fh);font-size:2.8rem;font-weight:900;color:var(--wfd-dark);line-height:1;}
.wfd-pk-growth .wfd-pk-amt{color:white;}
.wfd-pk-note{font-size:.62rem;color:var(--wfd-muted);margin:.3rem 0 1.2rem;}
.wfd-pk-growth .wfd-pk-note{color:rgba(255,255,255,.4);}
.wfd-pk-sep{border:none;border-top:1px solid var(--wfd-border);margin:1rem 0;}
.wfd-pk-growth .wfd-pk-sep{border-color:rgba(255,255,255,.15);}
.wfd-pk-inc{display:flex;align-items:flex-start;gap:.44rem;font-size:.84rem;color:var(--wfd-mid);margin-bottom:.36rem;}
.wfd-pk-growth .wfd-pk-inc{color:rgba(255,255,255,.7);}
.wfd-pk-inc svg{color:var(--wfd-blue);flex-shrink:0;margin-top:.1rem;}
.wfd-pk-growth .wfd-pk-inc svg{color:rgba(255,255,255,.65);}

/* ===== FAQ with amber accent ===== */
.wfd-faq-section{background:var(--wfd-white);}
.wfd-faq-col{max-width:720px;margin:0 auto;}
.wfd-faq-entry{border-bottom:1px solid var(--wfd-border);}
.wfd-faq-entry:first-child{border-top:1px solid var(--wfd-border);}
.wfd-faq-q-btn{width:100%;display:flex;align-items:center;gap:.8rem;padding:1.2rem 0;cursor:pointer;background:none;border:none;text-align:left;}
.wfd-faq-q-txt{font-family:var(--wfd-fb);font-size:.94rem;font-weight:600;color:var(--wfd-dark);flex:1;line-height:1.4;transition:color .14s;}
.wfd-faq-q-tog{color:var(--wfd-blue);flex-shrink:0;transition:transform .18s;}
.wfd-faq-entry.wfd-fq-on .wfd-faq-q-tog{transform:rotate(45deg);}
.wfd-faq-entry.wfd-fq-on .wfd-faq-q-txt{color:var(--wfd-blue);}
.wfd-faq-body{display:none;padding:.2rem 0 1.2rem;}
.wfd-faq-body p{font-size:.9rem;color:var(--wfd-mid);border-left:3px solid var(--wfd-amber);padding-left:1rem;}

/* ===== INLINE CTA EMAIL (UNIQUE - dark section with embedded form!) ===== */
.wfd-pulse-section{background:var(--wfd-dark);}
.wfd-pulse-in{max-width:var(--wfd-max);margin:0 auto;padding:7rem 2.5rem;text-align:center;}
.wfd-pulse-h2{font-family:var(--wfd-fh);font-size:clamp(2.4rem,5vw,5rem);font-weight:900;color:white;letter-spacing:-.025em;margin-bottom:.5rem;}
.wfd-pulse-sub{font-size:.9rem;color:rgba(255,255,255,.3);margin-bottom:2.5rem;max-width:48ch;margin-left:auto;margin-right:auto;}
.wfd-pulse-form{display:flex;max-width:440px;margin:0 auto;gap:.5rem;flex-wrap:wrap;justify-content:center;}
.wfd-pulse-email{flex:1;min-width:220px;background:rgba(255,255,255,.06);border:1.5px solid rgba(255,255,255,.14);border-radius:var(--wfd-rp);padding:.7rem 1.2rem;color:white;font-size:.94rem;outline:none;transition:border-color .14s;}
.wfd-pulse-email::placeholder{color:rgba(255,255,255,.25);}
.wfd-pulse-email:focus{border-color:rgba(255,176,31,.5);}
.wfd-pulse-go{background:var(--wfd-amber);color:var(--wfd-dark);font-family:var(--wfd-fh);font-size:.92rem;font-weight:700;padding:.7rem 1.6rem;border-radius:var(--wfd-rp);border:none;cursor:pointer;transition:background .14s;white-space:nowrap;}
.wfd-pulse-go:hover{background:var(--wfd-amber2);}
.wfd-pulse-ok{display:none;font-family:var(--wfd-fh);font-size:1rem;font-weight:700;color:var(--wfd-amber);padding:1rem;}

/* ===== SECTION LABELS ===== */
.wfd-pre{font-family:var(--wfd-fb);font-size:.46rem;font-weight:700;text-transform:uppercase;letter-spacing:.3em;color:var(--wfd-blue);display:block;margin-bottom:.7rem;}
.wfd-pre-w{color:rgba(255,176,31,.6);}
.wfd-pre-a{color:var(--wfd-amber);}

/* ===== BUTTONS ===== */
.wfd-btn-amber{display:inline-flex;align-items:center;gap:.44rem;font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:var(--wfd-dark);background:var(--wfd-amber);padding:.7rem 1.9rem;border-radius:var(--wfd-rp);transition:background .14s;border:none;cursor:pointer;white-space:nowrap;}
.wfd-btn-amber:hover{background:var(--wfd-amber2);}
.wfd-btn-blue{display:inline-flex;align-items:center;gap:.44rem;font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:white;background:var(--wfd-blue);padding:.7rem 1.9rem;border-radius:var(--wfd-rp);transition:background .14s;border:none;cursor:pointer;white-space:nowrap;}
.wfd-btn-blue:hover{background:var(--wfd-blue2);}
.wfd-btn-dark{display:inline-flex;align-items:center;gap:.44rem;font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:white;background:var(--wfd-dark);padding:.7rem 1.9rem;border-radius:var(--wfd-rp);transition:background .14s;border:none;cursor:pointer;white-space:nowrap;}
.wfd-btn-dark:hover{background:var(--wfd-dark2);}
.wfd-btn-ghost{display:inline-flex;align-items:center;gap:.44rem;font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:var(--wfd-dark);background:transparent;padding:.68rem 1.9rem;border-radius:var(--wfd-rp);border:1.5px solid var(--wfd-border);transition:var(--wfd-ease);white-space:nowrap;}
.wfd-btn-ghost:hover{border-color:var(--wfd-blue);color:var(--wfd-blue);}
.wfd-btn-ghost-w{display:inline-flex;align-items:center;gap:.44rem;font-family:var(--wfd-fh);font-size:.96rem;font-weight:700;color:rgba(255,255,255,.55);background:transparent;padding:.68rem 1.9rem;border-radius:var(--wfd-rp);border:1.5px solid rgba(255,255,255,.18);transition:border-color .14s;white-space:nowrap;}
.wfd-btn-ghost-w:hover{border-color:rgba(255,255,255,.5);color:white;}
.wfd-btn-sm-a{display:inline-flex;align-items:center;gap:.36rem;font-family:var(--wfd-fh);font-size:.88rem;font-weight:700;color:var(--wfd-dark);background:var(--wfd-amber);padding:.42rem 1.1rem;border-radius:var(--wfd-rp);border:none;cursor:pointer;transition:background .14s;white-space:nowrap;}
.wfd-btn-sm-a:hover{background:var(--wfd-amber2);}
.wfd-btn-sm-b{display:inline-flex;align-items:center;gap:.36rem;font-family:var(--wfd-fh);font-size:.88rem;font-weight:700;color:white;background:var(--wfd-blue);padding:.42rem 1.1rem;border-radius:var(--wfd-rp);border:none;cursor:pointer;transition:background .14s;white-space:nowrap;}
.wfd-btn-sm-b:hover{background:var(--wfd-blue2);}
.wfd-btn-sm-g{display:inline-flex;align-items:center;gap:.36rem;font-family:var(--wfd-fh);font-size:.88rem;font-weight:700;color:var(--wfd-mid);background:transparent;padding:.4rem 1.1rem;border-radius:var(--wfd-rp);border:1.5px solid var(--wfd-border);transition:var(--wfd-ease);white-space:nowrap;}
.wfd-btn-sm-g:hover{border-color:var(--wfd-blue);color:var(--wfd-blue);}
.wfd-btn-sm-d{display:inline-flex;align-items:center;gap:.36rem;font-family:var(--wfd-fh);font-size:.88rem;font-weight:700;color:white;background:var(--wfd-dark);padding:.42rem 1.1rem;border-radius:var(--wfd-rp);border:none;cursor:pointer;transition:background .14s;white-space:nowrap;}
.wfd-btn-sm-d:hover{background:var(--wfd-dark2);}

/* ===== PAGE CAP ===== */
.wfd-pagecap{background:var(--wfd-dark);padding:9rem 0 5rem;}
.wfd-pagecap-in{max-width:var(--wfd-max);margin:0 auto;padding:0 2.5rem;}
.wfd-pagecap h1{color:white;max-width:24ch;}
.wfd-pagecap h1 span{color:var(--wfd-amber);}
.wfd-pagecap-sub{color:rgba(255,255,255,.32);max-width:54ch;margin:.8rem 0 0;}

/* ===== FORMS ===== */
.wfd-fg{margin-bottom:.7rem;}
.wfd-fl{display:block;font-family:var(--wfd-fb);font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--wfd-muted);margin-bottom:.3rem;}
.wfd-fi{width:100%;background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r2);padding:.7rem 1rem;color:var(--wfd-dark);font-size:.94rem;transition:border-color .14s;}
.wfd-fi:focus{outline:none;border-color:var(--wfd-blue);box-shadow:0 0 0 3px var(--wfd-bluet);}
.wfd-agree{display:flex;align-items:flex-start;gap:.5rem;font-size:.82rem;color:var(--wfd-mid);margin:1rem 0;line-height:1.6;}
.wfd-agree input{margin-top:.14rem;accent-color:var(--wfd-blue);}
.wfd-agree a{color:var(--wfd-blue);}

/* ===== CHECKOUT + BUILDER ===== */
.wfd-checkout-wrap{max-width:var(--wfd-max);margin:0 auto;padding:5rem 2.5rem;display:grid;grid-template-columns:1fr 290px;gap:4rem;align-items:start;}
.wfd-co-aside{position:sticky;top:80px;background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r3);overflow:hidden;}
.wfd-co-hd{padding:.8rem 1.2rem;border-bottom:1px solid var(--wfd-border);background:var(--wfd-bg2);}
.wfd-co-hl{font-family:var(--wfd-fb);font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--wfd-muted);}
.wfd-co-body{padding:.9rem 1.2rem;}
.wfd-co-ln{display:flex;justify-content:space-between;gap:.5rem;font-size:.82rem;margin-bottom:.4rem;}
.wfd-co-lnm{color:var(--wfd-mid);}
.wfd-co-lnp{font-family:var(--wfd-fh);font-weight:700;color:var(--wfd-blue);}
.wfd-co-sep{border:none;border-top:1px solid var(--wfd-border);margin:.6rem 0;}
.wfd-co-tot{display:flex;justify-content:space-between;align-items:flex-end;}
.wfd-co-totl{font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--wfd-muted);}
.wfd-co-totv{font-family:var(--wfd-fh);font-size:2rem;font-weight:900;color:var(--wfd-blue);}

.wfd-builder-wrap{max-width:var(--wfd-max);margin:0 auto;padding:4rem 2.5rem 8rem;display:grid;grid-template-columns:1fr 290px;gap:4rem;align-items:start;}
.wfd-build-grp{margin-bottom:2rem;}
.wfd-build-lbl{display:block;font-family:var(--wfd-fb);font-size:.46rem;font-weight:700;text-transform:uppercase;letter-spacing:.24em;color:var(--wfd-blue);margin-bottom:.9rem;}
.wfd-sel-row{background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r2);padding:.88rem 1rem;display:flex;align-items:center;gap:.7rem;cursor:pointer;user-select:none;transition:var(--wfd-ease);margin-bottom:.44rem;}
.wfd-sel-row:hover{border-color:var(--wfd-border2);}
.wfd-sel-row.wfd-sel-on{border-color:var(--wfd-blue);background:var(--wfd-bluet);}
.wfd-sel-dot{width:16px;height:16px;border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r);flex-shrink:0;transition:var(--wfd-ease);}
.wfd-sel-row.wfd-sel-on .wfd-sel-dot{background:var(--wfd-blue);border-color:var(--wfd-blue);}
.wfd-sel-nm{font-size:.88rem;color:var(--wfd-mid);flex:1;}
.wfd-sel-row.wfd-sel-on .wfd-sel-nm{color:var(--wfd-dark);font-weight:600;}
.wfd-sel-pr{font-family:var(--wfd-fh);font-size:.84rem;font-weight:700;color:var(--wfd-blue);white-space:nowrap;}
.wfd-chip-rack{display:flex;flex-wrap:wrap;gap:.5rem;}
.wfd-chip{background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-rp);padding:.46rem 1rem;cursor:pointer;user-select:none;transition:var(--wfd-ease);}
.wfd-chip.wfd-chip-on{border-color:var(--wfd-blue);background:var(--wfd-bluet);}
.wfd-chip-nm{font-size:.82rem;font-weight:600;color:var(--wfd-mid);}
.wfd-chip.wfd-chip-on .wfd-chip-nm{color:var(--wfd-dark);}
.wfd-chip-pr{font-size:.62rem;color:var(--wfd-muted);margin-top:.1rem;}
.wfd-chip.wfd-chip-on .wfd-chip-pr{color:var(--wfd-blue);}
.wfd-hrs-box{background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r2);padding:1rem 1.1rem;}
.wfd-hrs-hd{display:flex;justify-content:space-between;align-items:center;margin-bottom:.6rem;}
.wfd-hrs-lbl{font-size:.88rem;color:var(--wfd-mid);}
.wfd-hrs-val{font-family:var(--wfd-fh);font-size:1.8rem;font-weight:900;color:var(--wfd-blue);}
.wfd-hrs-range{-webkit-appearance:none;width:100%;height:3px;background:var(--wfd-border);border-radius:2px;cursor:pointer;}
.wfd-hrs-range::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border-radius:50%;background:var(--wfd-blue);border:2px solid white;cursor:pointer;}
/* Receipt */
.wfd-rcpt{background:var(--wfd-dark);border-radius:var(--wfd-r3);overflow:hidden;position:sticky;top:80px;}
.wfd-rcpt-hd{padding:.8rem 1.2rem;border-bottom:1px solid rgba(255,255,255,.06);}
.wfd-rcpt-hl{font-family:var(--wfd-fb);font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:rgba(255,255,255,.22);}
.wfd-rcpt-body{padding:.9rem 1.2rem;min-height:70px;}
.wfd-rcpt-empty{font-size:.78rem;color:rgba(255,255,255,.18);}
.wfd-rcpt-ln{display:flex;justify-content:space-between;gap:.5rem;font-size:.8rem;margin-bottom:.4rem;}
.wfd-rcpt-lnm{color:rgba(255,255,255,.32);}
.wfd-rcpt-lnp{font-family:var(--wfd-fh);font-weight:700;color:var(--wfd-amber);}
.wfd-rcpt-ft{border-top:1px solid rgba(255,255,255,.06);padding:.9rem 1.2rem;}
.wfd-rcpt-tot{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:.9rem;}
.wfd-rcpt-totl{font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.18);}
.wfd-rcpt-totv{font-family:var(--wfd-fh);font-size:2.4rem;font-weight:900;color:var(--wfd-amber);}
.wfd-rcpt-go{display:block;width:100%;background:var(--wfd-amber);color:var(--wfd-dark);font-family:var(--wfd-fh);font-size:.92rem;font-weight:700;padding:.76rem;border-radius:var(--wfd-rp);border:none;cursor:pointer;transition:background .14s;}
.wfd-rcpt-go:hover:not(:disabled){background:var(--wfd-amber2);}
.wfd-rcpt-go:disabled{opacity:.2;cursor:not-allowed;}

/* ===== SERVICE DETAIL ===== */
.wfd-svc-detail{max-width:var(--wfd-max);margin:0 auto;padding:5rem 2.5rem;display:grid;grid-template-columns:1fr 260px;gap:5rem;align-items:start;}
.wfd-svc-body h2{font-family:var(--wfd-fh);font-size:1.1rem;font-weight:700;color:var(--wfd-blue);margin:2.5rem 0 .5rem;}
.wfd-dlv-row{display:flex;align-items:flex-start;gap:.44rem;font-size:.9rem;color:var(--wfd-mid);margin-bottom:.36rem;}
.wfd-dlv-row svg{color:var(--wfd-blue);flex-shrink:0;margin-top:.1rem;}
.wfd-svc-aside{position:sticky;top:80px;}
.wfd-asbox{background:var(--wfd-white);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r3);overflow:hidden;}
.wfd-asbox-top{padding:1.4rem;border-bottom:1px solid var(--wfd-border);}
.wfd-as-from{font-size:.44rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--wfd-muted);margin-bottom:.3rem;}
.wfd-as-price{font-family:var(--wfd-fh);font-size:1.5rem;font-weight:900;color:var(--wfd-blue);margin-bottom:.9rem;}
.wfd-asbox-img img{width:100%;height:100px;object-fit:cover;display:block;}
.wfd-as-other-h{font-size:.42rem;font-weight:700;text-transform:uppercase;letter-spacing:.22em;color:var(--wfd-muted);padding:1rem 1.4rem .5rem;}
.wfd-as-lnk{display:flex;align-items:center;gap:.4rem;font-size:.82rem;color:var(--wfd-mid);padding:.4rem 1.4rem;border-top:1px solid var(--wfd-border);transition:color .14s;}
.wfd-as-lnk:hover{color:var(--wfd-blue);}

/* ===== LEGAL ===== */
.wfd-legal-wrap{max-width:820px;margin:0 auto;padding:5rem 2.5rem 8rem;}
.wfd-legal-eff{display:inline-block;font-size:.72rem;color:var(--wfd-muted);background:var(--wfd-bg);border:1px solid var(--wfd-border);padding:.24rem .8rem;border-radius:var(--wfd-rp);margin-bottom:1.6rem;}
.wfd-legal-wrap h2{font-family:var(--wfd-fh);font-size:1.1rem;font-weight:700;color:var(--wfd-blue);margin:2.8rem 0 .6rem;}
.wfd-legal-wrap p,.wfd-legal-wrap li{font-size:.9rem;color:var(--wfd-mid);line-height:1.78;margin-bottom:.9rem;}
.wfd-legal-wrap ul{padding-left:1.4rem;margin:.5rem 0 .9rem;}
.wfd-legal-wrap li{list-style:disc;}
.wfd-legal-wrap a{color:var(--wfd-blue);}
.wfd-legal-addr{background:var(--wfd-bg);border-left:3px solid var(--wfd-amber);padding:.9rem 1.2rem;font-size:.88rem;color:var(--wfd-mid);line-height:1.9;margin:.9rem 0;border-radius:0 var(--wfd-r) var(--wfd-r) 0;}

/* ===== FOOTER ===== */
.wfd-footer-shell{background:var(--wfd-dark2);}
.wfd-footer-top{max-width:var(--wfd-max);margin:0 auto;padding:4.5rem 2.5rem 2rem;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;}
/* BIGGER footer logo */
.wfd-foot-logo{font-family:var(--wfd-fh);font-size:1.7rem;font-weight:900;color:white;letter-spacing:-.03em;margin-bottom:.4rem;}
.wfd-foot-logo span{color:var(--wfd-amber);}
.wfd-foot-tag{font-size:.76rem;color:rgba(255,255,255,.2);line-height:1.7;max-width:28ch;margin-bottom:1rem;}
.wfd-foot-soc{display:flex;gap:.4rem;}
.wfd-foot-soc a{width:32px;height:32px;border:1px solid rgba(255,255,255,.08);border-radius:var(--wfd-r2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.25);transition:var(--wfd-ease);}
.wfd-foot-soc a:hover{border-color:var(--wfd-amber);color:var(--wfd-amber);}
.wfd-foot-col-h{font-size:.42rem;font-weight:700;text-transform:uppercase;letter-spacing:.28em;color:rgba(255,255,255,.18);margin-bottom:.9rem;}
.wfd-foot-nav{display:flex;flex-direction:column;gap:.5rem;}
.wfd-foot-nav a{font-size:.82rem;color:rgba(255,255,255,.26);transition:color .14s;}
.wfd-foot-nav a:hover{color:var(--wfd-amber);}
.wfd-foot-ct a{display:flex;align-items:flex-start;gap:.4rem;font-size:.8rem;color:rgba(255,255,255,.26);margin-bottom:.5rem;transition:color .14s;}
.wfd-foot-ct a:hover{color:var(--wfd-amber);}
.wfd-foot-ct svg{color:rgba(255,255,255,.16);flex-shrink:0;margin-top:.06rem;}
.wfd-footer-btm{border-top:1px solid rgba(255,255,255,.05);max-width:var(--wfd-max);margin:0 auto;padding:1rem 2.5rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;}
.wfd-foot-copy{font-size:.62rem;color:rgba(255,255,255,.14);}
.wfd-foot-legal{display:flex;gap:1.2rem;flex-wrap:wrap;}
.wfd-foot-legal a{font-size:.62rem;color:rgba(255,255,255,.18);transition:color .14s;}
.wfd-foot-legal a:hover{color:var(--wfd-amber);}
.wfd-foot-lang-duo{display:flex;align-items:center;gap:.4rem;}
.wfd-foot-lang-duo a{font-size:.62rem;font-weight:700;color:rgba(255,255,255,.18);transition:color .14s;}
.wfd-foot-lang-duo a:hover,.wfd-foot-lang-duo a.wfd-lon{color:var(--wfd-amber);}

/* ===== COOKIE + CHAT ===== */
.wfd-ck-bar{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:var(--wfd-dark2);border-top:2px solid var(--wfd-blue);padding:1rem 2.5rem;display:none;align-items:center;gap:1.5rem;justify-content:space-between;flex-wrap:wrap;}
.wfd-ck-bar p{font-size:.8rem;color:rgba(255,255,255,.32);margin:0;}
.wfd-ck-bar a{color:var(--wfd-amber);}
.wfd-ck-btns{display:flex;gap:.5rem;flex-shrink:0;}
.wfd-ck-yes{background:var(--wfd-blue);color:white;font-family:var(--wfd-fh);font-size:.82rem;font-weight:700;padding:.4rem 1rem;border-radius:var(--wfd-r);cursor:pointer;border:none;}
.wfd-ck-no{background:transparent;color:rgba(255,255,255,.22);font-family:var(--wfd-fh);font-size:.82rem;padding:.4rem 1rem;border:1px solid rgba(255,255,255,.1);border-radius:var(--wfd-r);cursor:pointer;}
.wfd-chat-fab{position:fixed;bottom:4.5rem;right:1.5rem;z-index:9990;width:52px;height:52px;background:var(--wfd-blue);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;border:none;box-shadow:0 6px 24px rgba(0,71,179,.35);transition:var(--wfd-ease);}
.wfd-chat-fab:hover{background:var(--wfd-blue2);transform:scale(1.06);}
.wfd-chatpop{position:fixed;bottom:7.5rem;right:1.5rem;z-index:9989;width:280px;background:white;border:1px solid var(--wfd-border);border-radius:var(--wfd-r3);box-shadow:var(--wfd-elev);opacity:0;pointer-events:none;transform:translateY(8px) scale(.97);transition:opacity .2s,transform .22s;overflow:hidden;}
.wfd-chatpop.wfd-cp-on{opacity:1;pointer-events:auto;transform:none;}
.wfd-chatpop-hd{background:var(--wfd-blue);padding:.8rem 1.1rem;display:flex;align-items:center;justify-content:space-between;}
.wfd-chatpop-nm{font-family:var(--wfd-fh);font-size:.9rem;font-weight:700;color:white;}
.wfd-chat-done{display:none;text-align:center;padding:.9rem;font-family:var(--wfd-fh);font-size:.9rem;font-weight:700;color:var(--wfd-blue);}
.wfd-chat-fi{width:100%;background:var(--wfd-bg);border:1.5px solid var(--wfd-border);border-radius:var(--wfd-r);padding:.5rem .8rem;font-size:.84rem;color:var(--wfd-dark);margin-bottom:.36rem;resize:none;transition:border-color .14s;}
.wfd-chat-fi:focus{outline:none;border-color:var(--wfd-blue);}
.wfd-chat-send{width:100%;background:var(--wfd-blue);color:white;font-family:var(--wfd-fh);font-size:.86rem;font-weight:700;padding:.5rem;border-radius:var(--wfd-rp);border:none;cursor:pointer;}

/* ===== REVEAL ===== */
.wfd-reveal{opacity:0;transform:translateY(14px);transition:opacity .44s,transform .44s;}
.wfd-reveal.wfd-in{opacity:1;transform:none;}

/* ===== ABOUT + CONTACT ===== */
.wfd-about-cols,.wfd-contact-cols{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start;}

/* ===== RESULT PAGE ===== */
.wfd-result-pg{min-height:72vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:6rem 2.5rem;background:var(--wfd-bg);}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .wfd-nav-links,.wfd-nav-end{display:none;}
  .wfd-burger{display:flex;}
  .wfd-topbar-loc{display:none;}
  .wfd-hero-split{grid-template-columns:1fr;}
  .wfd-hero-R{display:none;}
  .wfd-hero-L{justify-content:center;}
  .wfd-hero-L-in{padding:6rem 2.5rem;max-width:100%;}
  .wfd-svc-pane{min-width:280px;max-width:280px;}
  .wfd-stats-row{grid-template-columns:repeat(2,1fr);}
  .wfd-port-triptych{grid-template-columns:1fr 1fr;}
  .wfd-testi-row{grid-template-columns:1fr;}
  .wfd-testi-row:nth-child(even) .wfd-testi-qblock,.wfd-testi-row:nth-child(even) .wfd-testi-who-block{order:unset;}
  .wfd-price-rack{grid-template-columns:1fr;}
  .wfd-pk-growth{margin:0;}
  .wfd-footer-top{grid-template-columns:1fr 1fr;}
  .wfd-checkout-wrap,.wfd-builder-wrap,.wfd-svc-detail{grid-template-columns:1fr;}
  .wfd-about-cols,.wfd-contact-cols{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .wfd-hull{padding:0 1.5rem;}
  .wfd-topbar-inner{padding:0 1.5rem;}
  .wfd-port-triptych{grid-template-columns:1fr;}
  .wfd-footer-top{grid-template-columns:1fr;padding:3rem 1.5rem 1.5rem;}
  .wfd-footer-btm{padding:1rem 1.5rem;flex-direction:column;align-items:flex-start;}
  h1{font-size:clamp(2.4rem,9vw,4rem);}
  .wfd-pulse-form{flex-direction:column;}
  .wfd-pulse-email,.wfd-pulse-go{width:100%;min-width:0;}
}
