/* ============================================
   Queue Investment — Elegant Fintech Stylesheet
   ============================================ */
:root {
  --navy: #091753;
  --navy-2: #0c2073;
  --green: #00a37a;
  --green-dark: #00875f;
  --gold: #c9a227;
  --gold-soft: #e9d9a3;
  --ink: #1c2536;
  --muted: #64708a;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --line: #e7ecf4;
  --radius: 18px;
  --shadow: 0 10px 36px rgba(8, 26, 56, 0.07);
  --shadow-lg: 0 24px 64px rgba(8, 26, 56, 0.13);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }

.container { width: min(1140px, 90%); margin: 0 auto; }

h1, h2, h3 { line-height: 1.25; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(120deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 163, 122, .28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 163, 122, .4); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(8, 26, 56, .35);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-light {
  background: rgba(255,255,255,.92);
  color: var(--navy);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
}
.site-header .container {
  width: 100%;
  max-width: none;
  padding: 0 32px;
  box-sizing: border-box;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.nav-logo img { height: 65px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
}
.nav-cta { white-space: nowrap; padding: 12px 24px; font-size: .9rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(0, 163, 122, .18), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(201, 162, 39, .12), transparent 60%),
    linear-gradient(to top right, var(--navy) 0%, #102993 100%);
  color: #fff;
  padding: 170px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-mark {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 79%;
  width: auto;
  transform: translateX(20%);
  opacity: .07;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, .12);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, .35);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #2dd4a7, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.14rem;
  color: #c3cfe3;
  margin-bottom: 38px;
  max-width: 580px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stats .stat {
  padding: 0 44px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.hero-stats .stat:first-child { padding-left: 0; border-left: none; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
}
.hero-stats .stat span { color: #93a5c4; font-size: .88rem; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-head .kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: .76rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
  letter-spacing: -.3px;
}
.section-head p { color: var(--muted); margin-top: 14px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,163,122,.1), rgba(201,162,39,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.card h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--muted); font-size: .93rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  transition: all .3s ease;
}
.step:hover { box-shadow: var(--shadow); }
.step .num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Plan cards ---------- */
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.plan:hover { box-shadow: var(--shadow); }
.plan.featured {
  border: 1.5px solid var(--green);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(0,163,122,.035), #fff 30%);
}
.plan .badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,163,122,.3);
}
.plan h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.plan .plan-sub { color: var(--muted); font-size: .92rem; margin-bottom: 28px; }
.plan ul { list-style: none; margin-bottom: 32px; flex: 1; }
.plan ul li {
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  position: relative;
  color: var(--ink);
}
.plan ul li:last-child { border-bottom: none; }
.plan ul li::before {
  content: "✓";
  position: absolute; left: 2px;
  color: var(--green);
  font-weight: 700;
}
.plan ul li.no::before { content: "✕"; color: #c0535e; }
.plan ul li.no { color: var(--muted); }
.plan .btn { width: 100%; text-align: center; }

/* ---------- Rate table ---------- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rate-table th, .rate-table td { padding: 17px 20px; text-align: left; font-size: .93rem; }
.rate-table thead th {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  font-weight: 600;
  letter-spacing: .3px;
}
.rate-table tbody tr { border-bottom: 1px solid var(--line); }
.rate-table tbody tr:last-child { border-bottom: none; }
.rate-table tbody tr:hover { background: var(--bg-soft); }
.rate-table td:first-child { font-weight: 600; color: var(--navy); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: all .3s ease;
}
.testimonial:hover { box-shadow: var(--shadow); }
.testimonial .quote-mark {
  font-size: 3rem;
  background: linear-gradient(120deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  font-family: var(--font-display);
}
.testimonial p { color: var(--ink); font-size: .96rem; margin: 12px 0 20px; font-style: italic; }
.testimonial .who { font-weight: 700; color: var(--navy); }
.testimonial .who::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(0,163,122,.22), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 26px;
  color: #fff;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
}
.cta-band p { color: #c3cfe3; margin-top: 8px; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { font-size: 1.2rem; }
.contact-row .label { font-size: .74rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 700; }
.contact-row .val { font-weight: 600; color: var(--ink); word-break: break-word; }

/* ---------- Content / prose (About page) ---------- */
.prose h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.65rem;
  margin: 44px 0 16px;
  font-weight: 700;
}
.prose h2::after {
  content: "";
  display: block;
  width: 46px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 3px;
  margin-top: 10px;
}
.prose h3 { color: var(--navy); font-size: 1.1rem; margin: 26px 0 8px; }
.prose p { color: var(--ink); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 20px; }
.prose ul li { margin-bottom: 12px; color: var(--ink); }
.prose .term { font-weight: 700; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(0,163,122,.1), transparent 55%),
    var(--navy);
  color: #b4c1d8;
  padding: 64px 0 30px;
  margin-top: 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 42px;
}
.site-footer h4 {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.site-footer a { color: #b4c1d8; transition: color .2s; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; font-size: .91rem; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; max-width: 330px; }
.footer-regs {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0 0;
  font-size: .8rem;
  color: #8fa0bd;
  text-align: center;
  line-height: 1.9;
}
.footer-regs .reg-title {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .72rem;
  display: block;
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 20px;
  padding-top: 24px;
  font-size: .8rem;
  text-align: center;
  color: #8094b5;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(0, 163, 122, .18), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(201, 162, 39, .12), transparent 60%),
    linear-gradient(to top right, var(--navy) 0%, #102993 100%);
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.3px;
  position: relative;
}
.page-hero p { color: #c3cfe3; margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-mark { height: 60%; opacity: .06; }
}

/* Tablet & below: collapse nav to hamburger (5 links + button don't fit) */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat { padding: 0 28px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-2);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 22px;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a.active::after { display: none; }
  .nav-links .nav-cta {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 15px 24px;
    font-size: 1rem;
  }
  .nav-toggle { display: block; padding: 8px 12px; }
}

/* Phones */
@media (max-width: 640px) {
  .container { width: 92%; }
  .site-header .container { padding: 0 16px; }
  .nav-logo img { height: 46px; }

  .hero { padding: 120px 0 64px; }
  .hero p.lead { font-size: 1.02rem; }
  .hero-mark { height: 42%; opacity: .05; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .hero-stats { margin-top: 40px; gap: 18px 0; }
  .hero-stats .stat { padding: 0 22px; }
  .hero-stats .stat:first-child { padding-left: 0; }
  .hero-stats .stat strong { font-size: 1.45rem; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .grid { gap: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 26px 22px; }
  .card .icon { width: 48px; height: 48px; margin-bottom: 14px; }

  .plan { padding: 30px 22px; }
  .plan ul li { font-size: .9rem; }
  .rate-table th, .rate-table td { padding: 12px 12px; font-size: .85rem; }

  .cta-band { padding: 36px 24px; text-align: center; justify-content: center; }
  .cta-band .btn { width: 100%; text-align: center; }

  .contact-card { padding: 28px 20px; }

  .page-hero { padding: 110px 0 50px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer { padding: 44px 0 24px; margin-top: 56px; }
  .footer-regs { font-size: .74rem; line-height: 2; }

  .btn { padding: 14px 26px; }
}

/* Small phones */
@media (max-width: 380px) {
  .nav-logo img { height: 40px; }
  .hero h1 { font-size: 2rem; }
}

/* ---------- Plans: swipeable side-by-side cards on phones ---------- */
.swipe-hint { display: none; }

@media (max-width: 640px) {
  .swipe-hint {
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: .85rem;
    margin: 0 auto 14px;
  }
  .plans-swipe {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 22px 6% 10px;
    margin: 0 -4.5%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .plans-swipe::-webkit-scrollbar { display: none; }
  .plans-swipe .plan {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }
}

/* ---------- Google Business card (contact page) ---------- */
.gbiz-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow);
  transition: all .25s ease;
}
.gbiz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gbiz-left { display: flex; align-items: center; gap: 18px; }
.gbiz-g {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: conic-gradient(from -45deg, #ea4335 0 90deg, #fbbc05 90deg 180deg, #34a853 180deg 270deg, #4285f4 270deg 360deg);
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
@media (max-width: 640px) {
  .gbiz-card { flex-direction: column; text-align: center; padding: 24px 20px; }
  .gbiz-left { flex-direction: column; }
  .gbiz-card .btn { width: 100%; text-align: center; }
}

/* ---------- Google card: map view ---------- */
.gbiz-col { flex-direction: column; align-items: stretch; }
.gbiz-col:hover { transform: none; }
.gbiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.gbiz-map {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 12px;
  margin-top: 20px;
  display: block;
}
@media (max-width: 640px) {
  .gbiz-top { flex-direction: column; text-align: center; }
  .gbiz-top .btn { width: 100%; text-align: center; }
  .gbiz-map { height: 260px; }
}
