/* ── TOKENS ─────────────────────────────────────── */
:root {
  --green:     #3DD968;
  --navy:      #0f1f3d;
  --navy-s:    #1a2f52;
  --white:     #ffffff;
  --mint:      #edfaf2;
  --mint-deep: #d4f5e2;
  --glow:      0 0 32px rgba(61,217,104,.45);
  --r:         28px;
  --t:         .3s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Nunito', sans-serif; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; padding: 0 100px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 14px 30px; border-radius: 100px; border: none; cursor: pointer;
  transition: var(--t);
}
.btn-green  { background: var(--green); color: var(--navy); box-shadow: var(--glow); }
.btn-green:hover  { transform: translateY(-2px); box-shadow: 0 0 48px rgba(61,217,104,.65); background: #52e87d; }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover   { background: var(--navy-s); transform: translateY(-2px); }
.btn-outline{ background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover{ background: var(--navy); color: var(--white); }
.btn-outline-white{ background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline-white:hover{ border-color: var(--white); }

/* ── LABELS ─────────────────────────────────────── */
.label {
  display: inline-block; background: var(--mint); color: var(--green);
  font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}

/* ── REVEAL ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: background var(--t), box-shadow var(--t), padding var(--t);
}
nav.scrolled {
  background: rgba(255,255,255,.75); backdrop-filter: blur(20px);
  box-shadow: 0 2px 28px rgba(15,31,61,.08); padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo  { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 38px; height: 38px; }
.nav-logo span { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-weight: 500; font-size: .95rem; color: var(--navy-s);
  transition: color var(--t); position: relative;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -3px; left:0; width:0; height:2px;
  background: var(--green); border-radius: 2px; transition: width var(--t);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); display: block; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); transition: color var(--t); }
.mobile-menu a:hover { color: var(--green); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  background: url('images/hero-bg.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 90px;
  overflow: hidden;
  position: relative;
}

.hblob {
  position: absolute; border-radius: 50%;
  background: var(--green); filter: blur(80px); opacity: .18; pointer-events: none;
}
.hblob-1 { width: 380px; height: 380px; top: -80px; right: 5%; animation: bf 9s ease-in-out infinite; }
.hblob-2 { width: 240px; height: 240px; bottom: 40px; left: 3%; animation: bf 12s ease-in-out infinite reverse; }
@keyframes bf {
  0%,100%{ transform: translate(0,0) scale(1); }
  50%    { transform: translate(20px,-20px) scale(1.06); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative; z-index: 1;
  padding: 60px 0 80px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy-s);
  font-size: .85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 100px;
  box-shadow: 0 2px 16px rgba(15,31,61,.08);
  margin-bottom: 24px;
}
.hero-pill .dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%    { opacity:.5; transform:scale(.8); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 800;
}
.hero h1 .acc { color: var(--green); }

.hero-tagline {
  font-size: 1.05rem; font-weight: 600; color: var(--navy-s); margin-bottom: 14px;
}
.hero-desc {
  font-size: 1rem; color: var(--navy-s); line-height: 1.75; max-width: 460px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--navy-s);
}
.badge-icon {
  width: 34px; height: 34px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; box-shadow: 0 2px 8px rgba(15,31,61,.08);
}
.badge-icon i { color: var(--green); font-size: .9rem; }

.hero-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap::before {
  content:'';
  position: absolute;
  width: 88%; height: 88%;
  background: var(--mint-deep);
  border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%;
  z-index: 0;
  animation: morph 9s ease-in-out infinite;
}
@keyframes morph {
  0%,100%{ border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%; }
  33%    { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
  66%    { border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; }
}
.hero-img-wrap img {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px;
  border-radius: 24px; object-fit: cover;
  box-shadow: 0 24px 72px rgba(15,31,61,.16);
}
.fc {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 12px 18px; box-shadow: 0 8px 28px rgba(15,31,61,.12); z-index: 2;
  font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
  animation: fy 4s ease-in-out infinite;
}
.fc-1 { bottom: 50px; left: -16px; animation-delay: 0s; }
.fc-2 { top: 50px;   right: -16px; animation-delay: 1.8s; }
@keyframes fy { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
.fc .dot2 { width: 10px; height: 10px; background: var(--green); border-radius: 50%; flex-shrink:0; }

/* ════════════════════════════════════════════════
   SOCIAL PROOF BAR
════════════════════════════════════════════════ */
.proof-bar { background: var(--white); padding: 32px 0; overflow: hidden; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.proof-label {
  text-align: center; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-s); margin-bottom: 20px;
}
.proof-label::after {
  content:''; display:block; width:36px; height:2px;
  background: var(--green); margin: 6px auto 0; border-radius:2px;
}
.track-wrap { overflow: hidden; position: relative; }
.track-wrap::before,.track-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2;
}
.track-wrap::before { left:0; background: linear-gradient(to right, var(--white), transparent); }
.track-wrap::after  { right:0; background: linear-gradient(to left, var(--white), transparent); }
.track {
  display: flex; gap: 48px; align-items: center;
  width: max-content; animation: slide 24s linear infinite;
}
.track:hover { animation-play-state: paused; }
@keyframes slide { 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }
.tech-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--mint); border-radius: 100px;
  padding: 10px 20px; font-weight: 600; font-size: .9rem; color: var(--navy);
  white-space: nowrap;
}
.ti {
  width: 24px; height: 24px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: .65rem; font-weight: 800; flex-shrink:0;
}

/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about { padding: 110px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 28px; width: 100%; object-fit: cover; box-shadow: 0 28px 72px rgba(15,31,61,.14); }
.about h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--navy); margin-bottom: 18px; line-height:1.15; }
.about p  { font-size: .98rem; color: var(--navy-s); line-height: 1.8; margin-bottom: 18px; }

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services { padding: 110px 0; background: url('images/hero-bg.png') center center / cover no-repeat; }
.services-hd { text-align: center; margin-bottom: 16px; }
.services-hd h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--navy); margin-bottom: 12px; }
.services-hd p  { font-size: 1rem; color: var(--navy-s); max-width: 560px; margin: 0 auto 50px; line-height: 1.7; }

.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.srv { border-radius: 28px; padding: 44px 36px; transition: var(--t); cursor: default; }
.srv-a { background: var(--green); }
.srv-b { background: #c5d5ff; }
.srv-c { background: #fef3c7; }
.srv:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(15,31,61,.13); }
.srv-icon-wrap {
  width: 56px; height: 56px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 32px;
}
.srv-icon-wrap svg { width: 26px; height: 26px; }
.srv h3 { font-size: 1.55rem; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.srv p  { font-size: .93rem; color: var(--navy-s); line-height: 1.75; margin-bottom: 28px; }

/* ════════════════════════════════════════════════
   WHY US / STATS
════════════════════════════════════════════════ */
.why { background: var(--navy); padding: 110px 0; overflow: hidden; position: relative; }
.why::before {
  content:''; position: absolute; width: 700px; height: 700px;
  background: var(--green); border-radius: 50%; filter: blur(140px);
  opacity: .07; top: -150px; right: -200px;
}
.why-hd { text-align: center; margin-bottom: 60px; }
.why-hd h2    { font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--white); margin-bottom: 12px; }
.why-hd p     { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.why-hd .label{ background: rgba(61,217,104,.15); }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; padding: 42px 28px; text-align: center; transition: var(--t);
}
.stat:hover { background: rgba(61,217,104,.09); border-color: rgba(61,217,104,.3); transform: translateY(-4px); }
.stat-n { font-family:'Nunito',sans-serif; font-size: 3rem; font-weight: 800; color: var(--green); line-height:1; margin-bottom:8px; }
.stat-l { font-size: .93rem; color: rgba(255,255,255,.6); font-weight:500; }

/* ════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════ */
.process { padding: 110px 0; background: var(--white); }
.process-hd { text-align: center; margin-bottom: 72px; }
.process-hd h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--navy); margin-bottom:12px; }
.process-hd p  { font-size: 1rem; color: var(--navy-s); max-width:520px; margin:0 auto; line-height:1.7; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before {
  content:''; position:absolute; top:32px; left:8%; right:8%; height:2px;
  background: repeating-linear-gradient(to right, var(--green) 0, var(--green) 12px, transparent 12px, transparent 24px);
}
.step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; }
.step-n {
  width: 64px; height:64px; background:var(--green); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-size:1.3rem; font-weight:800; color:var(--navy);
  margin-bottom:24px; position:relative; z-index:1; box-shadow:var(--glow);
  transition: var(--t);
}
.step:hover .step-n { transform:scale(1.1); box-shadow:0 0 44px rgba(61,217,104,.65); }
.step h3 { font-size:1.05rem; color:var(--navy); margin-bottom:10px; }
.step p  { font-size:.88rem; color:var(--navy-s); line-height:1.65; }

/* ════════════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════════════ */
.portfolio { padding: 110px 0; background: url('images/hero-bg.png') center center / cover no-repeat; }
.port-hd {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:50px; flex-wrap:wrap; gap:20px;
}
.port-hd h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--navy); }
.port-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.port-card { border-radius:24px; overflow:hidden; position:relative; aspect-ratio:4/3; cursor:pointer; }
.port-card img { width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.port-card:hover img { transform:scale(1.07); }
.port-overlay {
  position:absolute; inset:0;
  background: rgba(61,217,104,.88);
  display:flex; flex-direction:column; justify-content:flex-end; padding:28px;
  opacity:0; transition:opacity .35s ease;
}
.port-card:hover .port-overlay { opacity:1; }
.port-overlay h3 { color:var(--navy); font-size:1.2rem; margin-bottom:10px; }
.tags { display:flex; gap:8px; flex-wrap:wrap; }
.tag {
  background:rgba(15,31,61,.15); color:var(--navy);
  font-size:.75rem; font-weight:600; padding:4px 12px; border-radius:100px;
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testi { background: var(--white); padding: 110px 0; }
.testi-hd { text-align:center; margin-bottom:56px; }
.testi-hd h2 { font-size:clamp(1.9rem,3.5vw,2.7rem); color:var(--navy); margin-bottom:12px; }
.testi-hd p  { font-size:1rem; color:var(--navy-s); max-width:520px; margin:0 auto; line-height:1.7; }

.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card {
  background:var(--mint); border-radius:24px; padding:36px 30px;
  transition:var(--t); position:relative;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(15,31,61,.09); }
.qm { font-family:'Nunito',sans-serif; font-size:4rem; line-height:.8; color:var(--green); margin-bottom:14px; display:block; }
.stars { color:var(--green); font-size:.9rem; letter-spacing:2px; margin-bottom:14px; display:block; }
.testi-card p { font-size:.93rem; color:var(--navy-s); line-height:1.78; margin-bottom:24px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.tav {
  width:42px; height:42px; border-radius:50%; background:var(--mint-deep);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.88rem; color:var(--green);
  border:2px solid var(--green); flex-shrink:0;
}
.tname { font-weight:600; font-size:.88rem; color:var(--navy); }
.trole { font-size:.78rem; color:var(--navy-s); }

/* ════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════ */
.team { padding: 110px 0; background: url('images/hero-bg.png') center center / cover no-repeat; }
.team-hd { text-align:center; margin-bottom:60px; }
.team-hd h2 { font-size:clamp(1.9rem,3.5vw,2.7rem); color:var(--navy); margin-bottom:12px; }
.team-hd p  { font-size:1rem; color:var(--navy-s); max-width:480px; margin:0 auto; line-height:1.7; }

.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:820px; margin:0 auto; }
.team-card {
  text-align:center; padding:40px 24px;
  background:var(--white); border-radius:24px;
  border:1.5px solid transparent; transition:var(--t);
}
.team-card:hover { border-color:var(--green); box-shadow:0 0 0 1px var(--green), var(--glow); transform:translateY(-4px); }
.tav-wrap {
  width:100px; height:100px; border-radius:50%; overflow:hidden;
  margin:0 auto 20px;
  border:3px solid var(--green);
  box-shadow: 0 0 0 6px rgba(61,217,104,.18);
}
.tav-inner {
  width:100%; height:100%;
  background:linear-gradient(135deg, var(--green) 0%, #1b9147 100%);
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-size:2rem; font-weight:800; color:var(--white);
}
.team-card h3 { font-size:1.1rem; color:var(--navy); margin-bottom:6px; }
.team-card p  { font-size:.88rem; color:var(--green); font-weight:600; }

/* ════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */
.cta-banner { background:var(--navy); padding:110px 0; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before {
  content:''; position:absolute; width:800px; height:800px;
  background:var(--green); border-radius:50%; filter:blur(140px); opacity:.07;
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.cta-banner h2 { font-size:clamp(2rem,4.5vw,3.2rem); color:var(--white); margin-bottom:16px; position:relative; }
.cta-banner > .container > p { font-size:1.05rem; color:rgba(255,255,255,.55); margin-bottom:40px; position:relative; }
.cta-banner .btn { font-size:1.05rem; padding:16px 42px; position:relative; }
.cta-link { display:block; margin-top:18px; color:rgba(255,255,255,.45); font-size:.9rem; font-weight:500; transition:color var(--t); position:relative; }
.cta-link:hover { color:var(--white); }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer { background:var(--navy); border-top:1px solid rgba(61,217,104,.14); padding:72px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:48px; margin-bottom:56px; }

.fbrand .logo-row { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.fbrand .logo-row img { width:36px; height:36px; }
.fbrand .logo-row span { font-family:'Nunito',sans-serif; font-weight:800; font-size:1.3rem; color:var(--white); }
.fbrand > p { font-size:.88rem; color:rgba(255,255,255,.45); line-height:1.75; margin-bottom:20px; }

.social-row { display:flex; gap:12px; }
.soc {
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center; transition:var(--t); cursor:pointer;
}
.soc:hover { background:var(--green); }
.soc svg { width:16px; height:16px; fill:var(--white); }

.fcol h4 {
  font-family:'DM Sans',sans-serif; font-weight:600; font-size:.78rem;
  letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.32); margin-bottom:20px;
}
.fcol ul { list-style:none; display:flex; flex-direction:column; gap:12px; }
.fcol ul li a { font-size:.88rem; color:rgba(255,255,255,.52); transition:color var(--t); }
.fcol ul li a:hover { color:var(--green); }

.fdiv { height:1px; background:rgba(61,217,104,.18); margin-bottom:28px; }
.fbot { display:flex; align-items:center; justify-content:space-between; font-size:.82rem; color:rgba(255,255,255,.28); flex-wrap:wrap; gap:12px; }
.fbot a { color:rgba(255,255,255,.28); transition:color var(--t); }
.fbot a:hover { color:var(--green); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media(max-width:1024px){
  .srv-grid    { grid-template-columns:1fr 1fr; }
  .stats       { grid-template-columns:repeat(2,1fr); }
  .steps       { grid-template-columns:repeat(2,1fr); gap:40px; }
  .steps::before{ display:none; }
  .port-grid   { grid-template-columns:1fr 1fr; }
  .testi-grid  { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .container { padding: 0 30px; }
  .hero-grid       { grid-template-columns:1fr; text-align:center; }
  .hero-img-wrap   { order:-1; }
  .hero-ctas,.trust-row{ justify-content:center; }
  .hero-desc       { text-align:center; margin-left:auto; margin-right:auto; }
  .nav-links,.nav-cta{ display:none; }
  .hamburger       { display:flex; }
  .srv-grid        { grid-template-columns:1fr; }
  .stats           { grid-template-columns:1fr 1fr; }
  .port-grid       { grid-template-columns:1fr; }
  .testi-grid      { grid-template-columns:1fr; }
  .team-grid       { grid-template-columns:1fr; max-width:300px; }
  .port-hd         { flex-direction:column; align-items:flex-start; }
  .footer-grid     { grid-template-columns:1fr; }
  .about-grid      { grid-template-columns:1fr; }
  .fc-2            { display:none; }
}
