*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #1682F9;
    --green: #00EB77;
    --dark: #0A0F1E;
    --dark2: #111827;
    --dark3: #1A2236;
    --dark4: #1E2A40;
    --text: #F0F4FF;
    --muted: #8899BB;
    --border: rgba(255,255,255,0.08);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* NOISE TEXTURE */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,15,30,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-mark {
    display: inline-flex;
    align-items: center;
    width: 48px;
    height: 44px;
  }

  .logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
  }

  .logo-text span:first-child { color: var(--blue); }
  .logo-text span:last-child { color: var(--green); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(22,130,249,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,235,119,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,130,249,0.1);
    border: 1px solid rgba(22,130,249,0.3);
    color: var(--blue);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
  }

  .hero h1 .accent-blue { color: var(--blue); }
  .hero h1 .accent-green { color: var(--green); }

  .hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 48px;
    font-weight: 300;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    background: var(--blue);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

  .btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

  /* STATS BAR */
  .stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 32px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.6s ease 0.4s both;
  }

  .stat-item { text-align: center; }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
  }

  .stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
  }

  /* PHONE MOCKUP */
  .hero-phone {
    position: relative;
    width: 280px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease 0.5s both;
  }

  .phone-frame {
    background: var(--dark3);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  }

  .phone-screen {
    background: #111827;
    border-radius: 30px;
    overflow: hidden;
    height: 520px;
    position: relative;
  }

  .phone-notch {
    width: 80px;
    height: 24px;
    background: var(--dark3);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .phone-content {
    padding: 16px;
    height: 100%;
  }

  .phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .phone-greeting {
    font-size: 11px;
    color: #6B7280;
  }

  .phone-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
  }

  .phone-card {
    background: #1A2F5A;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
  }

  .phone-balance-label {
    font-size: 10px;
    color: #88AADD;
    margin-bottom: 4px;
  }

  .phone-balance {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
  }

  .phone-brand {
    font-size: 12px;
    font-weight: 700;
    color: #00EB77;
  }

  .phone-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .phone-action {
    background: #1E2A40;
    border-radius: 12px;
    padding: 10px 4px;
    text-align: center;
  }

  .phone-action-icon {
    width: 28px;
    height: 28px;
    background: rgba(22,130,249,0.2);
    border-radius: 8px;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .phone-action-label {
    font-size: 9px;
    color: #6B7280;
  }

  .phone-tx {
    background: #1E2A40;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .phone-tx-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .phone-tx-info { flex: 1; }
  .phone-tx-name { font-size: 11px; color: #D1D5DB; font-weight: 500; }
  .phone-tx-date { font-size: 9px; color: #6B7280; }
  .phone-tx-amount { font-size: 12px; font-weight: 600; }
  .phone-tx-credit { color: #00EB77; }
  .phone-tx-debit { color: #FF4444; }

  /* FEATURES */
  .section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .section-tag {
    display: inline-block;
    background: rgba(22,130,249,0.1);
    border: 1px solid rgba(22,130,249,0.2);
    color: var(--blue);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
    font-weight: 300;
    margin-bottom: 60px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22,130,249,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .feature-card:hover { border-color: rgba(22,130,249,0.3); transform: translateY(-4px); }
  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .feature-icon-blue { background: rgba(22,130,249,0.15); }
  .feature-icon-green { background: rgba(0,235,119,0.15); }
  .feature-icon-yellow { background: rgba(255,179,71,0.15); }
  .feature-icon-purple { background: rgba(155,89,182,0.15); }
  .feature-icon-red { background: rgba(255,107,107,0.15); }
  .feature-icon-teal { background: rgba(29,158,117,0.15); }

  .feature-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* HOW IT WORKS */
  .how-section {
    background: var(--dark2);
    padding: 100px 40px;
    position: relative;
  }

  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
  }

  .step-item { text-align: center; position: relative; }

  .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark3);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .step-desc { font-size: 14px; color: var(--muted); font-weight: 300; }

  /* WAITLIST */
  .waitlist-section {
    padding: 100px 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .waitlist-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
  }

  .waitlist-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(22,130,249,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .waitlist-card h2 {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .waitlist-card p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 36px;
  }

  .waitlist-form {
    display: flex;
    gap: 12px;
  }

  .waitlist-input {
    flex: 1;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 16px 24px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
  }

  .waitlist-input::placeholder { color: var(--muted); }
  .waitlist-input:focus { border-color: var(--blue); }

  .waitlist-btn {
    background: var(--blue);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .waitlist-btn:hover { opacity: 0.85; }

  /* FOOTER */
  footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 60px 40px 40px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 300;
    margin-top: 16px;
    max-width: 260px;
    line-height: 1.7;
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    color: var(--muted);
    font-size: 13px;
    font-weight: 300;
  }

  .footer-bottom span { color: var(--green); }

  .social-links { display: flex; gap: 16px; }
  .social-link {
    width: 36px;
    height: 36px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s;
  }
  .social-link:hover { border-color: var(--blue); color: var(--blue); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* SVG ICONS */
  .icon { width: 24px; height: 24px; }

  /* COUNTRIES */
  .countries {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
  }

  .country-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--muted);
  }

  .country-flag { font-size: 18px; }

  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero { padding: 100px 20px 60px; }
    .stats-bar { gap: 24px; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .waitlist-form { flex-direction: column; }
    .section { padding: 60px 20px; }
  }



  /* ============================================================
   FlowPesa Footer Styles
   Add this to your css/style.css
   Fonts already loaded via Google Fonts in your <head>:
   Syne (400,600,700,800) + DM Sans (300,400,500)
============================================================ */

/* ---------- Outer wrapper ---------- */
.fp-footer-wrap {
  background: #0A0F1E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Inner container ---------- */
.fp-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 0;
}

/* ---------- TOP GRID ---------- */
.fp-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---------- Brand column ---------- */
.fp-brand-col {
  display: flex;
  flex-direction: column;
}

.fp-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fp-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #00EB77 0%, #1682F9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #0A0F1E;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.fp-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.fp-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #5C6A8A;
  margin: 0 0 28px 0;
  max-width: 280px;
}

/* ---------- Social icons ---------- */
.fp-social-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.fp-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.fp-social-btn:hover {
  background: rgba(22, 130, 249, 0.12);
  border-color: rgba(22, 130, 249, 0.35);
  transform: translateY(-2px);
}

.fp-social-btn svg {
  width: 15px;
  height: 15px;
  fill: #4A5A7A;
  transition: fill 0.2s ease;
}

.fp-social-btn:hover svg {
  fill: #1682F9;
}

/* ---------- Nav columns ---------- */
.fp-nav-col h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.fp-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fp-nav-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #4A5A7A;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fp-nav-col ul li a:hover {
  color: #00EB77;
}

/* "Soon" badge */
.fp-badge-green {
  background: rgba(0, 235, 119, 0.1);
  color: #00EB77;
  font-size: 10px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(0, 235, 119, 0.2);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* ---------- MIDDLE: Trust badges ---------- */
.fp-footer-mid {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.fp-secure-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 10px 16px;
  flex-shrink: 0;
}

.fp-secure-badge svg {
  flex-shrink: 0;
}

.fp-secure-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #4A5A7A;
  font-weight: 400;
  white-space: nowrap;
}

.fp-secure-badge strong {
  color: #8A9BBF;
  font-weight: 500;
}

.fp-divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ---------- BOTTOM BAR ---------- */
.fp-footer-bottom {
  padding: 24px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fp-copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2D3A55;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fp-copyright span {
  color: #3A4A68;
}

.fp-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fp-legal-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2D3A55;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fp-legal-links a:hover {
  color: #5C6A8A;
}

/* Uganda flag + label */
.fp-ug-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #2D3A55;
}

.fp-flag {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  width: 20px;
  height: 13px;
  flex-shrink: 0;
}

.fp-flag-stripe {
  flex: 1;
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile
============================================================ */

/* Tablet: 2-column grid */
@media (max-width: 900px) {
  .fp-footer {
    padding: 56px 28px 0;
  }

  .fp-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .fp-brand-col {
    grid-column: 1 / -1;
  }

  .fp-tagline {
    max-width: 100%;
  }

  .fp-footer-mid {
    gap: 10px;
  }

  .fp-divider-dot {
    display: none;
  }

  .fp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Mobile: single column */
@media (max-width: 560px) {
  .fp-footer {
    padding: 48px 20px 0;
  }

  .fp-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fp-secure-badge span {
    font-size: 12px;
  }

  .fp-footer-mid {
    flex-direction: column;
    align-items: flex-start;
  }

  .fp-legal-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}


.fp-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333; /* Default icon color */
  transition: color 0.2s ease, transform 0.2s ease;
}

.fp-social-btn:hover {
  transform: translateY(-2px); /* Slight lift on hover */
}

/* Brand Colors on Hover */
.fp-social-btn[title="Twitter/X"]:hover { color: #000000; }
.fp-social-btn[title="Facebook"]:hover { color: #1877F2; }
.fp-social-btn[title="Instagram"]:hover { color: #E4405F; }
.fp-social-btn[title="LinkedIn"]:hover { color: #0077B5; }