:root {
  --ink: #12161f;
  --ink2: #1b2130;
  --ink3: #252c3d;
  --paper: #f7f4ee;
  --paper2: #efeade;
  --brass: #c19a56;
  --brass-dim: #8f723e;
  --redline: #9c3b3b;
  --text-light: #ece7db;
  --text-light-muted: #98a0b3;
  --text-dark: #1a1d24;
  --text-dark-muted: #6b6558;
  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wrap {
  /* max-width: 1080px; */
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.form-heading h2{
  font-size: 90px;
}

/* ---------- NAV ---------- */
/* header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid #2a3145;
}

.navwrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper);
  letter-spacing: .01em;
}

.brand .sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--brass);
  margin-top: 3px;
}

nav.pages {
  display: flex;
  gap: 6px;
}

nav.pages a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-muted);
  background: none;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: .2s;
  display: inline-block;
}

nav.pages a:hover {
  color: var(--text-light);
}

nav.pages a.active {
  color: var(--ink);
  background: var(--brass);
}

.cta-btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: var(--brass);
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
  display: inline-block;
}

.cta-btn:hover {
  background: #d1ab68;
}

.cta-btn.ghost {
  background: none;
  border: 1px solid var(--brass);
  color: var(--brass);
}

.cta-btn.ghost:hover {
  background: rgba(193, 154, 86, .1);
} */


/* Header */

.site {
  background: var(--ink);
  border-bottom: 1px solid #2a3145;
}
.form-control:focus {
    border: 1px solid #c19a56;
    box-shadow: none;
}
.navbar {
  min-height: 76px;
}

.navbar>.container {
  max-width: 1260px;
}

/* Logo */

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper);
}

.brand .sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--brass);
  margin-top: 4px;
}

/* Desktop Nav */

.pages {
  gap: 6px;
}

.pages .nav-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-muted);
  padding: 10px 16px;
  border-radius: 6px;
  transition: .25s;
}

.pages .nav-link:hover {
  color: var(--text-light);
}

.pages .nav-link.active {
  color: var(--ink);
  background: var(--brass);
}

/* Button */

.cta-btn {
  background: var(--brass);
  color: var(--ink);
  border-radius: 6px;
  padding: 11px 22px;
  font-weight: 600;
  border: none;
}

.cta-btn:hover {
  background: #d1ab68;
  color: var(--ink);
}

/* Toggler */

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* Offcanvas */

.offcanvas {
  background: var(--ink);
  width: 300px;
}

.offcanvas .nav-link {
  color: var(--text-light-muted);
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.offcanvas .nav-link:hover {
  color: var(--paper);
}

.offcanvas .nav-link.active {
  color: var(--brass);
}

/* Mobile */

@media (max-width:991.98px) {

  .navbar {
    min-height: 72px;
  }

  .brand .name {
    font-size: 18px;
  }

}

/* ---------- SHARED BLOCKS ---------- */
.hero {
  background: var(--ink);
  color: var(--text-light);
  padding: 96px 0 84px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid #2a3145;
  border-radius: 50%;
}

.hero .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero .hero-left {
  width: 45%;
}

.hero .hero-right {
  width: 45%;
  background: var(--text-light);
  color: var(--ink);
  padding: 32px;
  border-radius: 10px;
}

.hero .hero-right h3 {
  font-size: 1.8rem;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.hero .hero-right button {
  width: 100%;
}

.hero .eyebrow {
  color: var(--brass);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 46px;
  max-width: 720px;
  color: #fdfcfa;
}

.hero p.lede {
  font-size: 18px;
  color: var(--text-light-muted);
  max-width: 540px;
  margin: 22px 0 32px;
}

.hero .actions {
  display: flex;
  gap: 14px;
}

.band {
  padding: 72px 0;
}

.band.paper {
  background: var(--paper);
}

.band.paper2 {
  background: var(--paper2);
}

.band.ink {
  background: var(--ink);
  color: var(--text-light);
}

.band h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.band.ink h2 {
  color: #fdfcfa;
}

.band p.sub {
  color: var(--text-dark-muted);
  max-width: 560px;
  font-size: 16px;
  margin-bottom: 40px;
}

.band.ink p.sub {
  color: var(--text-light-muted);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--redline);
  text-transform: uppercase;
}

.mark svg {
  width: 14px;
  height: 14px;
}

/* essentials strip */
.essentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2ddce;
  overflow: hidden;
  border: 1px solid #e2ddce;
  margin-top: 8px;
}

.essentials div {
  background: var(--paper);
  padding: 26px 22px;
}

.essentials svg {
  width: 22px;
  height: 22px;
  stroke: var(--brass-dim);
  margin-bottom: 14px;
}

.essentials p {
  font-size: 14px;
  font-weight: 500;
}

/* pricing cards */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.tier {
  background: var(--ink2);
  border: 1px solid #2a3145;
  border-radius: 10px;
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
}

.tier.popular {
  border-color: var(--brass);
  background: var(--ink3);
}

.tier .badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.tier .tname {
  font-family: var(--serif);
  font-size: 22px;
  color: #fdfcfa;
  margin-bottom: 6px;
}

.tier .tfor {
  font-size: 13px;
  color: var(--text-light-muted);
  min-height: 52px;
  margin-bottom: 18px;
}

.tier .tprice {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--brass);
  margin-bottom: 22px;
}

.tier .tprice span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-light-muted);
  font-weight: 400;
}

.tier ul {
  list-style: none;
}

.tier li {
  font-size: 13.5px;
  color: var(--text-light);
  padding: 9px 0;
  border-top: 1px solid #2a3145;
  display: flex;
  gap: 10px;
}

.tier li:first-child {
  border-top: none;
}

.tier li svg {
  width: 14px;
  height: 14px;
  stroke: var(--brass);
  flex-shrink: 0;
  margin-top: 3px;
}

.tier .cta-btn {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

/* stepper */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.step {
  padding-top: 22px;
  border-top: 2px solid #d8d2c1;
  position: relative;
}

.step .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--redline);
  margin-bottom: 10px;
  display: block;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-dark-muted);
}

.step .when {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass-dim);
  margin-top: 10px;
  display: block;
}

/* stat grid */
.statgrid {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2a3145;
  border: 1px solid #2a3145;
}

.statgrid div {
  background: var(--ink2);
  padding: 30px 20px;
  text-align: center;
}

.statgrid .num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--brass);
  display: block;
}

.statgrid .lbl {
  font-size: 12.5px;
  color: var(--text-light-muted);
  margin-top: 6px;
}

.statgrid .placeholder-note {
  grid-column: 1/-1;
  background: none;
  text-align: center;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-light-muted);
  letter-spacing: .04em;
}

/* narrative panels */
.panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #e2ddce;
}

.panel:last-child {
  border-bottom: none;
}

.panel.rev {
  direction: rtl;
}

.panel.rev>* {
  direction: ltr;
}

.panel .art {
  background: var(--ink);
  border-radius: 10px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.panel .art svg {
  width: 64px;
  height: 64px;
  stroke: var(--brass);
  opacity: .85;
}

/* 
  .panel .art::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #2a3145;
    border-radius: 10px;
    margin: 10px;
  } */

.panel h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.panel p {
  color: var(--text-dark-muted);
  font-size: 15px;
}

/* team bios */
.bios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bio {
  background: var(--paper);
  border: 1px solid #e2ddce;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.bio .bname {
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 3px;
}

.bio .brole {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--brass-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bio .bline {
  font-size: 12.5px;
  color: var(--text-dark-muted);
}

/* case studies */
.case {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid #e2ddce;
}

.case:last-child {
  border-bottom: none;
}

.case .avatar {
  width: 88px;
  height: 88px;
  font-size: 26px;
}

.case h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.case p {
  font-size: 14.5px;
  color: var(--text-dark-muted);
  margin-bottom: 10px;
}

.case blockquote {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--redline);
  border-left: 2px solid var(--redline);
  padding-left: 14px;
  margin: 12px 0;
}

.case .viewcase {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--brass-dim);
  text-transform: uppercase;
}

.honest-note {
  background: var(--paper2);
  border: 1px dashed #c9c2ab;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: 36px;
}

.honest-note strong {
  color: var(--text-dark);
}

/* values two-col */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.values h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.values ul {
  list-style: none;
}

.values li {
  font-size: 14.5px;
  padding: 11px 0;
  border-top: 1px solid #e2ddce;
  display: flex;
  gap: 10px;
}

.values li:first-child {
  border-top: none;
}

.values li svg {
  width: 15px;
  height: 15px;
  stroke: var(--brass-dim);
  flex-shrink: 0;
  margin-top: 3px;
}

.guarantee-box {
  background: var(--ink);
  color: var(--text-light);
  border-radius: 10px;
  padding: 44px;
  margin-top: 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.guarantee-box-left {
  width: 60%;
}

.guarantee-box-right {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-box-right i {
  font-size: 10rem;
  color: var(--brass);
}

.guarantee-box .mark {
  color: var(--brass);
  margin-bottom: 16px;
}

.guarantee-box h3 {
  color: #fdfcfa;
  font-size: 24px;
  margin-bottom: 16px;
}

.guarantee-box p {
  color: var(--text-light-muted);
  font-size: 15px;
}

/* Case Study */
.case-study-cards {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.case-study-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.case-study-card::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 22, 31, 0) 0%, rgba(18, 22, 31, 0.8) 100%);
  z-index: 1;

}

.case-study-card:hover .case-study-card-text {
  transform: translateY(-20px);
  opacity: 1;
}

.case-study-card:hover span {

  background: #fff;
  color: #000;
}

.case-study-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.4s ease-in-out;
  z-index: 2;
}

.case-study-card-text h3 {
  font-size: 1.2rem;
  font-family: var(--sans);
  font-weight: 300;
  margin-bottom: 6px;
}

.case-study-card-text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.case-study-card-text span {
  color: #fff;
  font-size: 1.6rem;
  padding: 8px 10px;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}

.case-study-card-text span:hover {
  background: #fff;
  color: #000;
}

.case-study-card-img {
  width: 100%;
  /* max-height: 500px; */
  height: 500px;

}

.case-study-card-img img {
  width: 100%;
  height: 100%;

  object-fit: center;
  object-position: center;
  display: block;
}

/* Footer */
footer {
  color: #fff;
  background: var(--ink);
  /* color: var(--text-light-muted); */
  padding: 36px 0;
  font-size: 12.5px;
  border-top: 1px solid #2a3145;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-details {

  text-align: center;
}

.footer-widget {
  width: 80%;
  margin: auto;
}

.footer-widget .logo {
  width: 220px;
  margin: auto;
}

.footer-widget .logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-widget .logo a span {
  display: block;
  text-align: left;
}

.footer-widget .logo a span.name {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--paper);
  line-height: 24px;
}

.footer-widget .logo a span.sub {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--brass);
}


.footer-details .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;

  justify-content: center;
}

.footer-details .contact-details p {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  margin-bottom: 0 !important;
}

.footer-details .contact-details p:hover {
  color: var(--brass);
}

.footer-details .contact-details p i {
  color: var(--brass);
}

.footer-bottom {
  border-top: 1px solid var(--brass);
  padding-top: 10px;
}

.footer-bottom .footer-bottom-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer-bottom .footer-bottom-wrap p {
  font-size: 1rem;
}

.footer-bottom .footer-bottom-wrap p a:hover {
  color: var(--brass);
}

.thank-you {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thank-you p {
  margin-bottom: 30px;
}

.modal-content form {
  padding: 20px;
}

.modal-content .cta-btn {
  width: 100%;
}



.navbar-fixed-bottom {
  position: fixed;
  bottom: 20px;
  z-index: 999999;
  left: 20px;
}

.navbar-fixed-bottom .float {
  position: relative;
  display: inline-block;
}

.phone-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--brass);
  transform: translate(-50%, -50%);
  animation: phone-pulse 2s ease-out infinite;
  opacity: 0.5;
  z-index: 0;
}

.phone-pulse-ring-delay {
  animation-delay: 1s;
}

.number i {
  position: relative;
  z-index: 1;
  font-size: 30px;
  background-color: var(--brass);
  border-radius: 100px;
  padding: 10px 15px;
  color: #fff;
  transition: 0.5s ease-in-out;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-blink 1.5s ease-in-out infinite;
}

.navbar-brand {
  width: 80px;
}

.offcanvas .brand {
  width: 80px;
}

@keyframes phone-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes phone-blink {

  0%,
  100% {
    /* box-shadow: 0 0 0 0 rgba(2, 38, 62, 0.6); */
    box-shadow: 0 0 0 12px rgb(193, 154, 87, 0.6);

  }

  50% {
    /* box-shadow: 0 0 0 12px rgba(2, 38, 62, 0); */
    box-shadow: 0 0 0 12px rgb(193, 154, 87, 0);
  }
}

.navbar-fixed-bottom:hover {
  transition: 0.5s ease;
  transform: scale(1.1);
}

@media(max-width:860px) {
  .navwrap {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 20px;
    gap: 12px;
  }

  nav.pages {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .essentials,
  .tiers,
  .steps,
  .statgrid,
  .values,
  .bios {
    grid-template-columns: 1fr 1fr;
  }

  .panel,
  .panel.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .case {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 60px;
  }

  .hero .hero-left {
    width: 100%;
    text-align: center;
  }

  .hero .hero-left p.lede {
    max-width: 100%;
  }

  .hero .hero-left .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
  }

  .hero .hero-right {
    width: 70%;
  }


  .tiers {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tier {
    width: 100%;
    max-width: 320px;
  }

  .guarantee-box {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .guarantee-box-left {
    width: 100%;
  }

  .guarantee-box-right {
    width: 100%;
  }
}


@media(max-width:520px) {
  .hero .hero-right {
    width: 100%;
  }
  
  .form-heading h2 {
    font-size: 40px;
  }

  .wrap {
    text-align: center;
  }

  .tier ul {
    padding-left: 0;
  }

  .values ul {

    padding-left: 0;
  }

  .essentials {
    grid-template-columns: 1fr;
  }

  .essentials, .tiers, .steps, .statgrid, .values, .bios {
    grid-template-columns: 1fr;
  }

  .band .statgrid {
    grid-template-columns: 1fr !important;
  }

  footer .wrap {
    flex-direction: column;
    gap: 10px;
  }

  .footer-widget .logo {
    width: 130px;
  }

  .guarantee-box {
    padding: 12px;
    gap: 0;
  }

  .guarantee-box-right i {
    font-size: 8rem;
  }


  .case-study-cards {
    grid-template-columns: repeat(1, 1fr);
    text-align: left;
  }

  .case-study-card-text h3 {
    font-size: 1rem;
  }

  .case-study-card-text p {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .case-study-card-text span {
    color: #fff;
    font-size: 1.2rem;
  }

  .case-study-card-img {
    height: 350px;
  }

  .case-study-card-text {
    padding: 14px 16px;
  }
}




.floating-element {
  /* Apply the animation */
  animation: floatUpDown 2s ease-in-out infinite alternate;
}

/* Define the up and down movement */
@keyframes floatUpDown {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(-20px);
    /* Adjust this value to change the bounce height */
  }
}