/* ============================================================
   Accord Investments & Finance — accordinvestments.com
   Palette: deep navy / oxblood red / cool grey (Brief v3 §5)
   ============================================================ */

:root {
  --navy: #0e2a47;
  --navy-deep: #0a1f36;
  --navy-soft: #16395f;
  --red: #8e2f3c;          /* oxblood / brick — muted, editorial */
  --red-dark: #71222e;
  --red-tint: #f6edee;
  --grey: #6b7684;
  --grey-dark: #4d5661;
  --grey-light: #dfe5ec;
  --bg: #f5f7f9;
  --card: #ffffff;
  --charcoal: #2a2e34;
  --line: #e4e9ef;
  --serif: "Marcellus", "Noto Serif Gujarati", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Noto Sans Gujarati", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --shadow: 0 10px 30px rgba(14, 42, 71, 0.10);
  --shadow-sm: 0 4px 14px rgba(14, 42, 71, 0.08);
  --radius: 10px;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--bg);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.24; font-weight: 400; letter-spacing: 0.015em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: var(--grey); }
.small { font-size: 0.87rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  cursor: pointer; border: none; transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none !important;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--grey); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-grey { background: var(--grey); color: #fff; }
.btn-grey:hover { background: var(--grey-dark); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--grey-light); }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }

/* ---------- Utility bar ---------- */
.utilbar {
  background: var(--navy-deep); color: #c9d4e0; font-size: 0.82rem;
  position: relative; z-index: 60;
}
.utilbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 12px; }
.utilbar a { color: #c9d4e0; }
.utilbar a:hover { color: #fff; text-decoration: none; }
.utilbar .contacts { display: flex; gap: 18px; flex-wrap: wrap; }
.utilbar .tagline { color: var(--grey-light); opacity: .75; display: none; }
@media (min-width: 900px) { .utilbar .tagline { display: block; } }

/* ---------- Header ---------- */
header.site {
  background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
header.site .wrap {
  display: flex; align-items: stretch; justify-content: space-between;
  min-height: 92px; gap: 14px;
  max-width: 1400px;  /* header needs more room than content: 8 nav items + CTAs */
}
header.site .logo, header.site .hdr-ctas { align-self: center; }
.logo { display: flex; align-items: center; text-decoration: none !important; }
.logo img { height: 78px; width: auto; display: block; padding: 6px 0; }
@media (max-width: 620px) { .logo img { height: 60px; } }

/* language switcher */
.lang-switch {
  display: inline-block; border: 1px solid rgba(255,255,255,0.35); border-radius: 30px;
  padding: 3px 14px; font-size: 0.8rem; font-weight: 600; color: #fff !important;
  text-decoration: none !important; white-space: nowrap;
}
.lang-switch:hover { background: rgba(255,255,255,0.12); }
.utilbar .right { display: flex; align-items: center; gap: 16px; }

nav.primary { display: flex; align-items: stretch; gap: 0; }
nav.primary > .navitem { position: relative; display: flex; align-items: stretch; }
nav.primary > .navitem > a {
  display: flex; align-items: center; padding: 0 14px; color: var(--navy); font-weight: 500;
  font-size: 1.02rem; text-decoration: none !important; white-space: nowrap;
}
nav.primary > .navitem > a:hover, nav.primary > .navitem.active > a { color: var(--red); }
nav.primary > .navitem > a .caret { font-size: 0.6rem; opacity: 0.55; margin-left: 3px; }

.hdr-ctas { display: flex; align-items: center; gap: 10px; }

/* dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-top: 3px solid var(--red);
  box-shadow: var(--shadow); border-radius: 0 0 8px 8px; padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.15s ease;
}
.navitem:hover > .dropdown, .navitem.open > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 22px; color: var(--charcoal); font-size: 0.96rem;
  text-decoration: none !important;
}
.dropdown a:hover { background: var(--bg); color: var(--red); }

/* mega menu */
nav.primary > .navitem.has-mega { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%; background: #fff;
  border-top: 3px solid var(--red); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.15s ease;
}
.navitem.has-mega:hover > .mega, .navitem.has-mega.open > .mega {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 24px 34px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
}
.mega-col h5 {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--grey-light);
  padding-bottom: 9px; margin-bottom: 9px; font-weight: 700;
}
.mega-col a {
  display: block; padding: 7px 0; color: var(--navy); font-size: 0.94rem;
  text-decoration: none !important;
}
.mega-col a:hover { color: var(--red); }
.mega-promo {
  background: var(--bg); border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--grey-dark);
}
.mega-promo .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; gap: 14px; }

/* hamburger */
.hamburger {
  display: none; background: none; border: 1.5px solid var(--grey-light);
  border-radius: 6px; padding: 9px 11px; cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; transition: 0.2s; }

@media (max-width: 1280px) {
  nav.primary {
    display: none; position: fixed; inset: 0; top: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    overflow-y: auto; padding: 84px 20px 40px; z-index: 45;
  }
  nav.primary.open { display: flex; }
  nav.primary > .navitem { display: block; }
  nav.primary > .navitem > a { padding: 15px 6px; border-bottom: 1px solid var(--line); font-size: 1rem; white-space: normal; justify-content: space-between; }
  .dropdown, .mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; padding: 0 0 10px;
  }
  .navitem.open > .dropdown, .navitem.has-mega.open > .mega { display: block; }
  .mega-grid { grid-template-columns: 1fr; gap: 14px; padding: 12px 6px; }
  .mega-promo { display: none; }
  .dropdown a { padding: 9px 18px; }
  .hamburger { display: block; z-index: 55; }
  .hdr-ctas .btn-book { display: none; }
}
@media (max-width: 620px) { .hdr-ctas .btn-login { display: none; } }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fff; padding: 84px 0 90px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px;
  border-radius: 50%; border: 60px solid rgba(255,255,255,0.045);
}
.hero h1 { color: #fff; max-width: 780px; }
.hero .kicker {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #cbd6e2; border: 1px solid rgba(255,255,255,0.25); border-radius: 30px;
  padding: 5px 16px; margin-bottom: 22px;
}
.hero p.lead { color: #c9d4e0; max-width: 680px; margin-top: 18px; font-size: 1.08rem; }
.hero .ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero.with-img { padding: 0; }
.hero.with-img .split { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 560px; align-items: center; }
.hero.with-img .txt { padding: 90px 0; }
.hero.with-img .img {
  height: 100%; min-height: 400px; background-size: cover; background-position: center;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 900px) {
  .hero.with-img .split { grid-template-columns: 1fr; }
  .hero.with-img .img { display: none; }
  .hero.with-img .txt { padding: 70px 0; }
}

/* breadcrumbs */
.crumbs { font-size: 0.8rem; color: #9fb0c2; margin-bottom: 20px; }
.crumbs a { color: #9fb0c2; }
.crumbs a:hover { color: #fff; }

/* ---------- Sections ---------- */
section.sec { padding: 74px 0; }
section.sec.alt { background: #fff; }
.sec-head { max-width: 720px; margin-bottom: 42px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 10px;
}
.sec-head p { color: var(--grey-dark); margin-top: 14px; }

/* grids & cards */
.grid { display: grid; gap: 22px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid.c3, .grid.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px;
}
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--red); text-decoration: none; }
.card p { color: var(--grey-dark); font-size: 0.93rem; flex: 1; }
.card .go { font-size: 0.88rem; font-weight: 600; }
.card.img-card { padding: 0; overflow: hidden; }
.card.img-card .thumb { height: 175px; background-size: cover; background-position: center; }
.card.img-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 10px; background: var(--red-tint);
  color: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 400; font-family: var(--serif);
}

/* trust strip */
.trust { background: var(--navy-deep); color: #fff; padding: 34px 0; }
.trust .wrap { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; text-align: center; }
.trust .num { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: #fff; }
.trust .lbl { font-size: 0.8rem; color: #9fb0c2; letter-spacing: 0.06em; text-transform: uppercase; }

/* phases strip */
.phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: ph; }
.phase {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; position: relative;
}
.phase .n {
  font-family: var(--serif); font-size: 1.9rem; color: var(--red); font-weight: 400;
  margin-bottom: 8px;
}
.phase h4 { margin-bottom: 6px; }
.phase p { font-size: 0.84rem; color: var(--grey-dark); }
@media (max-width: 980px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .phases { grid-template-columns: 1fr; } }

/* two-column feature */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feature .img {
  border-radius: var(--radius); min-height: 340px; background-size: cover;
  background-position: center; box-shadow: var(--shadow);
}
.feature ul { margin: 18px 0 0 18px; display: flex; flex-direction: column; gap: 9px; color: var(--grey-dark); }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } .feature .img { min-height: 250px; } }

/* checklist */
ul.checks { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
ul.checks li { padding-left: 30px; position: relative; color: var(--grey-dark); }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700;
}

/* prose (long content pages) */
.prose { max-width: 780px; }
.prose p { margin-bottom: 16px; color: var(--grey-dark); }
.prose h2 { margin: 38px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--grey-dark); }
.prose li { margin-bottom: 7px; }

/* tables */
.tbl-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.92rem; }
table.tbl th {
  background: var(--navy); color: #fff; text-align: left; padding: 13px 18px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em;
}
table.tbl td { padding: 13px 18px; border-bottom: 1px solid var(--line); color: var(--grey-dark); vertical-align: top; }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl td strong { color: var(--navy); }

/* compare table highlight */
table.tbl.compare td:nth-child(2) { background: #f3f6fa; }
table.tbl.compare td:nth-child(3) { background: var(--red-tint); }

/* notice / disclaimer boxes */
.notice {
  border-left: 4px solid var(--red); background: var(--red-tint);
  padding: 18px 22px; border-radius: 0 8px 8px 0; font-size: 0.9rem; color: var(--grey-dark);
  margin: 26px 0;
}
.notice.grey { border-left-color: var(--grey); background: #eef1f5; }
.placeholder-flag {
  display: inline-block; background: #fff3cd; color: #7a5d00; border: 1px solid #eadb9e;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red)); color: #fff;
  padding: 64px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #f3dfe1; max-width: 620px; margin: 0 auto 28px; }

/* accordion */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 22px; font-family: var(--sans); font-size: 0.98rem; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.acc-head::after { content: "+"; font-size: 1.3rem; color: var(--red); flex-shrink: 0; }
.acc-item.open .acc-head::after { content: "–"; }
.acc-body { display: none; padding: 0 22px 20px; color: var(--grey-dark); font-size: 0.93rem; }
.acc-item.open .acc-body { display: block; }

/* login cards */
.login-card {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.login-card .portal { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-weight: 400; }
.login-card p { color: var(--grey-dark); font-size: 0.92rem; flex: 1; }

/* forms (static, non-functional at this stage) */
form.static-form { display: grid; gap: 16px; max-width: 640px; }
form.static-form label { font-weight: 600; font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 6px; }
form.static-form input, form.static-form select, form.static-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-light); border-radius: 6px;
  font-family: var(--sans); font-size: 0.95rem; background: #fff; color: var(--charcoal);
}
form.static-form input:focus, form.static-form select:focus, form.static-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-note { font-size: 0.82rem; color: var(--grey); }

/* calculator */
.calc-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.calc-box .row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-bottom: 20px; }
@media (max-width: 700px) { .calc-box .row { grid-template-columns: 1fr; } }
.calc-result {
  background: var(--navy); color: #fff; border-radius: 8px; padding: 22px 26px;
  display: flex; gap: 40px; flex-wrap: wrap; margin-top: 6px;
}
.calc-result .item .v { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.calc-result .item .k { font-size: 0.78rem; color: #9fb0c2; text-transform: uppercase; letter-spacing: 0.05em; }

/* blog */
.post-meta { font-size: 0.8rem; color: var(--grey); display: flex; gap: 14px; flex-wrap: wrap; }
.cat-pill {
  display: inline-block; background: var(--red-tint); color: var(--red); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.cat-cloud { display: flex; gap: 10px; flex-wrap: wrap; }
.cat-cloud a {
  background: #fff; border: 1px solid var(--line); color: var(--navy); font-size: 0.84rem;
  padding: 7px 16px; border-radius: 30px; text-decoration: none !important;
}
.cat-cloud a:hover { border-color: var(--red); color: var(--red); }

/* footer */
footer.site { background: var(--navy-deep); color: #9fb0c2; font-size: 0.88rem; }
footer.site .top { padding: 60px 0 44px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 34px; }
footer.site h5 { color: #fff; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
footer.site a { color: #9fb0c2; display: block; padding: 3.5px 0; }
footer.site a:hover { color: #fff; text-decoration: none; }
footer.site .brand .name { font-family: var(--serif); color: #fff; font-size: 1.25rem; font-weight: 400; }
footer.site .disc { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0 30px; font-size: 0.76rem; line-height: 1.6; color: #7c8ea1; }
@media (max-width: 980px) { footer.site .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer.site .top { grid-template-columns: 1fr; } }

.newsletter { display: flex; gap: 8px; margin-top: 10px; }
.newsletter input {
  flex: 1; padding: 10px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07); color: #fff; font-size: 0.86rem;
}
.newsletter input::placeholder { color: #7c8ea1; }

/* misc */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.tag-row .tag { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 6px 15px; font-size: 0.82rem; color: var(--grey-dark); }
.anchor-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: -20px 0 40px; }
.anchor-nav a {
  background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 8px 18px;
  font-size: 0.86rem; color: var(--navy); text-decoration: none !important;
}
.anchor-nav a:hover { border-color: var(--red); color: var(--red); }

/* calculator suite */
.calc-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.calc-tabs button {
  background: #fff; border: 1.5px solid var(--line); border-radius: 30px; padding: 10px 22px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600; color: var(--navy); cursor: pointer;
}
.calc-tabs button.active, .calc-tabs button:hover { border-color: var(--red); color: var(--red); }
.calcw { margin-bottom: 28px; }
.calcw h3 { margin-bottom: 4px; }
.calcw .desc { color: var(--grey-dark); font-size: 0.9rem; margin-bottom: 18px; }
.calcw label { font-weight: 600; font-size: 0.85rem; color: var(--navy); display: block; margin-bottom: 6px; }
.calcw input, .calcw select {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--grey-light); border-radius: 6px;
  font-family: var(--sans); font-size: 0.95rem;
}
.calcw input:focus { outline: none; border-color: var(--navy); }
.calcw .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-bottom: 18px; }

/* how-to video gallery */
#video-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
#video-tags button {
  background: #fff; border: 1.5px solid var(--line); border-radius: 30px; padding: 8px 18px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600; color: var(--navy); cursor: pointer;
}
#video-tags button.active, #video-tags button:hover { border-color: var(--red); color: var(--red); }
#video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { #video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { #video-grid { grid-template-columns: 1fr; } }
.video-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer;
}
.video-thumb {
  aspect-ratio: 16 / 9; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.video-thumb iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.video-play {
  width: 54px; height: 54px; border-radius: 50%; background: rgba(142, 47, 60, 0.92);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  padding-left: 4px; transition: transform 0.15s;
}
.video-card:hover .video-play { transform: scale(1.1); }
.video-body { padding: 16px 18px 20px; }
.video-body h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; margin-top: 8px; line-height: 1.4; }
.video-tagrow { display: flex; gap: 6px; flex-wrap: wrap; }

/* floating WhatsApp button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); transition: transform 0.15s, box-shadow 0.15s;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3); }
@media (max-width: 620px) { .wa-float { right: 14px; bottom: 14px; width: 50px; height: 50px; } }
