@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --red: #E51527;
  --red-dark: #A00D24;
  --red-10: rgba(200, 16, 46, .10);
  --red-06: rgba(200, 16, 46, .06);
  --red-20: rgba(200, 16, 46, .20);
  --page-bg: #F8F5F0;
  --off-white: #F7F7F7;
  --white: #FFFFFF;
  --section-dark: #212121;
  --section-mid: #222426;
  --card-dark: #2A2C2E;
  --card-darker: #1E2022;
  --border-light: rgba(0, 0, 0, .10);
  --border-dark: rgba(255, 255, 255, .07);
  --border-red: rgba(200, 16, 46, .22);
  --text-dark: #1C1C1D;
  --text-body: #3A3A3A;
  --text-muted: #6B6B6B;
  --text-on-dark: #E8EAEC;
  --text-muted-dark: #B9BABC;
  --text-dimmer: #4A5058;
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Sans', monospace;
}

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

.sr {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--page-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.65;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/*Nav*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1;
}

.nav-logo-text .dot {
  color: var(--red);
}

.nav-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--white);
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-left: 30px;
  padding-left: 25px;
  line-height: 1.5;
}

.nav-tagline strong {
  display: block;
  color: var(--off-white);
  font-weight: 400;
}

nav#nav.fixnav {
  background: var(--section-dark);
}

.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 12px 30px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.button-primary svg {
  background: #fff;
  color: #000;
  border-radius: 100px;
  width: 17px;
  height: 17px;
  rotate: 320deg;
  padding: 3px;
}

.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-hero:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0px 120px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .4em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-tag::before {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--red);
}

.hero-h1 {
    font-family: var(--font-head);
    font-size: 80px;
    font-weight: 800;
    color: #fff;
    line-height: .92;
    letter-spacing: -.01em;
    margin-bottom: 28px;
    padding-right: 60px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .35);
}

span.red{
    position: relative;
}

span.red:after {
    background-color: var(--red);
    bottom: auto;
    content: "";
    height: 0.3em;
    left: 0;
    position: absolute;
    right: 0;
    top: .8em;
    z-index: -1;
}

.heading-xl span.red {
    display: inline-block;
}
.heading-xl span.red:after {
    top: .68em;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bgtop.jpg");
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 20, 22, .25) 0%, rgba(18, 20, 22, .05) 20%, rgba(18, 20, 22, .5) 55%, rgba(18, 20, 22, .98) 100%),
    linear-gradient(90deg, rgba(18, 20, 22, .55) 0%, transparent 65%);
}

.hero-p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-ghost-light {
  color: rgba(232, 234, 236, .9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.btn-ghost-light:hover {
  color: var(--red);
  border-color: var(--red);
}

.hero-p strong {
  font-weight: 700;
}




/*Bar*/
.statbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--section-dark);
  border-top: 1px solid #3d3b3b;
  justify-content: center;
  padding: 30px 50px;
}

.sitem {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.sval {
  font-family: var(--font-head);
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: .01em;
}

.sval sup {
  font-size: 25px;
  padding-left: 5px;
  color: var(--red);
  vertical-align: super;
}

.slbl {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .16em;
  color: var(--text-dimmer);
  text-transform: uppercase;
  margin-top: 7px;
  line-height: 1.5;
}

.slbl strong {
  display: block;
  color: var(--text-muted-dark);
  font-weight: 500;
  font-size: 11px;
}

.statbar .sitem:last-child {
  border: none;
}

/*Why*/
.why-now {
  background: var(--page-bg);
  padding: 96px 0;
}

.why-grid {
  display: flex;
  gap: 50px;
  align-items: start;
}

.why-image-wrap {
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}

.sr.v {
  opacity: 1;
}

.challenge-item.v {
  opacity: 1;
  transform: none;
  border-left-color: var(--red);
}

.why-grid p.body-copy.dark.v {
    transform: none;
    padding-top: 22px;
}

.why-image-wrap.v{
  transform: none;
}

.challenge-item {
  padding: 0px 0 0px 30px;
  border-left: 2px solid var(--border-light);
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .5s ease, transform .5s ease, border-color .3s;
  margin-top: 25px;
}

.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .25em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.subtitle::before {
  content: '';
  width: 15px;
  height: 1px;
  background: var(--red);
}

.body-copy.dark {
  color: var(--text-body);
}

.challenges {
  margin-top: 10px;
}

.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  padding-right: 10px;
}

.heading-xl {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.ch-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .25em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.ch-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ch-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}


/*Gallery*/
.photo-grid-5 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 430px 400px;
  gap: 3px;
  background: var(--section-dark);
}

.pg-item.tall {
  grid-row: span 2;
}

.pg-item {
  overflow: hidden;
  position: relative;
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(.8);
  transition: transform .65s ease, filter .4s ease;
}

.pg-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(18, 20, 22, .8));
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    opacity: 1;
    transition: opacity .3s;
}

.pg-item:hover img {
  transform: scale(1.05);
  filter: brightness(.94) saturate(.95);
}

.pg-item:hover .pg-item-label {
  opacity: 1;
}

.capabilities {
  background: var(--section-dark);
  padding: 100px 0;
  position: relative;
}

.capabilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: .4;
}

.heading-xl.light {
  color: #fff;
}

.body-copy.light {
    color: rgba(255, 255, 255, .9);
}

.cap-header-title {
  margin-bottom: 35px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cap-card {
  background-color: rgba(58, 58, 60, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 36px 30px;
  position: relative;
  opacity: 0;
  overflow: hidden;
  transform: translateY(16px);
  border-radius: 0;
  transition: opacity .5s ease, transform .5s ease, border-color .25s;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: 20px 20px 0 0;
}

.cap-card:hover::before {
  transform: scaleX(1);
}

.cap-ic {
  margin-bottom: 5px;
}

.cap-val {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.cap-unit {
  font-size: 20px;
  color: var(--red);
  margin-left: 2px;
}

.cap-header-title p.body-copy.light {
  font-size: 15px;
}

.cap-card.v {
  opacity: 1;
  transform: none;
}

.cap-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cap-desc {
  font-size: 15px;
  line-height: 1.7;
}

.photo-grid-4 {
  padding: 5%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 500px;
  gap: 10px;
}

.photo-grid-4 .pg-item-label {
  padding: 40px;
}

.photo-grid-4 strong {
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 0px;
  line-height: 1.2;
  display: block;
}

.photo-grid-4 .pg-item span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.1;
}

.goken-hero{
    background: var(--section-dark);
    padding: 100px 0;
    position: relative;
}
.goken-hero a.button-primary {
    margin-top: 20px;
}
.why-image-wrap {
    transform: none;
}
.goken-hero .ch-title.light {
    color: #e51527;
    margin-bottom: 5px;
    font-weight: 500;
}
.goken-hero .ch-body{
  color: rgba(255, 255, 255, .9);
}
.goken-hero p.body-copy.light {
    margin-bottom: 45px;
}



/*Quote*/
.quote-hero {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.quote-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 20, 22, .96) 0%, rgba(18, 20, 22, .3) 50%, rgba(18, 20, 22, .1) 100%);
}

.quote-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.45) saturate(.65);
}

.quote-inner {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 100px;
  z-index: 9;
  padding: 0;
  left: 0;
}

.quote-box {
  max-width: 880px;
}

.qtext {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 28px;
}

.qname {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.qrole {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 5px;
}

.proof-strip-section {
  background: var(--red);
  padding: 30px 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
}

.ps-item {
  padding: 0 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

.ps-val {
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

.ps-lbl {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

.v {
  opacity: 1;
}

.ps-item:last-child {
  border: none;
}

.process {
  background: var(--page-bg);
  padding: 100px 0;
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  margin-bottom: 35px;
  align-items: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 32px 26px;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s, border-color .25s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  box-shadow: 0 4px 28px rgba(0, 0, 0, .1);
  border-color: var(--red-20);
}

.step-num {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 800;
  color: rgba(200, 16, 46, .12);
  line-height: 1;
  margin-bottom: 10px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.step-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    text-decoration: underline;
}

.dual-section {
  background: var(--section-mid);
  padding: 100px 0;
}

.dual-section-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.dual-image {
  overflow: hidden;
  position: relative;
  width: 40%;
}

.dual-image img {
  object-fit: cover;
  width: 100%;
}

.dual-text {
  width: 60%
}

.dual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 40px;
}

.ds-item {
  margin-top: 30px;
  border-left: 2px solid var(--red);
  padding-left: 20px;
  transition: border-color .25s;
}

.ds-val {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.ds-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted-dark);
  line-height: 1;
}

.dual-text strong {
  color: #eee;
}


.form-section {
  background: var(--page-bg);
  padding: 100px 0;
  position: relative;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.alert-box {
  margin-top: 15px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--red-06);
  border: 1px solid var(--red-20);
  padding: 18px 20px;
}

.alert-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

.alert-text strong {
  color: var(--red);
  font-weight: 600;
  display: block;
  font-size: 15px;
}

.check-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.25;
}

.chk svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.chk strong {
  color: var(--text-dark);
  font-weight: 700;
}

.contact-pill {
  margin-top: 25px;
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 20px 22px;
  border-left: 3px solid var(--red);
}

.cp-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 500;
}

.cp-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cp-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: opacity .2s;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease .2s, transform .6s ease .2s;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.fc-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.form-card label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-family: var(--font-mono);
}

.form-card input,
.form-card select,
.form-card textarea {
  background: var(--page-bg);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 14px;
  outline: none;
  width: 100%;
  transition: border-color .2s, background .2s;
}

.form-card select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M.5.5 5 5.5l4.5-5' stroke='%23C8102E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 32px;
  -webkit-appearance: none;
}

.form-card textarea {
  resize: vertical;
  min-height: 88px;
}

.f-submit {
  width: 80%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  border-radius: 100px;
  transition: background .2s, transform .15s;
}

.f-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.che-box {
    display: flex;
}
input#agree {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.che-box label {
    font-weight: 500;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 1;
}

.che-box .invalid-feedback {
    order: 1;
    width: 100%;
}
.invalid-feedback{
  color: var(--red);
}

/*Footer*/
footer {
  background: var(--section-dark);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 40px 60px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fl-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: #D8D8D8;
  text-transform: uppercase;
  margin-top: 8px;
}

.fl-right {
  text-align: right;
  font-size: 12px;
  color: #D8D8D8;
  line-height: 1.8;
}

.fl-right a {
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: color .2s;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-left: 20px;
}

.fl-right a:hover {
  color: var(--red);
}

.fl-legal {
  font-size: 14px;
  color: #D8D8D8;
  margin-top: 35px;
  padding-top: 30px;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

section.thank-you {
  display: flex;
  flex-flow: column;
  height: 80vh;
  align-content: center;
  justify-content: center;
}

.thank-you-content {
  text-align: center;
  padding: 0 20px;
}

.thank-you-content h2.heading-xl {
  font-size: 100px;
}

.thank-you-content p.hero-subtext {
  font-size: 20px;
  margin-bottom: 30px;
}

.sticky-side-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-action-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--text-dark);
  color: #fff;
  text-decoration: none;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.sticky-action-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: stroke 0.3s ease;
}

.sticky-action-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.sticky-action-btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--red);
  z-index: 2;
  transition: background 0.3s;
}

.sticky-action-label {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
  margin-left: 0;
  color: #fff;
}

.call-btn:hover .sticky-action-label,
.email-btn:hover .sticky-action-label {
  max-width: 100px;
  opacity: 1;
  margin-left: 10px;
  color: var(--charcoal);
}

.call-btn:hover,
.email-btn:hover {
  padding: 16px 20px 16px 18px;
}

.fl-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

/*Media CSS*/

@media (max-width: 768px) {
  nav {
    padding: 0 15px;
  }

  .nav-logo-text img {
    width: 70%;
  }

  .nav-tagline {
    display: none;
  }

  nav#nav .button-primary {
      gap: 5px;
      font-size: 9px;
      padding: 8px 15px;
  }
  nav#nav .button-primary svg{
    display: none;
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .photo-grid-5 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hero-tag {
    letter-spacing: .2em;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-h1 {
    font-size: 40px;
    padding: 0;
  }

  .hero-p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .statbar {
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border: 0;
  }

  .sitem {
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, .1) !important;
    border-top: 1px solid rgba(255, 255, 255, .1) !important;
  }

  .why-now,
  .capabilities {
    padding: 40px 15px;
  }

  .why-grid {
    gap: 20px;
    flex-wrap: wrap;
  }

  .heading-xl {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .cap-card {
    padding: 20px;
  }

  .cap-val {
    font-size: 35px;
  }

  .cap-desc {
    line-height: 1.5;
  }

  .cap-tag {
    font-size: 10px;
  }

  .photo-grid-4 {
    grid-template-columns: 1fr;
    grid-template-rows: 300px;
  }

  .quote-box {
    padding: 0 20px;
  }

  .qtext {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ps-item {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .process {
    padding: 40px 15px;
  }

  .process-header {
    display: block;
  }

  .steps-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .dual-section-flex {
    gap: 10px;
    flex-wrap: wrap;
  }

  .form-section,
  .dual-section,
  .process {
    padding: 40px 15px;
    overflow: hidden;
  }

  .dual-text,
  .dual-image {
    width: 100%;
  }

  .ds-val {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .dual-stats {
    margin-bottom: 20px;
  }

  .form-layout {
    display: block;
  }

  .form-card {
    margin-top: 30px;
    padding: 20px;
  }

  .fc-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .form-card textarea {
    min-height: 120px;
  }

  .f-submit {
    width: 100%;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-grid {
    display: block;
  }

  .fl-right {
    text-align: left;
    margin-top: 15px;
  }

  .fl-right a {
    font-size: 12px;
    letter-spacing: 2px;
    margin-right: 10px;
  }

  .fl-legal {
    margin-top: 20px;
    padding-top: 20px;
  }

  .thank-you-content h2.heading-xl {
    font-size: 50px;
  }
  section.goken-hero {
    padding: 40px 20px;
}
.goken-hero .why-image-wrap {
    padding: 0;
}
  .goken-hero .steps-grid {
    grid-template-columns: repeat(1, 1fr);
}

}

@media screen and (min-width: 800px) and (max-width: 1250px) {

  nav {
    padding: 0 30px;
  }

  .hero {
    padding: 0 30px;
  }

  .heading-xl {
    font-size: 45px;
  }

  .form-section,
  .dual-section,
  .process,
  .capabilities,
  .why-now {
    padding: 80px 20px;
  }

  .why-grid {
    gap: 40px;
  }

  .photo-grid-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 450px;
  }

  .quote-inner {
    padding: 0 30px;
  }

  footer {
    padding: 30px 20px;
  }


}