/* falcontranslate.com -- style.css
   Theme: Navy #0E1629 + Amber #C67C3A + Bone #F7F5F1
   Nav: Transparent-to-solid sticky animated, full-screen overlay mobile
   Hero: Pure typographic dark hero
   Services: 5-card numbered horizontal row
   Pricing: 4-tier (unique)
   Fonts: DM Serif Display + DM Sans
   CSS prefix: fc-
   -------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --fc-navy:   #0E1629;
  --fc-navy2:  #182040;
  --fc-navy3:  #0a1120;
  --fc-amber:  #C67C3A;
  --fc-amber2: #D9924E;
  --fc-ambg:   rgba(198,124,58,0.1);
  --fc-ambg2:  rgba(198,124,58,0.18);
  --fc-bone:   #F7F5F1;
  --fc-paper:  #FFFFFF;
  --fc-cool:   #8A9099;
  --fc-coal:   #252729;
  --fc-silver: #E4E2DC;
  --fc-mist:   #B8B4AA;
  --fc-edge:   rgba(37,39,41,0.1);
  --fc-edge2:  rgba(37,39,41,0.18);
  --fc-max:    1140px;
  --fc-ease:   all 0.22s cubic-bezier(0.4,0,0.2,1);
  --fc-fh:     'DM Serif Display', Georgia, serif;
  --fc-fb:     'DM Sans', system-ui, sans-serif;
  --fc-r:      4px;
  --fc-r2:     10px;
  --fc-r3:     18px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{background:var(--fc-bone);color:var(--fc-coal);font-family:var(--fc-fb);font-size:1rem;line-height:1.7;overflow-x:hidden;}
img,svg{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;font-size:1rem;}
address{font-style:normal;}
h1,h2,h3,h4{font-family:var(--fc-fh);line-height:1.1;color:var(--fc-coal);}
h1{font-size:clamp(3rem,6vw,6.5rem);font-weight:400;letter-spacing:-0.03em;}
h2{font-size:clamp(2rem,3.5vw,3.25rem);font-weight:400;letter-spacing:-0.02em;}
h3{font-size:clamp(1.3rem,2vw,1.8rem);font-weight:400;}
h4{font-size:.95rem;font-weight:600;}
p{font-size:.9rem;line-height:1.82;color:var(--fc-cool);}

.fc-shell{max-width:var(--fc-max);margin:0 auto;padding:0 2.5rem;}
.fc-seg{padding:7rem 0;}
.fc-seg-sm{padding:4.5rem 0;}

/* ---- BUTTONS ---- */
.fc-btn-amber{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--fc-fb);font-size:.82rem;font-weight:600;background:var(--fc-amber);color:white;padding:.8rem 1.9rem;border-radius:100px;transition:var(--fc-ease);white-space:nowrap;}
.fc-btn-amber:hover{background:var(--fc-amber2);transform:translateY(-1px);box-shadow:0 6px 20px rgba(198,124,58,0.3);}
.fc-btn-navy{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--fc-fb);font-size:.82rem;font-weight:600;background:var(--fc-navy);color:white;padding:.8rem 1.9rem;border-radius:100px;transition:var(--fc-ease);white-space:nowrap;}
.fc-btn-navy:hover{background:var(--fc-navy2);}
.fc-btn-ghost-w{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--fc-fb);font-size:.82rem;font-weight:600;color:white;padding:.78rem 1.8rem;border-radius:100px;border:1.5px solid rgba(255,255,255,0.3);background:transparent;transition:var(--fc-ease);white-space:nowrap;}
.fc-btn-ghost-w:hover{border-color:rgba(255,255,255,0.7);background:rgba(255,255,255,0.08);}
.fc-btn-outline{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--fc-fb);font-size:.82rem;font-weight:600;color:var(--fc-coal);padding:.78rem 1.8rem;border-radius:100px;border:1.5px solid var(--fc-edge2);background:transparent;transition:var(--fc-ease);white-space:nowrap;}
.fc-btn-outline:hover{border-color:var(--fc-amber);color:var(--fc-amber);}
.fc-btn-bone{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--fc-fb);font-size:.82rem;font-weight:600;background:var(--fc-bone);color:var(--fc-coal);padding:.8rem 1.9rem;border-radius:100px;transition:var(--fc-ease);white-space:nowrap;}
.fc-btn-bone:hover{background:var(--fc-silver);}
.fc-link-amber{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--fc-fb);font-size:.8rem;font-weight:600;color:var(--fc-amber);transition:gap 0.2s;}
.fc-link-amber:hover{gap:.65rem;}
.fc-link-nav{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--fc-fb);font-size:.8rem;font-weight:600;color:var(--fc-coal);transition:gap 0.2s;}
.fc-link-nav:hover{gap:.65rem;}
.fc-kicker{display:block;font-family:var(--fc-fb);font-size:.58rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--fc-amber);margin-bottom:.5rem;}
.fc-kicker-mist{color:rgba(255,255,255,0.3);}

/* ---- STICKY ANIMATED NAVIGATION ---- */
.fc-topnav{
  position:fixed; top:0; left:0; right:0;
  z-index:900;
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,0);
  transition:background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
/* Solid state (after scrolling) */
.fc-topnav.fc-nav-solid{
  background:rgba(14,22,41,0.97);
  border-bottom-color:rgba(255,255,255,0.07);
  box-shadow:0 2px 24px rgba(0,0,0,0.2);
}
.fc-nav-row{max-width:var(--fc-max);margin:0 auto;padding:0 2.5rem;height:62px;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;}
/* Logo */
.fc-nav-brand{display:flex;align-items:center;gap:.55rem;text-decoration:none;flex-shrink:0;}
.fc-nav-brand img{width:22px;height:22px;}
.fc-nav-brandname{font-family:var(--fc-fb);font-size:.82rem;font-weight:600;color:white;letter-spacing:-0.01em;}
/* Nav links */
.fc-nav-links{display:flex;align-items:center;gap:.2rem;}
.fc-nav-link{font-family:var(--fc-fb);font-size:.88rem;font-weight:500;color:rgba(255,255,255,0.7);padding:.35rem .68rem;border-radius:var(--fc-r);transition:var(--fc-ease);}
.fc-nav-link:hover,.fc-nav-link.fc-nav-on{color:white;}
/* Right side */
.fc-nav-right{display:flex;align-items:center;gap:.7rem;flex-shrink:0;}
.fc-nav-lang{font-family:var(--fc-fb);font-size:.7rem;font-weight:600;color:rgba(255,255,255,0.4);padding:.2rem .52rem;border-radius:var(--fc-r);border:1px solid rgba(255,255,255,0.15);transition:var(--fc-ease);}
.fc-nav-lang:hover{color:white;border-color:rgba(255,255,255,0.35);}
.fc-nav-cta{font-family:var(--fc-fb);font-size:.78rem;font-weight:600;background:var(--fc-amber);color:white;padding:.5rem 1.15rem;border-radius:100px;transition:var(--fc-ease);}
.fc-nav-cta:hover{background:var(--fc-amber2);}
/* Hamburger */
.fc-burger{display:none;flex-direction:column;gap:4.5px;align-items:center;justify-content:center;width:34px;height:34px;cursor:pointer;}
.fc-bline{width:19px;height:1.5px;background:white;border-radius:1px;transition:transform 0.25s,opacity 0.22s;}
.fc-burger.fc-bopen .fc-bline:nth-child(1){transform:rotate(45deg) translate(4.5px,4.5px);}
.fc-burger.fc-bopen .fc-bline:nth-child(2){opacity:0;}
.fc-burger.fc-bopen .fc-bline:nth-child(3){transform:rotate(-45deg) translate(4.5px,-4.5px);}

/* ---- FULL-SCREEN OVERLAY MOBILE NAV ---- */
.fc-overlay-nav{
  position:fixed;inset:0;z-index:850;
  background:var(--fc-navy3);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity 0.3s ease;
}
.fc-overlay-nav.fc-ov-open{opacity:1;pointer-events:auto;}
.fc-ov-links{display:flex;flex-direction:column;align-items:center;gap:.5rem;}
.fc-ov-link{font-family:var(--fc-fh);font-size:clamp(2rem,7vw,3.5rem);color:rgba(255,255,255,0.35);font-weight:400;transition:color 0.2s;padding:.2rem 0;}
.fc-ov-link:hover{color:white;}
.fc-ov-foot{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;justify-content:center;}
.fc-ov-sub{font-family:var(--fc-fb);font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,0.2);}

/* ---- HERO WING ---- */
.fc-wing{min-height:100vh;background:var(--fc-navy);position:relative;overflow:hidden;display:flex;align-items:flex-end;padding-top:62px;}
.fc-wing-bg{position:absolute;inset:0;z-index:0;}
.fc-wing-bg img{width:100%;height:100%;object-fit:cover;opacity:.07;}
/* Decorative diagonal accent */
.fc-wing-deco{position:absolute;top:0;right:0;width:45%;height:100%;background:linear-gradient(135deg,transparent 40%,rgba(198,124,58,0.04) 100%);z-index:0;pointer-events:none;}
.fc-wing-inner{position:relative;z-index:1;width:100%;padding:0 0 5rem;}
.fc-wing-left{max-width:700px;}
.fc-wing-kicker{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--fc-fb);font-size:.58rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--fc-amber);margin-bottom:1.35rem;}
.fc-wing-kicker::before{content:'';width:28px;height:1px;background:var(--fc-amber);}
.fc-wing-h1{font-family:var(--fc-fh);font-size:clamp(3.2rem,7vw,7rem);font-weight:400;line-height:1.0;color:white;letter-spacing:-0.035em;margin-bottom:1.5rem;}
.fc-wing-h1 em{font-style:italic;color:var(--fc-amber);}
.fc-wing-sub{font-family:var(--fc-fb);font-size:.97rem;color:rgba(255,255,255,0.5);max-width:46ch;line-height:1.78;margin-bottom:2.75rem;}
.fc-wing-acts{display:flex;align-items:center;gap:.85rem;flex-wrap:wrap;}
/* Right side badge */
.fc-wing-badge{position:absolute;right:5%;bottom:7rem;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:var(--fc-r2);padding:1.65rem 2rem;backdrop-filter:blur(4px);}
.fc-wbadge-grid{display:grid;grid-template-columns:1fr 1fr;gap:.85rem 2.5rem;}
.fc-wb-n{font-family:var(--fc-fh);font-size:2rem;font-weight:400;color:white;line-height:1;}
.fc-wb-l{font-family:var(--fc-fb);font-size:.58rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,0.28);margin-top:.2rem;}
/* Trust row */
.fc-wing-trust{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:3rem;padding-top:2.5rem;border-top:1px solid rgba(255,255,255,0.07);}
.fc-trust-dot{display:inline-flex;align-items:center;gap:.35rem;font-family:var(--fc-fb);font-size:.62rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,0.25);}
.fc-trust-dot::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--fc-amber);flex-shrink:0;}

/* ---- LANGUAGE TICKER ---- */
.fc-langtape{background:var(--fc-navy2);overflow:hidden;border-top:1px solid rgba(255,255,255,0.06);}
.fc-langtape-track{display:flex;gap:2.25rem;white-space:nowrap;animation:fc-tape 30s linear infinite;padding:.65rem 0;}
@keyframes fc-tape{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.fc-lt-pair{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--fc-fb);font-size:.66rem;font-weight:600;letter-spacing:.08em;color:rgba(255,255,255,0.3);flex-shrink:0;}
.fc-lt-arrow{color:var(--fc-amber);font-size:.55rem;}
.fc-lt-sep{width:3px;height:3px;background:rgba(255,255,255,0.12);border-radius:50%;flex-shrink:0;}

/* ---- SERVICES NUMBERED ROW ---- */
.fc-srow-section{background:var(--fc-bone);}
.fc-srow-header{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;margin-bottom:3.5rem;}
.fc-srow{display:grid;grid-template-columns:repeat(5,1fr);gap:0;}
.fc-snum-card{border-top:2px solid var(--fc-silver);padding:1.75rem 1.5rem 2rem;position:relative;transition:var(--fc-ease);text-decoration:none;display:block;}
.fc-snum-card:hover{background:var(--fc-paper);border-top-color:var(--fc-amber);}
.fc-snum-card:not(:last-child){border-right:1px solid var(--fc-silver);}
.fc-snum{font-family:var(--fc-fh);font-style:italic;font-size:2.5rem;color:var(--fc-amber);opacity:.22;line-height:1;margin-bottom:1rem;display:block;transition:opacity 0.2s;}
.fc-snum-card:hover .fc-snum{opacity:.55;}
.fc-snum-ico{width:34px;height:34px;border-radius:var(--fc-r);display:flex;align-items:center;justify-content:center;margin-bottom:.85rem;background:var(--fc-ambg);color:var(--fc-amber);}
.fc-snum-nm{font-family:var(--fc-fh);font-size:.97rem;color:var(--fc-coal);line-height:1.3;margin-bottom:.55rem;}
.fc-snum-tg{font-size:.72rem;color:var(--fc-cool);line-height:1.6;}
.fc-snum-pr{font-family:var(--fc-fb);font-size:.7rem;font-weight:600;color:var(--fc-amber);margin-top:.85rem;}
.fc-snum-arr{position:absolute;bottom:1.5rem;right:1.35rem;color:var(--fc-mist);transition:var(--fc-ease);}
.fc-snum-card:hover .fc-snum-arr{color:var(--fc-amber);transform:translate(2px,-2px);}

/* ---- FEATURED CASE ---- */
.fc-showcase{background:var(--fc-navy);}
.fc-showcase-inner{display:grid;grid-template-columns:1fr 1fr;min-height:520px;overflow:hidden;}
.fc-showcase-img{overflow:hidden;}
.fc-showcase-img img{width:100%;height:100%;object-fit:cover;display:block;}
.fc-showcase-text{padding:5rem 4.5rem;display:flex;flex-direction:column;justify-content:center;}
.fc-showcase-text h2{color:white;margin-bottom:1rem;}
.fc-showcase-text p{color:rgba(255,255,255,0.5);margin-bottom:1.75rem;font-size:.88rem;line-height:1.8;}
.fc-showcase-tags{display:flex;flex-wrap:wrap;gap:.3rem;margin-top:1.35rem;}
.fc-sc-tag{font-size:.56rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.3);padding:.14rem .5rem;border-radius:100px;}

/* ---- PROCESS VERTICAL ---- */
.fc-runway{background:var(--fc-paper);}
.fc-runway-head{max-width:580px;margin-bottom:4rem;}
.fc-rn-steps{display:flex;flex-direction:column;gap:0;max-width:820px;}
.fc-rn-step{display:grid;grid-template-columns:80px 1fr;gap:0;position:relative;}
.fc-rn-step:not(:last-child)::after{content:'';position:absolute;left:39px;top:52px;bottom:-4px;width:1px;background:var(--fc-silver);}
.fc-rn-num-col{padding-top:.85rem;text-align:center;}
.fc-rn-num{font-family:var(--fc-fh);font-style:italic;font-size:1.35rem;color:var(--fc-amber);line-height:1;}
.fc-rn-dot{width:11px;height:11px;border-radius:50%;background:var(--fc-amber);margin:0 auto .75rem;position:relative;z-index:1;}
.fc-rn-body{padding:0 0 3rem 0;}
.fc-rn-h{font-family:var(--fc-fh);font-size:1.3rem;font-weight:400;color:var(--fc-coal);margin-bottom:.55rem;}
.fc-rn-p{font-size:.86rem;color:var(--fc-cool);line-height:1.8;max-width:56ch;}

/* ---- STANDOUT TESTIMONIAL ---- */
.fc-standout{background:var(--fc-navy);overflow:hidden;}
.fc-standout-inner{max-width:880px;margin:0 auto;text-align:center;padding:8rem 2.5rem;}
.fc-stdout-qdeco{font-family:var(--fc-fh);font-size:8rem;color:var(--fc-amber);opacity:.15;line-height:.7;margin-bottom:-.5rem;}
.fc-stdout-q{font-family:var(--fc-fh);font-style:italic;font-size:clamp(1.5rem,3.5vw,2.75rem);color:white;font-weight:400;line-height:1.38;margin-bottom:2.5rem;}
.fc-stdout-who{display:flex;align-items:center;justify-content:center;gap:.75rem;}
.fc-stdout-init{width:36px;height:36px;border-radius:50%;background:var(--fc-amber);display:flex;align-items:center;justify-content:center;font-family:var(--fc-fb);font-size:.65rem;font-weight:700;color:white;}
.fc-stdout-nm{font-family:var(--fc-fb);font-size:.82rem;font-weight:600;color:rgba(255,255,255,0.8);}
.fc-stdout-role{font-size:.68rem;color:rgba(255,255,255,0.3);}
/* Dots navigation */
.fc-stdout-dots{display:flex;gap:.55rem;justify-content:center;margin-top:2.25rem;}
.fc-stdout-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,0.18);cursor:pointer;transition:background 0.2s,transform 0.2s;}
.fc-stdout-dot.fc-tdot-on{background:var(--fc-amber);transform:scale(1.15);}

/* ---- STATS NUMBERS BAND ---- */
.fc-statsband{background:var(--fc-navy2);}
.fc-statsband-inner{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;padding:4.5rem 0;}
.fc-stat-cell{padding:1rem 1.5rem;position:relative;}
.fc-stat-cell:not(:last-child)::after{content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:40px;background:rgba(255,255,255,0.07);}
.fc-stat-n{font-family:var(--fc-fh);font-size:3rem;font-weight:400;color:var(--fc-amber);line-height:1;}
.fc-stat-l{font-family:var(--fc-fb);font-size:.58rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,0.22);margin-top:.3rem;}

/* ---- CASEPAIR (2-col cases) ---- */
.fc-casepair-section{background:var(--fc-bone);}
.fc-casepair-head{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;margin-bottom:3rem;}
.fc-casepair{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;}
.fc-cpc{background:var(--fc-paper);border-radius:var(--fc-r2);overflow:hidden;transition:var(--fc-ease);border:1.5px solid transparent;}
.fc-cpc:hover{border-color:var(--fc-amber);transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,0.06);}
.fc-cpc-img{overflow:hidden;}
.fc-cpc-img img{width:100%;height:210px;object-fit:cover;display:block;transition:transform 0.4s;}
.fc-cpc:hover .fc-cpc-img img{transform:scale(1.02);}
.fc-cpc-body{padding:1.65rem;}
.fc-cpc-top{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.6rem;}
.fc-cpc-badge{display:inline-flex;font-size:.55rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.14rem .55rem;border-radius:100px;}
.fc-cbadge-amber{background:var(--fc-ambg);color:var(--fc-amber);}
.fc-cbadge-navy{background:rgba(14,22,41,0.07);color:var(--fc-navy2);}
.fc-cpc-yr{font-size:.68rem;color:var(--fc-mist);}
.fc-cpc-nm{font-family:var(--fc-fh);font-size:1.2rem;color:var(--fc-coal);margin-bottom:.3rem;}
.fc-cpc-h{font-family:var(--fc-fh);font-style:italic;font-size:.85rem;color:var(--fc-cool);line-height:1.55;margin-bottom:.85rem;}
.fc-cpc-chips{display:flex;flex-wrap:wrap;gap:.3rem;}
.fc-cpc-chip{font-size:.55rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--fc-mist);border:1px solid var(--fc-edge);padding:.12rem .48rem;border-radius:100px;}

/* ---- 4-TIER PRICING ---- */
.fc-tariff{background:var(--fc-paper);}
.fc-tariff-head{text-align:center;margin-bottom:4rem;}
.fc-tariff-row{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1.5px solid var(--fc-edge);border-radius:var(--fc-r2);overflow:hidden;}
.fc-tcard{padding:2.25rem 1.75rem;display:flex;flex-direction:column;border-right:1px solid var(--fc-edge);transition:var(--fc-ease);position:relative;}
.fc-tcard:last-child{border-right:none;}
.fc-tcard:hover{background:var(--fc-bone);}
.fc-tcard-feat{background:var(--fc-navy)!important;border-right-color:rgba(255,255,255,0.07)!important;}
.fc-tcard-badge{position:absolute;top:1rem;right:1rem;font-size:.55rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:var(--fc-amber);color:white;padding:.12rem .5rem;border-radius:100px;}
.fc-tcard-nm{font-family:var(--fc-fh);font-size:.9rem;font-weight:400;color:var(--fc-coal);margin-bottom:.2rem;}
.fc-tcard-feat .fc-tcard-nm{color:rgba(255,255,255,0.7);}
.fc-tcard-sub{font-size:.72rem;color:var(--fc-cool);line-height:1.5;margin-bottom:1.4rem;}
.fc-tcard-feat .fc-tcard-sub{color:rgba(255,255,255,0.3);}
.fc-tcard-pr{font-family:var(--fc-fh);font-size:2.5rem;font-weight:400;color:var(--fc-coal);line-height:1;margin-bottom:.2rem;}
.fc-tcard-feat .fc-tcard-pr{color:white;}
.fc-tcard-unit{font-size:.58rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--fc-mist);margin-bottom:1.5rem;}
.fc-tcard-feat .fc-tcard-unit{color:rgba(255,255,255,0.25);}
.fc-tcard-list{display:flex;flex-direction:column;gap:.45rem;flex:1;margin-bottom:1.5rem;}
.fc-tcard-li{display:flex;align-items:flex-start;gap:.45rem;font-size:.73rem;color:var(--fc-cool);}
.fc-tcard-li svg{flex-shrink:0;margin-top:.12rem;color:var(--fc-amber);}
.fc-tcard-feat .fc-tcard-li{color:rgba(255,255,255,0.4);}
.fc-tcard-cta{display:block;text-align:center;font-family:var(--fc-fb);font-size:.78rem;font-weight:600;padding:.78rem;border-radius:100px;transition:var(--fc-ease);}
.fc-tcta-bone{background:var(--fc-bone);color:var(--fc-coal);}
.fc-tcta-bone:hover{background:var(--fc-silver);}
.fc-tcta-amber{background:var(--fc-amber);color:white;}
.fc-tcta-amber:hover{background:var(--fc-amber2);}
/* Addons */
.fc-addonrow{display:flex;flex-wrap:wrap;gap:.65rem;justify-content:center;margin-top:2.5rem;}
.fc-addon-tag{display:flex;align-items:center;gap:.4rem;background:var(--fc-bone);border:1px solid var(--fc-edge);border-radius:100px;padding:.3rem .85rem;}
.fc-addon-nm{font-family:var(--fc-fb);font-size:.68rem;font-weight:600;color:var(--fc-coal);}
.fc-addon-pr{font-size:.68rem;font-weight:600;color:var(--fc-amber);}
.fc-hourly-note{text-align:center;margin-top:1.5rem;font-size:.76rem;color:var(--fc-cool);}
.fc-hourly-note strong{color:var(--fc-coal);}

/* ---- ABOUT PORTRAIT ---- */
.fc-portrait{background:var(--fc-bone);}
.fc-portrait-inner{display:grid;grid-template-columns:1fr 1fr;gap:5.5rem;align-items:center;}
.fc-portrait-text p{font-size:.9rem;color:var(--fc-cool);line-height:1.82;margin-bottom:1.1rem;}
.fc-portrait-img{border-radius:var(--fc-r2);overflow:hidden;min-height:360px;}
.fc-portrait-img img{width:100%;height:100%;object-fit:cover;display:block;}

/* ---- FAQ ZONE ---- */
.fc-qzone{background:var(--fc-paper);}
.fc-qzone-inner{display:grid;grid-template-columns:200px 1fr;gap:5.5rem;align-items:start;}
.fc-qcats{display:flex;flex-direction:column;gap:.25rem;position:sticky;top:2.5rem;}
.fc-qcat-h{font-family:var(--fc-fb);font-size:.56rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--fc-mist);margin-bottom:.55rem;}
.fc-qcat{font-family:var(--fc-fb);font-size:.78rem;font-weight:500;color:var(--fc-cool);padding:.38rem .65rem;border-radius:var(--fc-r);cursor:pointer;transition:var(--fc-ease);border:1px solid transparent;}
.fc-qcat:hover,.fc-qcat.fc-qon{color:var(--fc-amber);background:var(--fc-ambg);border-color:var(--fc-ambg2);}
.fc-qstack{display:flex;flex-direction:column;gap:.6rem;}
.fc-qitem{background:var(--fc-bone);border-radius:var(--fc-r);overflow:hidden;border-left:3px solid transparent;transition:border-color 0.2s;}
.fc-qitem.fc-qopen{border-left-color:var(--fc-amber);}
.fc-qbtn{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.25rem;font-family:var(--fc-fb);font-size:.84rem;font-weight:500;color:var(--fc-coal);text-align:left;cursor:pointer;transition:color 0.2s;}
.fc-qbtn:hover{color:var(--fc-amber);}
.fc-qchev{color:var(--fc-mist);transition:transform 0.25s;flex-shrink:0;}
.fc-qitem.fc-qopen .fc-qchev{transform:rotate(180deg);color:var(--fc-amber);}
.fc-qans{max-height:0;overflow:hidden;transition:max-height 0.35s ease;}
.fc-qitem.fc-qopen .fc-qans{max-height:600px;}
.fc-qbody{padding:0 1.25rem 1rem;font-size:.82rem;color:var(--fc-cool);line-height:1.82;}

/* ---- CTA RIBBON ---- */
.fc-ribbon{background:var(--fc-amber);}
.fc-ribbon-inner{max-width:700px;margin:0 auto;text-align:center;padding:7rem 2.5rem;}
.fc-ribbon-inner h2{font-size:clamp(2rem,4.5vw,3.5rem);color:var(--fc-navy);margin-bottom:1rem;}
.fc-ribbon-inner p{font-size:.95rem;color:rgba(14,22,41,0.6);margin-bottom:2.85rem;}
.fc-ribbon-acts{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* ---- PAGE CROWN ---- */
.fc-crown{background:var(--fc-navy);padding:calc(62px + 5rem) 0 4.5rem;}
.fc-crown-inner{max-width:var(--fc-max);margin:0 auto;padding:0 2.5rem;}
.fc-crown-tag{display:inline-flex;align-items:center;gap:.4rem;background:var(--fc-ambg);color:var(--fc-amber2);font-family:var(--fc-fb);font-size:.55rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;padding:.2rem .7rem;border-radius:100px;margin-bottom:1.2rem;border:1px solid var(--fc-ambg2);}
.fc-crown h1{color:var(--fc-bone);max-width:22ch;}
.fc-crown-sub{font-family:var(--fc-fb);font-size:.9rem;color:rgba(247,245,241,0.38);max-width:50ch;margin-top:.65rem;}

/* ---- SERVICE PAGE ---- */
.fc-svcwrap{max-width:var(--fc-max);margin:0 auto;padding:5rem 2.5rem;display:grid;grid-template-columns:1fr 268px;gap:5.5rem;align-items:start;}
.fc-svc-body p{font-size:.88rem;color:var(--fc-cool);line-height:1.82;margin-bottom:1.1rem;}
.fc-svc-inc{display:flex;flex-direction:column;gap:.45rem;margin-bottom:2.25rem;}
.fc-svc-inc-item{display:flex;align-items:center;gap:.5rem;font-size:.84rem;color:var(--fc-cool);}
.fc-svc-inc-item svg{color:var(--fc-amber);flex-shrink:0;}
.fc-svc-notice{background:var(--fc-ambg);border-left:3px solid var(--fc-amber);border-radius:0 var(--fc-r) var(--fc-r) 0;padding:1rem 1.25rem;font-size:.82rem;color:var(--fc-coal);line-height:1.7;}
.fc-svc-aside{position:sticky;top:2.5rem;}
.fc-aside-panel{background:var(--fc-paper);border:1.5px solid var(--fc-edge);border-radius:var(--fc-r2);overflow:hidden;margin-bottom:1.1rem;}
.fc-aside-img img{width:100%;height:170px;object-fit:cover;display:block;}
.fc-aside-body{padding:1.35rem;}
.fc-aside-nm{font-family:var(--fc-fh);font-size:.9rem;color:var(--fc-coal);margin-bottom:.2rem;}
.fc-aside-pr{font-family:var(--fc-fh);font-size:1.9rem;color:var(--fc-coal);line-height:1;}
.fc-aside-unit{font-size:.58rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--fc-mist);margin-bottom:1.25rem;}
.fc-aside-acts{display:flex;flex-direction:column;gap:.55rem;}

/* ---- BUILDER ---- */
.fc-buildwrap{max-width:var(--fc-max);margin:0 auto;padding:5rem 2.5rem;display:grid;grid-template-columns:1fr 268px;gap:4.5rem;align-items:start;}
.fc-build-section{margin-bottom:3rem;}
.fc-build-kick{display:block;font-family:var(--fc-fb);font-size:.56rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--fc-amber);margin-bottom:.85rem;}
.fc-build-rows{display:flex;flex-direction:column;gap:.6rem;}
.fc-build-row{background:var(--fc-paper);border:1.5px solid var(--fc-edge);border-radius:var(--fc-r);padding:.85rem 1rem;display:flex;align-items:center;gap:.75rem;cursor:pointer;transition:var(--fc-ease);user-select:none;}
.fc-build-row:hover{border-color:var(--fc-edge2);}
.fc-build-row.fc-sel{border-color:var(--fc-amber);background:var(--fc-ambg);}
.fc-build-ico{width:30px;height:30px;border-radius:var(--fc-r);display:flex;align-items:center;justify-content:center;flex-shrink:0;background:var(--fc-ambg);color:var(--fc-amber);}
.fc-build-nm{font-family:var(--fc-fb);font-size:.82rem;font-weight:600;color:var(--fc-coal);flex:1;}
.fc-build-pr{font-size:.72rem;color:var(--fc-cool);flex-shrink:0;}
.fc-build-tick{width:17px;height:17px;border-radius:4px;border:1.5px solid var(--fc-edge2);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--fc-ease);}
.fc-build-row.fc-sel .fc-build-tick{background:var(--fc-amber);border-color:var(--fc-amber);color:white;}
.fc-achips{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;}
.fc-achip{background:var(--fc-paper);border:1.5px solid var(--fc-edge);border-radius:var(--fc-r);padding:.75rem .9rem;cursor:pointer;transition:var(--fc-ease);user-select:none;}
.fc-achip:hover{border-color:var(--fc-edge2);}
.fc-achip.fc-sel{border-color:var(--fc-amber);background:var(--fc-ambg);}
.fc-achip-nm{font-family:var(--fc-fb);font-size:.76rem;font-weight:600;color:var(--fc-coal);}
.fc-achip-pr{font-size:.68rem;color:var(--fc-cool);margin-top:.08rem;}
.fc-achip.fc-sel .fc-achip-pr{color:var(--fc-amber);}
.fc-hrs-box{background:var(--fc-paper);border:1.5px solid var(--fc-edge);border-radius:var(--fc-r);padding:1.2rem 1.4rem;}
.fc-hrs-range{-webkit-appearance:none;width:100%;height:3px;background:var(--fc-silver);border-radius:2px;margin-top:.7rem;}
.fc-hrs-range::-webkit-slider-thumb{-webkit-appearance:none;width:16px;height:16px;border-radius:50%;background:var(--fc-amber);cursor:pointer;box-shadow:0 0 0 3px var(--fc-ambg);}
.fc-hrs-disp{font-family:var(--fc-fh);font-size:1.35rem;color:var(--fc-coal);}
/* Order box */
.fc-orderbox{background:var(--fc-paper);border:1.5px solid var(--fc-edge2);border-radius:var(--fc-r2);overflow:hidden;position:sticky;top:2.5rem;}
.fc-ob-head{background:var(--fc-navy);padding:.9rem 1.35rem;}
.fc-ob-head h3{font-family:var(--fc-fb);font-size:.55rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:rgba(255,255,255,0.28);}
.fc-ob-lines{padding:1.1rem 1.35rem;min-height:68px;}
.fc-ob-empty{font-size:.75rem;color:var(--fc-mist);font-style:italic;}
.fc-ob-line{display:flex;justify-content:space-between;gap:.7rem;font-size:.77rem;margin-bottom:.52rem;}
.fc-ob-lnm{color:var(--fc-cool);}
.fc-ob-lpr{font-family:var(--fc-fb);font-weight:600;color:var(--fc-coal);}
.fc-ob-foot{border-top:1px solid var(--fc-edge);padding:1.1rem 1.35rem;}
.fc-ob-tot{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.1rem;}
.fc-ob-totl{font-family:var(--fc-fb);font-size:.56rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--fc-mist);}
.fc-ob-totn{font-family:var(--fc-fh);font-size:2rem;color:var(--fc-coal);}
.fc-ob-btn{display:block;width:100%;text-align:center;background:var(--fc-amber);color:white;font-family:var(--fc-fb);font-size:.8rem;font-weight:600;padding:.82rem;border-radius:100px;cursor:pointer;border:none;transition:var(--fc-ease);}
.fc-ob-btn:hover:not(:disabled){background:var(--fc-amber2);}
.fc-ob-btn:disabled{opacity:.32;cursor:not-allowed;}

/* ---- CHECKOUT ---- */
.fc-cowrap{max-width:800px;margin:0 auto;padding:5rem 2.5rem;display:grid;grid-template-columns:1fr 248px;gap:3.5rem;align-items:start;}
.fc-fld-lbl{display:block;font-family:var(--fc-fb);font-size:.56rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--fc-cool);margin-bottom:.4rem;}
.fc-fld{width:100%;background:var(--fc-bone);border:1.5px solid var(--fc-edge);border-radius:var(--fc-r);padding:.67rem .9rem;color:var(--fc-coal);font-size:.86rem;transition:border-color 0.2s;}
.fc-fld:focus{outline:none;border-color:var(--fc-amber);}
.fc-fg{margin-bottom:1.05rem;}
.fc-fg-duo{display:grid;grid-template-columns:1fr 1fr;gap:.9rem;}
.fc-agree{display:flex;align-items:flex-start;gap:.5rem;font-size:.76rem;color:var(--fc-cool);line-height:1.55;margin:1.25rem 0;}
.fc-agree input{margin-top:.15rem;accent-color:var(--fc-amber);}
.fc-agree a{color:var(--fc-amber);}
.fc-co-panel{background:var(--fc-bone);border:1.5px solid var(--fc-edge);border-radius:var(--fc-r2);overflow:hidden;position:sticky;top:2.5rem;}
.fc-co-ph{background:var(--fc-ivory);padding:.85rem 1.2rem;border-bottom:1px solid var(--fc-edge);}
.fc-co-ph h3{font-family:var(--fc-fb);font-size:.56rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--fc-cool);}
.fc-co-pb{padding:1.1rem 1.2rem;}
.fc-co-line{display:flex;justify-content:space-between;gap:1rem;font-size:.76rem;margin-bottom:.5rem;}
.fc-co-nm{color:var(--fc-cool);}
.fc-co-pr{font-family:var(--fc-fb);font-weight:600;color:var(--fc-coal);}
.fc-co-hr{border:none;border-top:1px solid var(--fc-edge);margin:.75rem 0;}
.fc-co-totr{display:flex;justify-content:space-between;gap:1rem;margin-bottom:.65rem;}
.fc-co-totl{font-family:var(--fc-fb);font-size:.56rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--fc-cool);}
.fc-co-totn{font-family:var(--fc-fh);font-size:1.55rem;color:var(--fc-coal);}
.fc-co-sec{display:flex;align-items:center;gap:.3rem;font-size:.65rem;color:var(--fc-mist);}

/* ---- LEGAL ---- */
.fc-legal{max-width:760px;margin:0 auto;padding:5rem 2.5rem;}
.fc-legal h2{font-family:var(--fc-fh);font-size:1.5rem;margin:2.5rem 0 .75rem;color:var(--fc-coal);}
.fc-legal h3{font-family:var(--fc-fb);font-size:.88rem;font-weight:700;color:var(--fc-coal);margin:1.4rem 0 .4rem;}
.fc-legal p{font-size:.85rem;color:var(--fc-cool);line-height:1.82;margin-bottom:.85rem;}
.fc-legal ul{padding-left:1.2rem;margin:.4rem 0 .9rem;display:flex;flex-direction:column;gap:.3rem;}
.fc-legal li{font-size:.85rem;color:var(--fc-cool);list-style:disc;line-height:1.7;}
.fc-legal a{color:var(--fc-amber);}
.fc-legal address{font-style:normal;background:var(--fc-bone);border-left:3px solid var(--fc-amber);padding:.9rem 1.15rem;margin:.85rem 0;border-radius:0 var(--fc-r) var(--fc-r) 0;font-size:.85rem;line-height:1.9;color:var(--fc-coal);}
.fc-legal table{width:100%;border-collapse:collapse;font-size:.76rem;margin:.85rem 0 1.35rem;}
.fc-legal th{background:var(--fc-bone);color:var(--fc-coal);padding:.55rem .9rem;text-align:left;font-weight:700;font-size:.68rem;letter-spacing:.06em;text-transform:uppercase;border-bottom:1px solid var(--fc-edge);}
.fc-legal td{padding:.55rem .9rem;border-bottom:1px solid var(--fc-edge);color:var(--fc-cool);vertical-align:top;}

/* ---- FOOTER ---- */
.fc-ground{background:var(--fc-navy);}
.fc-grd-top{padding:5rem 0 4rem;border-bottom:1px solid rgba(255,255,255,0.06);}
.fc-grd-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:3rem;}
.fc-grd-brand{display:flex;align-items:center;gap:.5rem;margin-bottom:.85rem;}
.fc-grd-brand img{width:20px;height:20px;}
.fc-grd-bn{font-family:var(--fc-fb);font-size:.8rem;font-weight:600;color:rgba(247,245,241,0.8);letter-spacing:-0.01em;}
.fc-grd-tag{font-size:.72rem;color:rgba(255,255,255,0.2);line-height:1.65;max-width:26ch;margin-bottom:1.35rem;}
.fc-grd-soc{display:flex;gap:.38rem;}
.fc-grd-soc a{width:26px;height:26px;border-radius:var(--fc-r);background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.28);transition:var(--fc-ease);}
.fc-grd-soc a:hover{color:var(--fc-amber);background:var(--fc-ambg);border-color:var(--fc-ambg2);}
.fc-grd-ch{font-size:.55rem;font-weight:700;letter-spacing:.17em;text-transform:uppercase;color:rgba(255,255,255,0.16);margin-bottom:.85rem;}
.fc-grd-links{display:flex;flex-direction:column;gap:.5rem;}
.fc-grd-links a{font-size:.76rem;color:rgba(255,255,255,0.32);transition:color 0.18s;}
.fc-grd-links a:hover{color:rgba(255,255,255,0.7);}
.fc-grd-ct a{display:flex;align-items:flex-start;gap:.4rem;font-size:.72rem;color:rgba(255,255,255,0.28);margin-bottom:.5rem;transition:color 0.2s;}
.fc-grd-ct a:hover{color:rgba(255,255,255,0.6);}
.fc-grd-ct svg{flex-shrink:0;margin-top:.1rem;color:var(--fc-amber);}
.fc-grd-bottom{padding:1.25rem 0;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.fc-grd-copy,.fc-grd-note{font-size:.65rem;color:rgba(255,255,255,0.14);}
.fc-grd-legal{display:flex;gap:1.1rem;}
.fc-grd-legal a{font-size:.65rem;color:rgba(255,255,255,0.14);transition:color 0.2s;}
.fc-grd-legal a:hover{color:rgba(255,255,255,0.45);}

/* ---- COOKIE ---- */
.fc-cookie{position:fixed;bottom:1.5rem;left:1.5rem;z-index:9999;max-width:340px;background:var(--fc-paper);border:1.5px solid var(--fc-edge2);border-radius:var(--fc-r2);padding:1.2rem 1.4rem;box-shadow:0 8px 28px rgba(0,0,0,0.08);display:none;}
.fc-cookie p{font-size:.74rem;color:var(--fc-cool);line-height:1.6;margin-bottom:.8rem;}
.fc-cookie-btns{display:flex;gap:.4rem;}
.fc-ck-yes{flex:1;background:var(--fc-amber);color:white;font-family:var(--fc-fb);font-size:.74rem;font-weight:600;padding:.44rem .8rem;border-radius:100px;border:none;cursor:pointer;transition:var(--fc-ease);}
.fc-ck-yes:hover{background:var(--fc-amber2);}
.fc-ck-no{font-family:var(--fc-fb);font-size:.74rem;font-weight:600;color:var(--fc-cool);padding:.44rem .8rem;border-radius:100px;border:1.5px solid var(--fc-edge);background:none;cursor:pointer;transition:var(--fc-ease);}
.fc-ck-no:hover{color:var(--fc-coal);border-color:var(--fc-edge2);}

/* ---- CHAT ---- */
.fc-chat-btn{position:fixed;bottom:1.75rem;right:1.75rem;z-index:9990;width:46px;height:46px;border-radius:50%;background:var(--fc-amber);color:white;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 18px rgba(198,124,58,0.35);cursor:pointer;border:none;transition:var(--fc-ease);}
.fc-chat-btn:hover{transform:scale(1.08);background:var(--fc-amber2);}
.fc-chatpanel{position:fixed;bottom:5.25rem;right:1.75rem;z-index:9989;width:288px;background:var(--fc-paper);border:1.5px solid var(--fc-edge2);border-radius:var(--fc-r2);overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,0.09);transform:translateY(10px);opacity:0;pointer-events:none;transition:opacity 0.22s,transform 0.22s;}
.fc-chatpanel.fc-copen{opacity:1;pointer-events:auto;transform:translateY(0);}
.fc-chathd{background:var(--fc-navy);padding:.9rem 1.15rem;display:flex;align-items:center;justify-content:space-between;}
.fc-cht{font-family:var(--fc-fh);font-size:.9rem;color:white;}
.fc-chs{font-size:.65rem;color:rgba(255,255,255,0.35);}
.fc-chx{color:rgba(255,255,255,0.35);cursor:pointer;border:none;background:none;}
.fc-chx:hover{color:white;}
.fc-chatbody{padding:1.1rem;}
.fc-chat-done{display:none;text-align:center;padding:1rem;font-size:.8rem;color:var(--fc-amber);font-weight:600;}
.fc-chat-inp{width:100%;background:var(--fc-bone);border:1px solid var(--fc-edge);border-radius:var(--fc-r);padding:.52rem .75rem;color:var(--fc-coal);font-size:.78rem;margin-bottom:.55rem;resize:none;transition:border-color 0.2s;}
.fc-chat-inp:focus{outline:none;border-color:var(--fc-amber);}
.fc-chat-go{width:100%;background:var(--fc-amber);color:white;font-family:var(--fc-fb);font-size:.78rem;font-weight:600;padding:.55rem;border-radius:100px;border:none;cursor:pointer;transition:var(--fc-ease);}
.fc-chat-go:hover{background:var(--fc-amber2);}

/* ---- RESULT ---- */
.fc-resultpg{min-height:75vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:5rem 2.5rem;}
.fc-ri{max-width:480px;}
.fc-rico{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;}
.fc-rico-ok{background:var(--fc-ambg);color:var(--fc-amber);border:1px solid var(--fc-ambg2);}
.fc-rico-err{background:rgba(220,38,38,0.06);color:#DC2626;border:1px solid rgba(220,38,38,0.12);}
.fc-ri h1{font-family:var(--fc-fh);font-size:2.75rem;color:var(--fc-coal);margin-bottom:.75rem;}
.fc-ri p{margin-bottom:1.75rem;}

/* ---- ANIMATIONS ---- */
.fc-rise{opacity:0;transform:translateY(18px);transition:opacity 0.55s ease,transform 0.55s ease;}
.fc-rise.fc-vis{opacity:1;transform:translateY(0);}
.fc-slide-l{opacity:0;transform:translateX(-18px);transition:opacity 0.55s ease,transform 0.55s ease;}
.fc-slide-l.fc-vis{opacity:1;transform:translateX(0);}
.fc-slide-r{opacity:0;transform:translateX(18px);transition:opacity 0.55s ease,transform 0.55s ease;}
.fc-slide-r.fc-vis{opacity:1;transform:translateX(0);}

/* ---- RESPONSIVE ---- */
@media(max-width:1024px){
  .fc-nav-links{display:none;}
  .fc-burger{display:flex;}
  .fc-wing-badge{display:none;}
  .fc-srow{grid-template-columns:1fr 1fr;}
  .fc-snum-card{border-right:none; border-bottom:1px solid var(--fc-silver);}
  .fc-showcase-inner{grid-template-columns:1fr;}
  .fc-tariff-row{grid-template-columns:1fr 1fr;}
  .fc-tcard{border-right:none;border-bottom:1px solid var(--fc-edge);}
  .fc-portrait-inner{grid-template-columns:1fr;}
  .fc-qzone-inner{grid-template-columns:1fr;}
  .fc-qcats{position:static;display:flex;flex-direction:row;flex-wrap:wrap;}
  .fc-svcwrap,.fc-buildwrap,.fc-cowrap{grid-template-columns:1fr;}
  .fc-grd-grid{grid-template-columns:1fr 1fr;}
  .fc-statsband-inner{grid-template-columns:1fr 1fr;}
  .fc-casepair{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .fc-shell{padding:0 1.25rem;}
  .fc-seg{padding:4.5rem 0;}
  .fc-srow{grid-template-columns:1fr;}
  .fc-tariff-row{grid-template-columns:1fr;}
  .fc-achips{grid-template-columns:1fr;}
  .fc-grd-grid{grid-template-columns:1fr;}
  .fc-fg-duo{grid-template-columns:1fr;}
  .fc-statsband-inner{grid-template-columns:1fr 1fr;}
}
