/* ==========================================================================
   Profit Wise Invest - Main Stylesheet
   Palette: Navy / Teal / Gold / Coral / Violet  (colorful, sectioned design)
   ========================================================================== */

:root {
  --navy: #0c2340;
  --navy-2: #123a63;
  --deep: #06182c;
  --teal: #0e7c72;
  --teal-dark: #0a5d56;
  --mint: #e4f5f1;
  --gold: #f4a320;
  --gold-dark: #d98a0b;
  --amber-soft: #fff6e7;
  --coral: #e2543f;
  --coral-soft: #fdeeea;
  --violet: #5b3bb5;
  --violet-soft: #f2eefe;
  --cream: #fdfaf5;
  --ink: #1d2733;
  --muted: #5d6b7a;
  --line: #e3e8ee;
  --radius: 18px;
  --shadow-sm: 0 6px 18px rgba(12, 35, 64, .07);
  --shadow-md: 0 16px 40px rgba(12, 35, 64, .12);
  --shadow-lg: 0 28px 60px rgba(12, 35, 64, .18);
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-4, .display-5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--navy);
}

p { color: var(--muted); }

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }

.text-teal { color: var(--teal) !important; }
.text-gold { color: var(--gold) !important; }
.text-coral { color: var(--coral) !important; }
.text-violet { color: var(--violet) !important; }
.bg-cream { background: var(--cream); }
.bg-mint { background: var(--mint); }
.bg-amber-soft { background: var(--amber-soft); }
.bg-violet-soft { background: var(--violet-soft); }
.bg-coral-soft { background: var(--coral-soft); }

/* ---------- Section titles ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .42rem 1rem;
  border-radius: 999px;
  background: rgba(14, 124, 114, .12);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.eyebrow.eyebrow-gold { background: rgba(244, 163, 32, .16); color: #a86a00; }
.eyebrow.eyebrow-light { background: rgba(255, 255, 255, .16); color: #ffe6bd; }

.section-title { font-size: clamp(1.75rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.section-lead { max-width: 720px; margin: 0 auto 1rem; font-size: 1.03rem; }
.title-rule {
  width: 74px; height: 5px; border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  margin: 1.1rem auto 1.6rem;
}
.title-rule.start { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: .72rem 1.6rem;
  border-width: 2px;
  transition: .25s ease;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), #ffbe4d); border-color: transparent; color: #40280a; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #2c1b05; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(244, 163, 32, .35); }
.btn-teal { background: linear-gradient(135deg, var(--teal), #12a394); border-color: transparent; color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(14, 124, 114, .35); }
.btn-navy { background: var(--navy); border-color: transparent; color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; transform: translateY(-2px); }
.btn-coral { background: linear-gradient(135deg, var(--coral), #f4705c); border-color: transparent; color: #fff; }
.btn-coral:hover { background: #c8452f; color: #fff; transform: translateY(-2px); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-teal { border-color: var(--teal); color: var(--teal-dark); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn-outline-white { border-color: rgba(255, 255, 255, .75); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }

/* ---------- Navbar ---------- */
.pw-topbar {
  background: var(--deep);
  color: #b9c6d6;
  font-size: .86rem;
  padding: .5rem 0;
}
.pw-topbar a { color: #e9eff6; }
.pw-topbar a:hover { color: var(--gold); }
.pw-topbar i { color: var(--gold); }

.pw-nav {
  background: var(--navy);
  box-shadow: 0 8px 26px rgba(6, 24, 44, .25);
  padding: .7rem 0;
  z-index: 1030;
}
.pw-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.01em;
}
.pw-nav .navbar-brand .brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), #16b3a2);
  color: #fff; font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(14, 124, 114, .45);
}
.pw-nav .navbar-brand small { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.pw-nav .navbar-brand .brand-name { line-height: 1.05; }
.pw-nav .nav-link {
  color: #d8e2ec !important;
  font-weight: 600;
  font-size: .95rem;
  padding: .55rem .95rem !important;
  border-radius: 10px;
  position: relative;
}
.pw-nav .nav-link:hover, .pw-nav .nav-link.active { color: #fff !important; background: rgba(255, 255, 255, .08); }
.pw-nav .nav-link.active::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .28rem;
  height: 3px; border-radius: 9px; background: linear-gradient(90deg, var(--gold), var(--coral));
}
.pw-nav .dropdown-menu {
  border: 0; border-radius: 14px; padding: .6rem;
  box-shadow: var(--shadow-md); margin-top: .6rem;
}
.pw-nav .dropdown-item { border-radius: 10px; font-weight: 600; color: var(--navy); padding: .55rem .8rem; }
.pw-nav .dropdown-item:hover { background: var(--mint); color: var(--teal-dark); }
.pw-nav .navbar-toggler { border-color: rgba(255, 255, 255, .4); }
.pw-nav .navbar-toggler-icon { filter: invert(1) grayscale(1) brightness(2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 88% 12%, rgba(14, 124, 114, .55), transparent 60%),
    radial-gradient(700px 420px at 6% 92%, rgba(91, 59, 181, .38), transparent 62%),
    linear-gradient(150deg, var(--deep), var(--navy) 45%, #103a52);
  color: #fff;
  padding: 96px 0 104px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.hero p.lead { color: #cfdcea; font-size: 1.08rem; max-width: 620px; }
.hero .hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffe6bd;
  border-radius: 999px; padding: .45rem 1.05rem;
  font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-img-wrap { position: relative; z-index: 2; }
.hero-img-wrap img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, .14);
}
.hero-float {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 16px;
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: .88rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero-float i { font-size: 1.35rem; }
.hero-float.f1 { left: -14px; bottom: 32px; }
.hero-float.f2 { right: -10px; top: 26px; }
.hero-float small { display: block; font-weight: 600; color: var(--muted); font-size: .74rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2rem; }
.hero-trust span { color: #cfdcea; font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.hero-trust i { color: var(--gold); }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: linear-gradient(120deg, var(--teal), #11a294 45%, var(--navy-2));
  color: #fff;
  padding: 46px 0;
}
.stat-strip .stat h3 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .15rem; }
.stat-strip .stat p { color: rgba(255, 255, 255, .85); margin: 0; font-weight: 600; font-size: .92rem; }
.stat-strip .stat i { color: var(--gold); font-size: 1.5rem; }
.stat-strip .col-6, .stat-strip .col-lg-3 { border-right: 1px dashed rgba(255, 255, 255, .25); }
.stat-strip .col-6:last-child, .stat-strip .col-lg-3:last-child { border-right: 0; }
@media (max-width: 991.98px) { .stat-strip .col-6:nth-child(2n) { border-right: 0; } }

/* ---------- Generic cards ---------- */
.pw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: .3s ease;
  overflow: hidden;
}
.pw-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(14, 124, 114, .35); }
.pw-card .pw-card-body { padding: 1.6rem; }

/* ---------- Service cards ---------- */
.service-card { position: relative; display: flex; flex-direction: column; }
.service-card .service-media { position: relative; overflow: hidden; }
.service-card .service-media img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .55s ease;
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-card .service-icon {
  position: absolute; left: 20px; bottom: -24px;
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold); font-size: 1.45rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.service-card .pw-card-body { padding: 2.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.service-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.service-card p { font-size: .95rem; margin-bottom: 1.1rem; }
.service-card .service-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.service-card .service-list li { font-size: .9rem; color: var(--muted); padding-left: 1.5rem; position: relative; }
.service-card .service-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 0; color: var(--teal); font-size: .82rem;
}
.service-card .service-cta { margin-top: auto; }
.accent-teal .service-icon { background: linear-gradient(135deg, var(--teal), #16b3a2); color: #fff; }
.accent-violet .service-icon { background: linear-gradient(135deg, var(--violet), #8a6ce8); color: #fff; }
.accent-coral .service-icon { background: linear-gradient(135deg, var(--coral), #f4705c); color: #fff; }
.accent-gold .service-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #33210a; }

/* ---------- Feature / why-us ---------- */
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border-radius: 16px; padding: 1.2rem 1.2rem;
  border: 1px solid var(--line); height: 100%; box-shadow: var(--shadow-sm);
}
.why-item .wi-icon {
  flex: 0 0 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mint); color: var(--teal-dark); font-size: 1.3rem;
}
.why-item h4 { font-size: 1.02rem; margin-bottom: .25rem; }
.why-item p { font-size: .9rem; margin: 0; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; color: var(--muted); }
.check-list li::before {
  content: "\F26B"; font-family: "bootstrap-icons";
  position: absolute; left: 0; top: .15rem; color: var(--teal); font-weight: 700;
}
.img-stack { position: relative; }
.img-stack img { border-radius: 22px; box-shadow: var(--shadow-md); }
.img-stack .badge-float {
  position: absolute; right: -12px; bottom: -18px;
  background: linear-gradient(135deg, var(--gold), #ffc466);
  color: #3a2506; border-radius: 18px; padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md); font-weight: 800; text-align: center; line-height: 1.2;
}
.img-stack .badge-float span { display: block; font-size: 1.6rem; }

/* ---------- Process steps (dark band) ---------- */
.band-dark {
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(14, 124, 114, .5), transparent 60%),
    linear-gradient(140deg, var(--deep), var(--navy) 60%, #16324f);
  color: #fff;
}
.band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark p { color: #c3d1e0; }
.step-card {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  background: rgba(255, 255, 255, .05);
  height: 100%;
  transition: .3s ease;
}
.step-card:hover { background: rgba(255, 255, 255, .1); transform: translateY(-6px); }
.step-card .step-num {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), #ffc466); color: #3a2506;
  font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
}
.step-card p { margin: 0; font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 1.9rem 1.6rem 1.6rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; position: relative;
  transition: .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark {
  position: absolute; top: -16px; left: 1.6rem;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--violet), #8a6ce8); color: #fff;
  font-size: 1.1rem; box-shadow: var(--shadow-sm);
}
.testimonial-card p { font-size: .95rem; color: #3c4b5c; margin: .8rem 0 1rem; }
.testimonial-card .t-name { font-weight: 800; color: var(--navy); font-size: 1rem; margin: 0; }
.testimonial-card .stars { color: var(--gold); font-size: .92rem; letter-spacing: .12em; }
.testimonial-card:nth-child(3n+2) .quote-mark { background: linear-gradient(135deg, var(--teal), #16b3a2); }
.testimonial-card:nth-child(3n+3) .quote-mark { background: linear-gradient(135deg, var(--coral), #f4705c); }

/* ---------- Blog ---------- */
.blog-card .blog-media { overflow: hidden; }
.blog-card .blog-media img { width: 100%; height: 210px; object-fit: cover; transition: transform .55s ease; }
.blog-card:hover .blog-media img { transform: scale(1.07); }
.blog-card .pw-card-body { padding: 1.5rem; display: flex; flex-direction: column; height: 100%; }
.blog-card h3 { font-size: 1.16rem; margin-bottom: .6rem; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: .94rem; }
.read-more { font-weight: 800; color: var(--teal-dark); font-size: .93rem; display: inline-flex; align-items: center; gap: .4rem; }
.read-more:hover { color: var(--coral); gap: .7rem; }

/* ---------- Article ---------- */
.article-wrap { background: #fff; border-radius: 22px; box-shadow: var(--shadow-md); padding: clamp(1.5rem, 4vw, 3.2rem); margin-top: -70px; position: relative; z-index: 5; }
.article-wrap h2 { font-size: 1.5rem; margin: 2.1rem 0 .8rem; }
.article-wrap h3 { font-size: 1.18rem; margin: 1.6rem 0 .6rem; }
.article-wrap p { color: #44546a; font-size: 1.02rem; }
.article-wrap blockquote {
  border-left: 5px solid var(--gold); background: var(--amber-soft);
  padding: 1.2rem 1.4rem; border-radius: 0 14px 14px 0; margin: 1.6rem 0;
  font-style: italic; color: #5a4a2a; font-weight: 600;
}
.article-wrap .lead-para { font-size: 1.12rem; color: #2d3c4e; font-weight: 600; }
.article-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.article-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; color: #44546a; }
.article-list li::before {
  content: "\F270"; font-family: "bootstrap-icons"; color: var(--gold);
  position: absolute; left: 0; top: .15rem; font-size: .85rem;
}
.side-card { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem; }
.side-card h4 { font-size: 1.05rem; margin-bottom: .9rem; }
.side-card .side-link { display: flex; gap: .7rem; align-items: center; padding: .6rem 0; border-bottom: 1px dashed var(--line); color: var(--navy); font-weight: 700; font-size: .92rem; }
.side-card .side-link:last-child { border-bottom: 0; }
.side-card .side-link:hover { color: var(--teal); }
.side-card .side-link img { width: 58px; height: 48px; object-fit: cover; border-radius: 10px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 340px at 85% 10%, rgba(244, 163, 32, .35), transparent 62%),
    linear-gradient(135deg, var(--navy), #0f5f6b 80%);
  color: #fff;
  padding: 74px 0 96px;
}
.page-hero.page-hero-violet { background: radial-gradient(700px 340px at 85% 10%, rgba(244, 163, 32, .32), transparent 62%), linear-gradient(135deg, #2b1c65, var(--violet) 85%); }
.page-hero.page-hero-coral { background: radial-gradient(700px 340px at 85% 10%, rgba(255, 255, 255, .22), transparent 62%), linear-gradient(135deg, #7c2417, var(--coral) 85%); }
.page-hero.page-hero-teal { background: radial-gradient(700px 340px at 85% 10%, rgba(244, 163, 32, .3), transparent 62%), linear-gradient(135deg, var(--deep), var(--teal) 85%); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.page-hero p { color: #d5e2ee; max-width: 720px; }
.page-hero .breadcrumb { margin: 0; }
.page-hero .breadcrumb-item a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: #cbd9e7; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #93a8bd; }

/* ---------- CTA / newsletter ---------- */
.cta-band {
  background: radial-gradient(700px 360px at 15% 15%, rgba(244, 163, 32, .35), transparent 60%),
              linear-gradient(120deg, var(--coral), #b8371f 55%, var(--violet));
  color: #fff; padding: 76px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .88); }
.newsletter-box {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 20px; padding: 1.6rem;
}
.newsletter-box .form-control {
  border: 0; border-radius: 999px; padding: .8rem 1.2rem;
}
.newsletter-box .form-control:focus { box-shadow: 0 0 0 .25rem rgba(244, 163, 32, .4); }

/* ---------- Contact ---------- */
.contact-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.6rem; height: 100%; box-shadow: var(--shadow-sm); text-align: center;
  transition: .3s ease;
}
.contact-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-tile .ct-icon {
  width: 56px; height: 56px; margin: 0 auto .9rem; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--teal), #16b3a2);
}
.contact-tile.c2 .ct-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #33210a; }
.contact-tile.c3 .ct-icon { background: linear-gradient(135deg, var(--violet), #8a6ce8); }
.contact-tile h4 { font-size: 1.05rem; margin-bottom: .35rem; }
.contact-tile p, .contact-tile a { font-size: .95rem; color: var(--muted); margin: 0; }
.contact-tile a:hover { color: var(--teal); }

.pw-form { background: #fff; border-radius: 22px; box-shadow: var(--shadow-md); padding: clamp(1.4rem, 3vw, 2.4rem); border: 1px solid var(--line); }
.pw-form .form-label { font-weight: 700; color: var(--navy); font-size: .9rem; }
.pw-form .form-control, .pw-form .form-select {
  border-radius: 12px; padding: .75rem 1rem; border-color: #d8e0e8; font-size: .96rem;
}
.pw-form .form-control:focus, .pw-form .form-select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 .22rem rgba(14, 124, 114, .15);
}
.form-note { font-size: .82rem; color: var(--muted); }
.alert-success.pw-alert {
  border: 0; border-left: 5px solid #12855c; background: #e8f8f1; color: #0f5c42;
  border-radius: 12px; font-weight: 600;
}
.alert-danger.pw-alert {
  border: 0; border-left: 5px solid var(--coral); background: var(--coral-soft); color: #a83420;
  border-radius: 12px; font-weight: 600;
}
.form-check-input:checked { background-color: var(--teal); border-color: var(--teal); }

/* ---------- Legal pages ---------- */
.legal-wrap { background: #fff; border-radius: 22px; box-shadow: var(--shadow-md); padding: clamp(1.5rem, 4vw, 3rem); }
.legal-wrap h2 { font-size: 1.35rem; margin: 2rem 0 .7rem; }
.legal-wrap h3 { font-size: 1.08rem; margin: 1.4rem 0 .5rem; }
.legal-wrap p, .legal-wrap li { color: #44546a; font-size: .98rem; }
.legal-toc { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem 1.4rem; }
.legal-toc a { color: var(--teal-dark); font-weight: 600; font-size: .93rem; }
.legal-toc a:hover { color: var(--coral); }
.legal-toc ol { margin: 0; padding-left: 1.2rem; }

/* ---------- Footer ---------- */
.pw-footer { background: var(--deep); color: #a9bacb; padding-top: 70px; }
.pw-footer h5 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.pw-footer h5::after {
  content: ""; display: block; width: 42px; height: 4px; border-radius: 9px;
  background: linear-gradient(90deg, var(--gold), var(--coral)); margin-top: .6rem;
}
.pw-footer p { color: #a9bacb; font-size: .93rem; }
.pw-footer a { color: #c8d6e4; font-size: .93rem; }
.pw-footer a:hover { color: var(--gold); }
.pw-footer ul { list-style: none; padding: 0; margin: 0; }
.pw-footer ul li { margin-bottom: .55rem; }
.pw-footer ul li i { color: var(--gold); margin-right: .45rem; font-size: .8rem; }
.pw-footer .brand-line { display: flex; align-items: center; gap: .65rem; color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.pw-footer .brand-line .brand-mark {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), #16b3a2); color: #fff; font-size: 1.25rem;
}
.pw-footer .social a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .09); color: #fff;
}
.pw-footer .social a:hover { background: var(--gold); color: #33210a; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 48px; padding: 22px 0; font-size: .88rem; }
.footer-bottom a { margin-left: 1.1rem; }
.footer-disclaimer { font-size: .82rem; color: #8698aa; }

/* ---------- Floating buttons & reveal ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 24px; width: 46px; height: 46px;
  border-radius: 14px; border: 0; display: none; place-items: center; z-index: 1040;
  background: linear-gradient(135deg, var(--teal), #16b3a2); color: #fff; font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}
.to-top.show { display: grid; }
.corner-cta {
  position: fixed; right: 20px; bottom: 82px; z-index: 1040;
  background: linear-gradient(135deg, var(--gold), #ffbe4d); color: #33210a; font-weight: 800;
  border-radius: 999px; padding: .7rem 1.1rem; box-shadow: var(--shadow-md); font-size: .9rem;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.rounded-xl { border-radius: var(--radius) !important; }
.shadow-pw { box-shadow: var(--shadow-md) !important; }
.divider-wave { height: 6px; background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral), var(--violet)); }

@media (max-width: 991.98px) {
  .section { padding: 62px 0; }
  .hero { padding: 66px 0 74px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-float.f1 { left: 6px; bottom: 10px; }
  .hero-float.f2 { right: 6px; top: 10px; }
  .article-wrap { margin-top: -50px; }
}
@media (max-width: 575.98px) {
  .hero-float { display: none; }
  .stat-strip .col-6 { border-right: 0; }
}
