:root {
  --navy: #062a57;
  --navy2: #082651;
  --gold: #e1ad2f;
  --text: #071f43;
  --muted: #4e5b6f;
  --line: #e7ebf1;
  --soft: #f7f9fc;
  --blue: #1f5ca8;
  --purple: #7542cf;
  --green: #16896f;
  --orange: #f27b18;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.page-wrap {
  max-width: 870px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 2px 24px rgba(8, 38, 81, 0.08);
}
.bb-container {
  max-width: 830px;
  margin: 0 auto;
  padding: 0 30px;
}
.navbar {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: white;
  border-bottom: 1px solid #eef1f5;
}
.bb-logo {
  width: 150px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  position: relative;
  padding: 23px 0 18px;
  font-size: 9px;
  font-weight: 700;
  color: #14233a;
}
.nav-link.active:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 2px;
  background: var(--gold);
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.nav-btn {
  height: 32px;
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #aab2bf;
  font-size: 10px;
  font-weight: 800;
}
.nav-btn.dark {
  background: var(--navy2);
  border-color: var(--navy2);
  color: #fff;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  overflow: hidden;
}
.hero-copy {
  padding: 43px 24px 34px 30px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.hero h1 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero p {
  max-width: 330px;
  font-size: 12px;
  color: #344153;
  line-height: 1.65;
  margin-bottom: 18px;
}
.btn-primary {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--navy2);
  color: white;
  font-size: 11px;
  font-weight: 900;
}
.hero-image {
  min-height: 260px;
  background-position: center;
  background-size: cover;
}
.feature-strip {
  background: var(--navy);
  color: white;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  gap: 11px;
  padding: 18px 14px;
  min-height: 77px;
}
.strip-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: white;
}
.strip-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.strip-item h4 {
  font-size: 10.5px;
  font-weight: 900;
  margin-bottom: 4px;
  color: white;
}
.strip-item p {
  font-size: 8.7px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.section {
  padding: 30px 0;
}
.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
}
.small-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.small-card {
  min-height: 132px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  box-shadow: 0 5px 20px rgba(8, 38, 81, 0.04);
}
.circle-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 14px;
  background: var(--feature);
}
.circle-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.small-card h3 {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 8px;
}
.small-card p {
  font-size: 9.7px;
  color: #3d4858;
  line-height: 1.5;
}
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}
.info-box {
  background: #f5f7fa;
  padding: 22px 28px;
  min-height: 130px;
}
.info-box h3 {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.check-list li {
  font-size: 10.5px;
  color: #263449;
}
.check-list li:before {
  content: '\2713';
  margin-right: 8px;
  color: #25334a;
  font-weight: 900;
}
.quote-box {
  background: #f5f7fa;
  padding: 26px 28px;
  min-height: 130px;
  position: relative;
}
.quote-box p {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
  color: #15243a;
  max-width: 300px;
}
.quote-icon {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  color: #23344e;
}
.cta-band {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 24px 0;
  border-radius: 0 0 7px 7px;
}
.cta-band h2 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
}
.cta-band p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 13px;
}
.cta-band .btn-primary {
  background: white;
  color: var(--navy2);
  height: 34px;
}
.how-page {
  position: relative;
  overflow: hidden;
}
.how-bg {
  position: absolute;
  right: 0;
  top: 96px;
  bottom: 0;
  width: 44%;
  background: url({{ url_for('static', filename='images/how_it_work.png') }}) center/cover no-repeat;
  z-index: 0;how_it_work.png
}
.how-content {
  position: relative;
  z-index: 1;
  padding: 42px 0 0;
}
.how-title {
  font-size: 31px;
  font-weight: 900;
  margin-bottom: 8px;
}
.how-sub {
  font-size: 12px;
  color: #465468;
  margin-bottom: 34px;
}
.steps {
  width: 58%;
  padding-left: 8px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 92px;
  gap: 18px;
  min-height: 122px;
}
.step:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 38px;
  bottom: -20px;
  border-left: 1px dashed #c9d1dc;
}
.step:last-child:before {
  display: none;
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--step);
  color: white;
  font-size: 12px;
  font-weight: 900;
}
.step h3 {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}
.step p {
  font-size: 10.5px;
  color: #334155;
  line-height: 1.55;
}
.step img {
  width: 78px;
  margin-top: 4px;
}
.how-cta {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  background: rgba(6, 42, 87, 0.94);
  color: white;
  padding: 34px 0 42px;
  width: 100%;
}
.how-cta-inner {
  width: 58%;
  text-align: center;
}
.resource-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}
.resource-hero .hero-copy {
  padding-top: 50px;
}
.resource-visual {
  background: url('assets/pages/resources-hero.jpg') center/cover no-repeat;
}
.resource-library {
  background: #f7f9fc;
  padding: 32px 0;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.resource-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 16px;
  min-height: 155px;
}
.resource-card .circle-icon {
  background: #fff;
  color: var(--feature);
  border: 1px solid #ecedf5;
}
.resource-card h3 {
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}
.resource-card p {
  font-size: 9.5px;
  color: #4f5d70;
  line-height: 1.5;
  margin-bottom: 14px;
}
.resource-card a {
  font-size: 9.5px;
  font-weight: 900;
  color: var(--navy2);
}
.topics {
  padding: 0 0 26px;
  background: #f7f9fc;
  text-align: center;
}
.topic-list {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}
.topic {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  font-size: 9px;
  color: #4b5565;
}
.newsletter {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 28px 0;
}
.newsletter h2 {
  font-size: 19px;
  font-weight: 900;
}
.newsletter p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  margin: 5px 0 14px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.newsletter-form input {
  width: 230px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 10px;
}
.newsletter-form button {
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: white;
  color: var(--navy2);
  font-size: 10px;
  font-weight: 900;
  padding: 0 14px;
}
.support {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 152px;
}
.support-copy {
  padding: 30px;
}
.support-copy h2 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
}
.support-copy p {
  font-size: 11px;
  color: #4f5d70;
  margin-bottom: 14px;
}
.support-actions {
  display: flex;
  gap: 12px;
}
.support-actions a {
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #b8c0cd;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
}
.support-img {
  height: 152px;
  background: url('assets/pages/support-agent.jpg') center/cover no-repeat;
}
.business .hero-copy {
  padding-top: 38px;
}
.business .hero h1 {
  font-size: 31px;
}
.business .hero-image {
  background-position: center;
}
.investors .hero-image {
  background-position: center;
}
.business .hero-image {
  background-image: url('assets/pages/business-hero.jpg');
}
.investors .hero-image {
  background-image: url('assets/pages/investor-hero.jpg');
}
@media (max-width: 760px) {
  .page-wrap {
    box-shadow: none;
  }
  .navbar {
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 18px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero,
  .resource-hero,
  .info-row,
  .support {
    grid-template-columns: 1fr;
  }
  .hero-image,
  .resource-visual {
    min-height: 260px;
  }
  .strip-grid,
  .small-feature-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-bg {
    opacity: 0.18;
    width: 100%;
    top: 160px;
  }
  .steps,
  .how-cta-inner {
    width: 100%;
  }
  .step {
    grid-template-columns: 44px 1fr;
  }
  .step img {
    display: none;
  }
}
@media (max-width: 480px) {
  .bb-container {
    padding: 0 18px;
  }
  .strip-grid,
  .small-feature-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .hero h1,
  .how-title {
    font-size: 27px;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Navbar parity + responsive refinements */
.page-wrap {
  max-width: 100%;
  box-shadow: none;
}
.navbar {
  height: 82px;
  padding: 0 32px;
  gap: 18px;
}
.navbar-brand {
  min-width: 250px;
}
.bb-logo {
  width: 222px;
  height: auto;
}
.nav-links {
  gap: 24px;
}
.nav-link {
  padding: 28px 0 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-link.active:after {
  bottom: 18px;
  height: 2px;
}
.nav-btn {
  height: 40px;
  min-width: 98px;
  border-radius: 6px;
  font-size: 13px;
}
.nav-actions {
  gap: 12px;
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .navbar {
    padding: 14px 24px;
    height: auto;
    flex-wrap: wrap;
  }
  .navbar-brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .bb-logo {
    width: 190px;
  }
  .nav-actions {
    order: 2;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px 24px;
    flex-wrap: wrap;
  }
  .nav-link {
    padding: 8px 0;
    font-size: 12.5px;
  }
  .nav-link.active:after {
    bottom: 0;
  }
}
@media (max-width: 860px) {
  .hero,
  .resource-hero,
  .info-row,
  .support {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .resource-hero .hero-copy {
    padding: 36px 24px 28px;
  }
  .hero-image,
  .resource-visual {
    min-height: 320px;
  }
  .strip-grid,
  .small-feature-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .strip-item {
    min-height: auto;
  }
  .how-bg {
    opacity: 0.18;
    width: 100%;
    top: 120px;
  }
  .steps,
  .how-cta-inner {
    width: 100%;
  }
  .step {
    grid-template-columns: 44px 1fr 88px;
  }
}
@media (max-width: 640px) {
  .navbar {
    padding: 14px 18px;
    align-items: center;
  }
  .bb-logo {
    width: 176px;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
  }
  .nav-btn {
    min-width: 112px;
  }
  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 6px 2px 2px;
    scrollbar-width: thin;
  }
  .nav-link {
    flex: 0 0 auto;
    font-size: 12px;
  }
  .bb-container {
    padding: 0 20px;
  }
  .hero h1,
  .how-title {
    font-size: 28px;
  }
  .hero p {
    font-size: 12.5px;
  }
  .strip-grid,
  .small-feature-grid,
  .resource-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }
  .support-actions,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  .step {
    grid-template-columns: 40px 1fr;
    min-height: 118px;
  }
  .step img {
    display: none;
  }
  .cta-band {
    border-radius: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Final typography scale + hamburger navigation */
.hero {
  min-height: 430px;
}
.hero-copy {
  padding: 64px 36px 48px 48px;
}
.eyebrow {
  font-size: 17px;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -1px;
}
.hero p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.7;
}
.hero-image,
.resource-visual {
  min-height: 430px;
}
.btn-primary {
  height: 44px;
  padding: 0 26px;
  font-size: 13.5px;
}
.strip-item {
  padding: 24px 18px;
}
.strip-icon {
  width: 28px;
  height: 28px;
}
.strip-item h4 {
  font-size: 13px;
}
.strip-item p {
  font-size: 11px;
}
.section {
  padding: 48px 0;
}
.section-title {
  font-size: 25px;
  margin-bottom: 30px;
}
.small-card {
  min-height: 175px;
  padding: 24px 18px;
}
.circle-icon {
  width: 48px;
  height: 48px;
}
.circle-icon svg {
  width: 23px;
  height: 23px;
}
.small-card h3,
.resource-card h3 {
  font-size: 16px;
}
.small-card p,
.resource-card p,
.info-box li,
.support-copy p {
  font-size: 13px;
  line-height: 1.65;
}
.info-box,
.quote-box {
  min-height: 175px;
  padding: 30px 34px;
}
.info-box h3 {
  font-size: 16px;
}
.quote-box p {
  font-size: 15px;
  line-height: 1.65;
}
.cta-band {
  padding: 36px 0;
}
.cta-band h2 {
  font-size: 24px;
}
.cta-band p {
  font-size: 14px;
}
.how-title {
  font-size: 46px;
}
.how-sub {
  font-size: 15px;
}
.step h3 {
  font-size: 16px;
}
.step p {
  font-size: 13px;
}
.resource-card {
  min-height: 210px;
  padding: 26px 20px;
}
.resource-card a,
.topic {
  font-size: 12px;
}
.newsletter h2 {
  font-size: 24px;
}
.newsletter p {
  font-size: 14px;
}
.newsletter-form input,
.newsletter-form button {
  height: 42px;
  font-size: 13px;
}
.support-copy h2 {
  font-size: 24px;
}
.support-actions a {
  height: 42px;
  font-size: 13px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid #aab2bf;
  border-radius: 6px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy2);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.navbar.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.navbar.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 860px) {
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .navbar.open .nav-links,
  .navbar.open .nav-actions {
    display: flex;
  }
  .nav-links {
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 4px;
    overflow: visible;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .nav-link.active:after {
    display: none;
  }
  .nav-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    gap: 10px;
    padding-top: 10px;
  }
  .nav-btn {
    flex: 1;
  }
  .hero,
  .resource-hero {
    min-height: 0;
  }
  .hero-copy,
  .resource-hero .hero-copy {
    padding: 44px 24px 34px;
  }
  .hero h1,
  .how-title {
    font-size: 34px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-image,
  .resource-visual {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .navbar {
    padding: 14px 18px;
  }
  .bb-logo {
    width: 176px;
  }
  .hero h1,
  .how-title {
    font-size: 30px;
  }
  .eyebrow {
    font-size: 15px;
  }
  .strip-grid,
  .small-feature-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .small-card,
  .resource-card,
  .info-box,
  .quote-box {
    min-height: auto;
  }
}

/* Sticky navbar + shared footer */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}
.footer {
  background: #0a1535;
  padding: 56px 0 28px;
}
.footer .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .footer .container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* DamascusProjects brand wordmark */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}
.brand-logo-img[src=''] {
  display: none;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  color: var(--navy2);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.brand-tagline {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-top: 5px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .navbar-brand {
    min-width: 0;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-tagline {
    font-size: 9px;
  }
}
/* Home page rebuild */
.home-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.home-hero {
  background: white;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  min-height: 470px;
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 36px 28px 0;
}
.home-hero h1 {
  color: var(--navy2);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.home-hero p {
  max-width: 430px;
  color: #1d2a3e;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.home-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.home-btn-outline {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid #9aa4b5;
  color: var(--navy2);
  font-size: 13.5px;
  font-weight: 900;
}
.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-stat svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}
.home-stat strong {
  display: block;
  font-size: 13px;
}
.home-stat span {
  display: block;
  color: #5d6675;
  font-size: 10px;
}
.home-hero-media {
  position: relative;
  min-height: 470px;
  background: url('assets/mockup/hero.png') center/cover no-repeat;
}
.home-hero-badge {
  position: absolute;
  left: 48px;
  bottom: 18px;
  width: 380px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 10px;
  color: white;
  background: rgba(7, 32, 70, 0.82);
}
.home-hero-badge svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}
.home-hero-badge h4 {
  color: white;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}
.home-hero-badge p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  margin: 0;
}
.home-features {
  padding: 48px 0;
}
.home-section-head {
  text-align: center;
  margin-bottom: 28px;
}
.home-section-head h2 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
}
.home-section-head span {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.home-feature-card {
  padding: 20px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(8, 38, 81, 0.05);
}
.home-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--feature);
  font-weight: 900;
  margin-bottom: 18px;
}
.home-feature-card h3 {
  min-height: 52px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 13px;
}
.home-feature-card p {
  min-height: 112px;
  font-size: 13px;
  line-height: 1.65;
  color: #263449;
  margin-bottom: 18px;
}
.home-feature-card img {
  width: 100%;
  border-radius: 9px;
  border: 1px solid var(--line);
}
.home-ceo {
  background: var(--navy);
  color: white;
  padding: 48px 0;
}
.home-ceo-grid {
  display: grid;
  grid-template-columns: 230px 1fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.home-ceo-photo {
  width: 214px;
  height: 214px;
  border-radius: 50%;
  object-fit: cover;
}
.home-ceo-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.home-ceo h2 {
  color: white;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}
.home-ceo p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.65;
}
.home-signature {
  margin: 16px 0 4px;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
}
.home-ceo-title {
  font-size: 12px;
  margin-bottom: 14px;
}
.home-linkedin {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: white;
  border-radius: 3px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}
.home-ceo blockquote {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}
.home-trust {
  padding: 22px 0;
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.home-trust strong {
  display: block;
  font-size: 13px;
}
.home-trust span {
  color: #5d6675;
  font-size: 11px;
}
.home-ready {
  text-align: center;
  padding: 18px 20px 34px;
}
.home-ready p {
  margin-bottom: 12px;
  font-size: 14px;
}
@media (max-width: 960px) {
  .home-hero-grid,
  .home-ceo-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-copy {
    padding-right: 0;
  }
  .home-feature-grid,
  .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-ceo-grid {
    text-align: center;
    justify-items: center;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .home-container {
    padding: 0 20px;
  }
  .home-hero h1 {
    font-size: 34px;
  }
  .home-stats,
  .home-feature-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-media {
    min-height: 320px;
  }
  .home-hero-badge {
    left: 16px;
    right: 16px;
    width: auto;
    padding: 16px;
  }
  .home-feature-card h3,
  .home-feature-card p {
    min-height: 0;
  }
}
