/* ═══════════════════════════════════════════════════
   SPARK INNOVATIONS — Main Stylesheet
   sparkinnovationorg.com
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #1d4ed8; border-radius: 3px; }

/* ── CSS VARIABLES ── */
:root {
  --blue: #1d4ed8;
  --blue-d: #1e3a8a;
  --blue-l: #3b82f6;
  --blue-xl: #eff6ff;
  --amber: #f59e0b;
  --white: #ffffff;
  --bg: #f8f9fb;
  --bg2: #f1f4f8;
  --text: #111827;
  --text2: #374151;
  --text3: #6b7280;
  --text4: #9ca3af;
  --border: #e5e7eb;
  --border2: #d1d5db;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --sp: 88px 0;
}

/* ── LAYOUT ── */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.sec { padding: var(--sp); }
.sec-bg { padding: var(--sp); background: var(--bg); }
.sec-bg2 { padding: var(--sp); background: var(--bg2); }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.hi {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px; height: 90px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
.logo img { height: 90px; width: auto; display: block; }

/* ── NAVIGATION ── */
nav { display: flex; align-items: center; gap: 4px; }
nav > a, nav > .nd > a {
  color: var(--text2); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  padding: 8px 13px; border-radius: 8px;
  transition: all .18s; cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
nav > a:hover, nav > .nd > a:hover { color: var(--blue); background: var(--blue-xl); }
nav > a.active, nav > .nd > a.active { color: var(--blue); font-weight: 600; }

.nd { position: relative; }
.dm {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .2s; z-index: 200;
}
.nd:hover .dm { opacity: 1; visibility: visible; transform: translateY(0); }
.dm a {
  display: block; padding: 9px 14px;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--text2); text-decoration: none; margin-bottom: 2px;
  transition: all .15s;
}
.dm a:hover { background: var(--blue-xl); color: var(--blue); }

/* ── PHONE IN HEADER ── */
.hdr-phone {
  color: var(--text2); font-size: 13px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border);
  transition: all .18s; white-space: nowrap;
}
.hdr-phone:hover { border-color: var(--blue); color: var(--blue); }

/* ── BUTTONS ── */
.btn-hdr {
  background: var(--blue); color: #fff;
  padding: 9px 20px; border-radius: 9px;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-hdr:hover { background: var(--blue-d); box-shadow: 0 4px 16px rgba(29,78,216,.3); transform: translateY(-1px); }

.btn-p {
  background: var(--blue); color: #fff;
  padding: 13px 28px; border-radius: 9px;
  font-weight: 600; font-size: 13.5px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-p:hover { background: var(--blue-d); box-shadow: 0 8px 28px rgba(29,78,216,.3); transform: translateY(-2px); }

.btn-o {
  background: transparent; color: var(--blue);
  padding: 13px 26px; border-radius: 9px;
  font-weight: 600; font-size: 13.5px;
  border: 1.5px solid var(--blue); cursor: pointer;
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-o:hover { background: var(--blue-xl); transform: translateY(-1px); }

.btn-cw {
  background: #fff; color: var(--blue);
  padding: 13px 28px; border-radius: 9px;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cw:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }

.btn-cg {
  background: rgba(255,255,255,.12); color: #fff;
  padding: 13px 24px; border-radius: 9px;
  font-weight: 600; font-size: 13.5px;
  border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cg:hover { background: rgba(255,255,255,.22); }

/* ── MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; transition: all .3s; }
.mnav {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,.99); z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.mnav.open { display: flex; }
.mnav a {
  font-family: 'Manrope', sans-serif; font-size: 28px;
  font-weight: 700; color: var(--text); text-decoration: none;
  cursor: pointer; transition: color .2s;
}
.mnav a:hover { color: var(--blue); }
.mnav-close { position: absolute; top: 22px; right: 26px; font-size: 26px; cursor: pointer; color: var(--text3); background: none; border: none; line-height: 1; }

/* ── PAGE BANNER ── */
.pb {
  padding: 108px 0 64px;
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9fb 60%, #fff 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pb::after {
  content: ''; position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,.06), transparent 70%);
}
.at { scroll-margin-top: 95px; }

/* ── TYPOGRAPHY ── */
.tag {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--blue); margin-bottom: 10px;
}
.stitle {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(30px, 3.5vw, 48px); color: var(--text);
  line-height: 1.12; letter-spacing: -.5px;
}
.stitle span { color: var(--blue); }
.sdesc {
  color: var(--text3); font-size: 16px;
  line-height: 1.72; max-width: 560px; margin-top: 14px;
}
.sh { margin-bottom: 52px; }
.sh-c { margin-bottom: 52px; text-align: center; }
.sh-c .sdesc { margin: 14px auto 0; }

/* ── SLOGAN ── */
.slogan {
  font-size: 13px; font-weight: 600; color: var(--text3);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 4px;
}

/* ── STAT ── */
.stat {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow);
}
.stat-n { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 42px; color: var(--blue); line-height: 1; }
.stat-l { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 6px; }

/* ── FEATURE CARD ── */
.fc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow); transition: all .25s;
  position: relative; overflow: hidden;
}
.fc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.fc:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.fc:hover::before { transform: scaleX(1); }
.fc-ico { width: 50px; height: 50px; background: var(--blue-xl); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.fc h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); margin-bottom: 8px; }
.fc p { color: var(--text3); font-size: 13.5px; line-height: 1.65; }

/* ── INDUSTRY CARD ── */
.ic {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 16px;
  text-align: center; transition: all .25s;
  text-decoration: none; color: inherit; display: block;
  box-shadow: var(--shadow);
}
.ic:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(29,78,216,.2); }
.ic-ico { font-size: 36px; margin-bottom: 10px; display: block; }
.ic h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--text); margin-bottom: 5px; }
.ic p { color: var(--text3); font-size: 11.5px; line-height: 1.5; }

/* ── PRODUCT CARD ── */
.pc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .25s; display: block;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
}
.pc:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(29,78,216,.25); }
.pc-img { height: 200px; overflow: hidden; background: var(--bg); position: relative; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .3s; filter: brightness(1.0) saturate(1.05) contrast(1.05); }
.pc:hover .pc-img img { transform: scale(1.05); filter: brightness(1.05) saturate(1.1); }
.pc-tag {
  position: absolute; top: 10px; right: 10px;
  background: var(--blue); color: #fff;
  border-radius: 6px; padding: 3px 10px;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
}
.pc-body { padding: 18px; }
.pc-body h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16.5px; color: var(--text); margin-bottom: 7px; }
.pc-body p { color: var(--text3); font-size: 13px; line-height: 1.6; }
.pc-ft { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid var(--border); }
.pc-link { font-size: 12.5px; color: var(--blue); font-weight: 600; transition: gap .18s; }
.pc:hover .pc-link { letter-spacing: .5px; }

/* ── PRODUCT DETAIL ── */
.pdet {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
  padding: 44px; background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow);
  margin-bottom: 52px;
}
.pdet.flip { direction: rtl; }
.pdet.flip > * { direction: ltr; }
.pdet img { width: 100%; height: 310px; object-fit: cover; border-radius: var(--radius-lg); filter: brightness(1.0) saturate(1.05) contrast(1.05); }
.pdet h2 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 28px; color: var(--text); margin-bottom: 12px; line-height: 1.18; }
.pdet h2 span { color: var(--blue); }
.pdet p { color: var(--text3); font-size: 14px; line-height: 1.74; margin-bottom: 12px; }
.pdet ul { list-style: none; font-size: 13.5px; line-height: 1.95; margin-bottom: 20px; }
.pdet ul li { color: var(--text2); display: flex; align-items: baseline; gap: 8px; }
.pdet ul li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.ptb {
  display: inline-block; background: var(--blue-xl); color: var(--blue);
  padding: 4px 13px; border-radius: 6px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px; border: 1px solid rgba(29,78,216,.15);
}

/* ── P3 GRID ── */
.p3g { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.p3c {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow); transition: all .25s;
}
.p3c:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(29,78,216,.2); }
.p3c .ico { font-size: 40px; margin-bottom: 12px; }
.p3c h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 9px; }
.p3c p { color: var(--text3); font-size: 13px; line-height: 1.65; margin-bottom: 14px; }
.p3c ul { list-style: none; font-size: 13px; line-height: 1.9; margin-bottom: 18px; }
.p3c ul li { display: flex; gap: 7px; align-items: baseline; color: var(--text2); }
.p3c ul li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── PROJECT CARD ── */
.prj { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; }
.prj:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(29,78,216,.2); }
.prj-img { height: 210px; overflow: hidden; position: relative; }
.prj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; filter: brightness(1.0) saturate(1.0) contrast(1.05); }
.prj:hover .prj-img img { transform: scale(1.04); }
.prj-tag { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--blue); border-radius: 6px; padding: 4px 11px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.prj-body { padding: 24px; }
.prj-body h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); margin-bottom: 10px; }
.prj-meta { display: flex; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.prj-meta span { font-size: 11.5px; color: var(--text3); display: flex; align-items: center; gap: 4px; }
.prj-out { background: var(--blue-xl); border-radius: 8px; padding: 10px 13px; font-size: 12.5px; color: var(--blue); font-weight: 500; border: 1px solid rgba(29,78,216,.12); }

/* ── TESTIMONIAL ── */
.tc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); transition: box-shadow .25s; }
.tc:hover { box-shadow: var(--shadow-md); }
.tc-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.tc-text { color: var(--text2); font-size: 14px; line-height: 1.76; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 42px; height: 42px; background: linear-gradient(135deg, var(--blue), var(--blue-d)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; }
.tc-name { font-weight: 600; font-size: 13.5px; color: var(--text); }
.tc-role { color: var(--text3); font-size: 12px; margin-top: 2px; }

/* ── BLOG CARD ── */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(29,78,216,.2); }
.blog-img { height: 200px; overflow: hidden; background: var(--bg); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; filter: brightness(1.0) saturate(1.05) contrast(1.05); }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: var(--blue-xl); color: var(--blue); padding: 3px 10px; border-radius: 5px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.blog-meta { display: flex; gap: 14px; align-items: center; font-size: 12px; color: var(--text4); margin-bottom: 10px; }
.blog-body h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.blog-body p { color: var(--text3); font-size: 13.5px; line-height: 1.68; flex: 1; margin-bottom: 16px; }
.blog-link { color: var(--blue); font-weight: 600; font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap .18s; margin-top: auto; }
.blog-card:hover .blog-link { gap: 9px; }

/* ── JOB CARD ── */
.jc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); transition: all .25s; }
.jc:hover { box-shadow: var(--shadow-md); border-color: rgba(29,78,216,.2); transform: translateY(-2px); }

/* ── FORM ── */
.fi { margin-bottom: 16px; }
.fi label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text3); margin-bottom: 6px; }
.fi input, .fi textarea, .fi select {
  width: 100%; background: #fff;
  border: 1.5px solid var(--border2); border-radius: 9px;
  padding: 12px 14px; color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.fi input:focus, .fi textarea:focus, .fi select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.08);
}
.fi textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none; background: #dcfce7; border: 1px solid #16a34a;
  border-radius: 9px; padding: 14px 18px; color: #15803d;
  font-weight: 600; font-size: 14px; margin-top: 12px; text-align: center;
}
.form-error {
  display: none; background: #fee2e2; border: 1px solid #dc2626;
  border-radius: 9px; padding: 14px 18px; color: #dc2626;
  font-weight: 600; font-size: 14px; margin-top: 12px; text-align: center;
}

/* ── CTA STRIP ── */
.cta-s { background: linear-gradient(135deg, var(--blue-d) 0%, var(--blue) 100%); position: relative; overflow: hidden; }
.cta-s::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-i { max-width: 1400px; margin: 0 auto; padding: 64px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; flex-wrap: wrap; }
.cta-i h2 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(26px,3vw,38px); color: #fff; line-height: 1.2; }
.cta-i p { color: rgba(255,255,255,.85); font-size: 15px; margin-top: 10px; max-width: 480px; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── CLIENTS TICKER ── */
.ticker-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.ticker-track { display: flex; gap: 40px; align-items: center; animation: ticker 24s linear infinite; width: max-content; }
.ticker-item { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 22px; font-weight: 700; font-size: 13.5px; color: var(--text3); white-space: nowrap; letter-spacing: .4px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table th { padding: 13px 20px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); border-bottom: 1px solid var(--border); font-weight: 600; background: var(--bg); }
.spec-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--text); }
.spec-table tr:nth-child(even) td { background: var(--bg); }
.spec-badge { background: var(--blue-xl); color: var(--blue); padding: 2px 10px; border-radius: 5px; font-size: 11.5px; font-weight: 600; }

/* ── FOOTER ── */
footer { background: #111827; color: #fff; padding: 72px 0 0; }
.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; }
.fb p { color: #9ca3af; font-size: 13.5px; line-height: 1.72; margin: 16px 0 20px; max-width: 290px; }
.fs { display: flex; gap: 10px; }
.fsl { width: 36px; height: 36px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; color: #9ca3af; transition: all .2s; }
.fsl:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.fc h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #6b7280; margin-bottom: 16px; }
.fc a { display: block; color: #9ca3af; text-decoration: none; font-size: 13.5px; margin-bottom: 10px; transition: color .18s; cursor: pointer; }
.fc a:hover { color: #fff; }
.fbot { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.fbot p { color: #6b7280; font-size: 12.5px; }
.fbot a { color: #6b7280; text-decoration: none; }
.fbot a:hover { color: #fff; }
.fcerts { display: flex; gap: 8px; flex-wrap: wrap; }
.fce { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: 4px 12px; font-size: 10.5px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .8px; }

/* ── WA FLOAT ── */
.waf { position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; transition: all .2s; }
.waf:hover { transform: scale(1.1); }

/* ── REVEAL ANIMATION ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .fg { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pdet, .pdet.flip { grid-template-columns: 1fr; direction: ltr; }
  .p3g { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hi { padding: 0 20px; height: 80px; }
  .logo img { height: 70px; }
  .wrap { padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hdr-phone { display: none; }
  .fg { grid-template-columns: 1fr; }
  :root { --sp: 60px 0; }
  .cta-i { flex-direction: column; gap: 24px; }
  .cta-btns { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .p3g { grid-template-columns: 1fr; }
}
