
/* ===== TOKENS ===== */
:root {
  --ink: #004d40;
  --ink-2: #228b22;
  --paper: #F7F5F0;
  --lime: #C9F33D;
  --lime-dim: #8FAE2A;
  --slate: #fff;
  --slate-dim: #fff;

  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-image: url("images/emmas.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: Inter, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.eyebrow {
  font-family: var(--slate);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: white;
}

em { font-style: italic; color: var(--lime); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--paper);
}

.main-nav {
  display: flex;
  gap: 34px;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.link-quiet {
  font-size: 0.92rem;
  color: var(--paper);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgb(255, 217, 0),
    rgb(212, 175, 55),
    rgb(255, 217, 0)
  );

  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 999px;

  border: 1px solid rgb(255, 217, 0);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 10px 35px rgb(235, 9, 9),
    inset 0 1px 1px rgb(75, 7, 7);

  position: relative;
  overflow: hidden;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
  text-shadow:
    0 1px 1px rgb(249, 248, 248),   /* subtle depth (engrave) */
    0 -1px 1px rgb(255, 255, 255); /* soft highlight */
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 16px 45px rgb(253, 252, 252),
    0 0 30px rgb(212, 175, 55);
}
.btn-ghost {
  font-size: 0.92rem;
  color: var(--paper);
  border-bottom: 1px solid var(--slate-dim);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease);
}
.btn-ghost:hover { border-color: var(--lime); }


/* ===== HERO ===== */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.04;
  margin-bottom: 26px;
}

.hero-sub {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--slate);
}
.hero-trust .dot { color: var(--line); }

/* ===== HERO 3D STAGE ===== */
.hero-stage {
  position: relative;
  height: 480px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201,243,61,0.16), transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.orbit-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit-ring--1 {
  width: 380px; height: 380px;
  transform: rotateX(72deg);
  animation: spin-ring 26s linear infinite;
}
.orbit-ring--2 {
  width: 460px; height: 460px;
  transform: rotateX(72deg);
  animation: spin-ring 38s linear infinite reverse;
  opacity: 0.6;
}
@keyframes spin-ring {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

.card-stack {
  position: relative;
  width: 280px;
  height: 176px;
  transform-style: preserve-3d;
  animation: float-stack 6s ease-in-out infinite;
}

@keyframes float-stack {
  0%, 100% { transform: translateY(0px) rotateY(-12deg) rotateX(4deg); }
  50% { transform: translateY(-14px) rotateY(-12deg) rotateX(4deg); }
}

.bank-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}

.card--back {
  background: linear-gradient(135deg, #1A2433, #0E1825);
  transform: translateZ(-36px) translateY(18px);
  opacity: 0.7;
}
.card--mid {
  background: linear-gradient(135deg, #212E40, #121F2E);
  transform: translateZ(-18px) translateY(9px);
  opacity: 0.88;
}
.card--front {
  background: linear-gradient(135deg, #2A3B52, #16222F);
  transform: translateZ(0px);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-row--bottom {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  color: var(--slate);
}

.card-chip {
  width: 30px; height: 21px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--lime), #7A9A22);
}

.card-network {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--paper);
}

.card-number {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.balance-pill {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateZ(40px);
  background: rgba(247,245,240,0.97);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.balance-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dim);
}
.balance-figure {
  font-family: var(--mono);
  font-size: 1.3rem;
  font-weight: 600;
}

.float-chip {
  position: absolute;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-family: var(--mono);
  white-space: nowrap;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
  animation: chip-float 4.5s ease-in-out infinite;
}
.float-chip--up { top: 14%; right: -2%; animation-delay: 0.3s; }
.float-chip--down { bottom: 40%; left: -6%; animation-delay: 1.2s; color: var(--slate); }
.chip-arrow { color: var(--lime); }
.chip-amt { color: #E8836B; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-strip p {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--slate-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-marks {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-marks span {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* ===== FEATURES ===== */
.features {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section-head { margin-bottom: 56px; max-width: 600px; }
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.12;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px) rotateX(4deg);
  border-color: var(--lime-dim);
}

.feature-icon {
  color: var(--lime);
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--slate);
  font-size: 0.95rem;
}


/* ===== MOVE MONEY ===== */
.move-money {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.move-visual {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 50px 30px;
  perspective: 1000px;
}

.flow-scene {
  position: relative;
  height: 220px;
  transform: rotateX(6deg);
}

.flow-node {
  position: absolute;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.6);
}
.flow-node--from { bottom: 18px; left: 0; }
.flow-node--to { top: 0; right: 0; }

.node-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-dim);
}
.node-amt {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 600;
}

.flow-path { position: absolute; inset: 0; width: 100%; height: 100%; }
#flowLine {
  stroke-dashoffset: 0;
  animation: dash-flow 1.4s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -28; }
}

.flow-pulse {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px 4px rgba(201,243,61,0.6);
  offset-path: path('M40 110 C 120 110, 120 30, 280 30');
  animation: pulse-travel 2.6s ease-in-out infinite;
}
@keyframes pulse-travel {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.move-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 22px;
}
.move-copy > p {
  color: var(--slate);
  margin-bottom: 26px;
  max-width: 440px;
}
.move-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.move-list li {
  position: relative;
  padding-left: 26px;
  color: var(--paper);
  font-size: 0.96rem;
}
.move-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 1px;
  background: var(--lime);
}

/* ===== CARDS SHOWCASE ===== */
.cards-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 140px;
}

.card-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}

.showcase-card {
  perspective: 1200px;
}

.showcase-face {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1.586;
  border-radius: 20px;
  background: linear-gradient(135deg, #2A3B52 0%, #16222F 60%, #0B1320 100%);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  transform: rotateY(-18deg) rotateX(6deg);
  transition: transform 0.5s var(--ease);
  animation: card-tilt-idle 7s ease-in-out infinite;
}
@keyframes card-tilt-idle {
  0%, 100% { transform: rotateY(-18deg) rotateX(6deg); }
  50% { transform: rotateY(-10deg) rotateX(2deg); }
}
.showcase-face .card-number { font-size: 1.15rem; }

.showcase-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.point {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.point:last-child { border-bottom: none; padding-bottom: 0; }
.point-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--lime);
  font-size: 1.15rem;
}
.point p { color: var(--slate); font-size: 0.95rem; }

/* ===== SECURITY ===== */
.security {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 140px;
}
.security-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 70px;
  align-items: center;
}

.shield-stage {
  display: flex;
  justify-content: center;
  perspective: 900px;
}
.shield-svg {
  width: 220px;
  filter: drop-shadow(0 20px 40px rgba(201,243,61,0.12));
  animation: shield-rotate 8s ease-in-out infinite;
}
@keyframes shield-rotate {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(14deg); }
}
.shield-inner-ring {
  animation: ring-spin 12s linear infinite;
  transform-origin: 100px 110px;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}
.shield-check {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-check 2.5s ease-in-out infinite;
}
@keyframes draw-check {
  0% { stroke-dashoffset: 100; }
  40%, 100% { stroke-dashoffset: 0; }
}

.security-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.14;
  margin-bottom: 22px;
  max-width: 480px;
}
.security-copy > p {
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 36px;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.security-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.security-grid strong {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--lime);
}
.security-grid span {
  font-size: 0.82rem;
  color: var(--slate-dim);
}

/* ===== CTA ===== */
.cta {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 32px 160px;
  text-align: center;
}
.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta p {
  color: var(--slate);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 32px 30px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer-brand {
  max-width: 280px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--paper);
}
.footer-brand p {
  color: var(--slate-dim);
  font-size: 0.85rem;
}
.footer-cols {
  display: flex;
  gap: 60px;
}
.footer-cols h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-dim);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-cols a {
  display: block;
  font-size: 0.9rem;
  color: var(--paper);
  margin-bottom: 10px;
  transition: color 0.2s var(--ease);
}
.footer-cols a:hover { color: var(--lime); }

.footer-fine {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 0.76rem;
  color: var(--slate-dim);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero, .move-money, .security-inner, .card-showcase, .credit-inner {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 50px; }
  .hero-stage { height: 380px; margin-top: 20px; transform: scale(0.9); }
  .feature-rail { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .move-visual { order: 2; }
  .credit-visual { order: -1; }
  .point { grid-template-columns: 1fr; gap: 8px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header-inner { padding: 16px 20px; }
  .header-actions .link-quiet { display: none; }
  .hero-copy h1 { font-size: 2.4rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero-trust .dot { display: none; }
  .hero-stage { transform: scale(0.72); height: 320px; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
}
/* Main container */
.cmp-fixed-grid-block__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

/* Individual card */
.cmp-fixed-grid-block__content {
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Images */
.cmp-fixed-grid-block__image,
.cmp-fixed-grid-block__content img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Text section */
.cmp-fixed-grid-block__details {
    padding: 24px 20px 30px;
    text-align: center;
}

/* Heading */
.cmp-fixed-grid-block__details--heading a {
    color: #008a32;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.cmp-fixed-grid-block__details--heading a::after {
    content: " â€º";
}

/* Description */
.cmp-fixed-grid-block__details--description {
    margin-top: 15px;
}

.cmp-fixed-grid-block__details--description p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Hide unused icon */
.cmp-fixed-grid-block__details--icon {
    display: none;
}

/* Tablet */
@media (max-width: 991px) {
    .cmp-fixed-grid-block__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cmp-fixed-grid-block__container {
        grid-template-columns: 1fr;
    }

    .cmp-fixed-grid-block__image,
    .cmp-fixed-grid-block__content img {
        height: 240px;
    }

    .cmp-fixed-grid-block__details--heading a {
        font-size: 20px;
    }

    .cmp-fixed-grid-block__details--description p {
        font-size: 16px;
    }
}
/* CREDIT CARD SECTION */
.credit-card {
    padding: 100px 6%;
}

/* ===== CREDIT CARD SECTION FIX ===== */

.credit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.credit-copy {
  flex: 1;
  min-width: 300px;
}

.credit-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN CARD IMAGE */
.card-img--main {
  width: 340px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

/* FLOATING IMAGE */
.card-img--float {
  position: absolute;
  width: 200px;
  bottom: -20px;
  right: -20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.credit-images:hover .card-img--main {
  transform: translateY(-8px);
}

.credit-images:hover .card-img--float {
  transform: translateY(8px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .credit-inner {
    flex-direction: column;
    text-align: center;
  }

  .card-img--main {
    width: 260px;
  }

  .card-img--float {
    position: relative;
    width: 160px;
    bottom: 0;
    right: 0;
    margin-top: 15px;
  }
}
.features {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.card {
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.card-content {
    padding: 25px 20px;
    text-align: center;
    color: #ffffff; /* ðŸ‘ˆ ADD */
}

.card-content p {
    color: #ffffff; /* ðŸ‘ˆ ADD */
}

.card-title {
    color: #008a32;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}

.card-title:hover {
    text-decoration: underline;
}

.card-content p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    color: white;
}

/* Tablet */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 220px;
    }

    .card-title {
        font-size: 20px;
    }
}
/* Crypto Section */
.crypto-rates {
    padding: 50px 20px;
    text-align: center;
}

.crypto-rates h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.crypto-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.crypto-card {
    padding: 25px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 10px 25px rgb(255, 255, 255);
    transition: 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-8px);
}

.crypto-card img {
    width: 50px;
    margin-bottom: 10px;
}

.crypto-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.crypto-card p {
    font-size: 20px;
    font-weight: bold;
    color: #16a34a;
}
.crypto-card {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crypto-dashboard {
    padding: 60px 6%;
}

/* TOP GRID */
.crypto-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* CARDS */
.crypto-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #0f172a;
    transition: 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
}

.crypto-card h4 {
    font-size: 14px;
    opacity: 0.7;
    color: #f7f9f8;
}

.crypto-card h2 {
    font-size: 28px;
    margin: 10px 0;
}

.crypto-card p {
    font-weight: 600;
    color: green;
}

/* PORTFOLIO */
.portfolio {
    background: linear-gradient(135deg, #0f172a, #024efe);
    color: #0f172a;
}

.portfolio p {
    color: #4ade80;
}

/* SWITCH */
.crypto-switch {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: #0f172a;
    font-weight: 600;
}

.crypto-btn.active {
    background: #0f172a;
    color: #0f172a;
}

/* CHART */
.crypto-chart {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px 
}

/* =========================================
   🌍 GLOBAL RESPONSIVE SYSTEM
========================================= */

/* Make images & media flexible */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent overflow issues */
body {
  overflow-x: hidden;
}

/* Flexible containers */
section, .hero, .features, .move-money,
.cards-section, .security, .credit-card,
.cta, .trust-strip {
  width: 100%;
}

/* =========================================
   📱 MOBILE (0px – 600px)
========================================= */
@media (max-width: 600px) {

  .header-inner {
    padding: 14px 16px;
  }

  .main-nav {
    display: none;
  }

  .header-actions .btn-primary {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 16px 60px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin: 0 auto 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-stage {
    transform: scale(0.7);
    height: 280px;
  }

  .balance-pill {
    transform: translateX(-50%) scale(0.85);
  }

  /* FEATURES */
  .feature-rail {
    grid-template-columns: 1fr;
  }

  /* MOVE MONEY */
  .move-money {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .move-visual {
    padding: 30px 15px;
  }

  /* CARD SHOWCASE */
  .card-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* SECURITY */
  .security-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  /* CREDIT CARD */
  .credit-inner {
    flex-direction: column;
    text-align: center;
  }

  .card-img--main {
    width: 260px;
  }

  .card-img--float {
    position: relative;
    width: 180px;
    bottom: 0;
    right: 0;
    margin-top: 15px;
  }

  /* PROMO CARDS */
  .promo-features {
    grid-template-columns: 1fr;
  }

  /* CRYPTO */
  .crypto-container {
    flex-direction: column;
    align-items: center;
  }

  .crypto-card {
    width: 90%;
  }

  /* FOOTER */
  .footer-cols {
    flex-direction: column;
    gap: 30px;
  }

}

/* =========================================
   📲 TABLET (601px – 1024px)
========================================= */
@media (max-width: 1024px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-stage {
    margin-top: 20px;
    transform: scale(0.85);
  }

  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .move-money {
    grid-template-columns: 1fr;
  }

  .card-showcase {
    grid-template-columns: 1fr;
  }

  .security-inner {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-features {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================================
   💻 SMALL LAPTOP (1025px – 1400px)
========================================= */
@media (max-width: 1400px) {

  .hero {
    padding: 140px 40px 80px;
  }

  .feature-rail {
    gap: 20px;
  }

  .card-showcase {
    gap: 50px;
  }

}

/* =========================================
   🖥️ LARGE SCREENS (1400px+)
========================================= */
@media (min-width: 1400px) {

  .hero,
  .features,
  .move-money,
  .cards-section,
  .security,
  .credit-card,
  .cta {
    max-width: 1400px;
  }

}

/* =========================================
   ✨ TOUCH IMPROVEMENTS
========================================= */
@media (hover: none) {
  .feature-card:hover,
  .crypto-card:hover,
  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }
}