/*
Theme Name: Greenstone Custom Theme
Theme URI: https://gstonefirm.com
Author: AA
Description: Standalone custom theme for Greenstone
Version: 1.0
Text Domain: greenstone
*/

:root{
  --fin-text:#ffffff;
  --fin-muted:rgba(255,255,255,0.78);
  --fin-link:#7FB1FF;
  --fin-gold:#F4D58D;
  --fin-gold2:#FFE5AA;
  --fin-dark:#070B14;
  --fin-dark2:#0B1220;
  --fin-dark3:#162235;
}

html,
body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family: Montserrat, sans-serif;
}

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

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

a{
  text-decoration:none;
}

.site-main{
  min-height:40vh;
}

.greenstone-content{
  width:100%;
}

/* =========================
   CUSTOM TOP HEADER
   ========================= */
.fintech-site-header{
  position:relative;
  z-index:99999;
}

.fintech-header-wrap{
  width:100%;
  background:
    radial-gradient(1200px 420px at 50% -50%, rgba(127,177,255,0.26), transparent 60%),
    radial-gradient(900px 380px at 86% 10%, rgba(244,213,141,0.18), transparent 55%),
    linear-gradient(135deg, #08101b 0%, #0d1727 42%, #1a2434 100%);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.fintech-header{
  display:grid;
  grid-template-columns:56px 1fr 180px;
  grid-template-rows:auto auto;
  align-items:center;
  column-gap:12px;
  row-gap:6px;
  padding:12px 16px 10px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 35px rgba(0,0,0,0.28);
}

.fintech-left{
  grid-column:1;
  grid-row:1;
  width:56px;
  min-width:56px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  z-index:3;
}

.fintech-menu-btn{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.05);
  border-radius:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  cursor:pointer;
  transition:all .2s ease;
  padding:0;
  appearance:none;
  -webkit-appearance:none;
  flex:0 0 42px;
}

.fintech-menu-btn:hover{
  background:rgba(255,255,255,0.08);
  box-shadow:0 0 20px rgba(127,177,255,0.18);
}

.fintech-menu-btn span{
  width:18px;
  height:2px;
  background:#ffffff !important;
  border-radius:2px;
  display:block !important;
}

.fintech-center{
  grid-column:2;
  grid-row:1 / span 2;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:0;
  overflow:hidden;
  padding:0 6px;
}

.fintech-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  overflow:hidden;
  color:#fff;
}

.fintech-logo img{
  display:block;
  width:auto;
  height:auto;
}

.fintech-logo-desktop{
  display:block !important;
  max-height:80px;
  max-width:300px;
  width:auto;
  height:auto;
}

.fintech-logo-mobile{
  display:none !important;
  max-height:38px;
  max-width:135px;
  width:auto;
  height:auto;
}

.fintech-sub{
  margin-top:4px;
  text-align:center;
  color:var(--fin-muted);
  font-size:12.5px;
  line-height:1.35;
  max-width:640px;
}

.fintech-link{
  color:var(--fin-link);
  text-decoration:none;
  font-weight:700;
}

.fintech-link:hover{
  text-decoration:underline;
}

.fintech-right{
  grid-column:3;
  grid-row:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-width:180px;
}

.fintech-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  text-decoration:none;
  white-space:nowrap;
  min-height:40px;
}

.fintech-btn--cta,
.fintech-btn--cta:link,
.fintech-btn--cta:visited{
  color:#0B1220 !important;
  text-decoration:none !important;
  border:1px solid rgba(244,213,141,0.35);
  background:linear-gradient(135deg, rgba(244,213,141,0.98), rgba(255,229,170,0.95)) !important;
  box-shadow:0 10px 22px rgba(0,0,0,0.10);
}

.fintech-btn--cta:hover,
.fintech-btn--cta:focus{
  color:#0B1220 !important;
  text-decoration:none !important;
  background:linear-gradient(135deg, rgba(244,213,141,1), rgba(255,229,170,0.98)) !important;
  border-color:rgba(244,213,141,0.45) !important;
  transform:translateY(-2px) scale(1.01);
  box-shadow:0 14px 28px rgba(0,0,0,0.14);
  outline:none !important;
}

.fintech-btn--cta:active{
  color:#0B1220 !important;
  transform:scale(0.98);
}

.fin-drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.48);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:10000;
}

.fin-drawer-backdrop.is-open{
  opacity:1;
  pointer-events:auto;
}

.fin-drawer{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  width:min(1020px,92vw);
  transform:translateX(-105%);
  transition:transform .35s cubic-bezier(.2,.9,.2,1);
  z-index:10001;
  background:#f5f5f5;
  color:#111;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  overflow:auto;
}

.fin-drawer.is-open{
  transform:translateX(0);
}

.fin-drawer-top{
  background:
    radial-gradient(1200px 420px at 50% -50%, rgba(127,177,255,0.26), transparent 60%),
    radial-gradient(900px 380px at 86% 10%, rgba(244,213,141,0.18), transparent 55%),
    linear-gradient(135deg, #08101b 0%, #0d1727 42%, #1a2434 100%);
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}

.fin-drawer-close{
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:10px;
  background:rgba(255,255,255,0.06);
  color:#ffffff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
  padding:0;
}

.fin-drawer-brand{
  flex:1;
}

.fin-drawer-top-sub{
  margin-top:8px;
  color:rgba(255,255,255,0.78);
  font-size:13px;
  line-height:1.5;
}

.fin-drawer-top-sub a{
  color:var(--fin-link);
  font-weight:700;
}

.fin-drawer-body{
  padding:28px 22px;
}

.fin-drawer-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.fin-drawer-nav a{
  color:#111;
  font-size:18px;
  font-weight:700;
}

.fin-drawer-content{
  margin-top:28px;
}

.fin-drawer-content h3{
  margin:0 0 10px;
  font-size:22px;
  color:#0b1538;
}

.fin-drawer-content p{
  margin:0 0 18px;
  line-height:1.8;
  color:#394150;
}

.fin-drawer-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:#0b1538;
  color:#fff;
  font-weight:700;
}

@media (max-width: 900px){
  .fintech-header{
    grid-template-columns:56px 1fr;
    grid-template-rows:auto auto auto;
  }

  .fintech-right{
    grid-column:1 / -1;
    grid-row:3;
    justify-content:center;
    min-width:0;
  }

  .fintech-logo-desktop{
    display:none !important;
  }

  .fintech-logo-mobile{
    display:block !important;
  }
}

@media (max-width: 767px){
  .fintech-header{
    padding:10px 12px;
  }

  .fintech-sub{
    font-size:11.5px;
  }

  .fin-drawer{
    width:92vw;
  }
}
/* =========================
   DRAWER - MATCH SCREENSHOT 2
   ========================= */

.fin-drawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(880px, 92vw);
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  z-index: 10001;
  background: #f3f3f3;
  color: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  overflow-y: auto;
  overflow-x: hidden;
}

.fin-drawer.is-open{
  transform: translateX(0);
}

.fin-drawer-top{
  background:
    radial-gradient(1200px 420px at 50% -50%, rgba(127,177,255,0.26), transparent 60%),
    radial-gradient(900px 380px at 86% 10%, rgba(244,213,141,0.18), transparent 55%),
    linear-gradient(135deg, #08101b 0%, #0d1727 42%, #1a2434 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 18px 14px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 14px;
}

.fin-drawer-close{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

.fin-drawer-brand{
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fin-drawer-brand .fintech-logo{
  justify-content: flex-start;
}

.fin-drawer-brand .fintech-logo img{
  display: block;
  width: auto;
  height: auto;
}

.fin-drawer-brand .fintech-logo-desktop{
  display: block !important;
  max-width: 180px;
  max-height: 64px;
}

.fin-drawer-brand .fintech-logo-mobile{
  display: none !important;
}

.fin-drawer-top-right{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.fin-drawer-top-right .fintech-btn{
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.fin-drawer-top-sub{
  margin-top: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.55;
  max-width: 560px;
}

.fin-drawer-top-sub a{
  color: #7FB1FF;
  font-weight: 700;
  text-decoration: none;
}

.fin-drawer-body{
  padding: 42px 46px 56px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.fin-drawer-nav{
  min-width: 0;
}

.fin-drawer-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.fin-drawer-nav li{
  margin: 0;
  padding: 0;
}

.fin-drawer-nav a{
  color: #111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
}

.fin-drawer-nav a:hover{
  color: #0b1538;
}

.fin-drawer-content{
  margin-top: 0;
  max-width: 360px;
}

.fin-drawer-content h3{
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.05;
  color: #111;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .01em;
}

.fin-drawer-content p{
  margin: 0 0 40px;
  line-height: 1.85;
  color: #373737;
  font-size: 15px;
  max-width: 100%;
}

.fin-drawer-content p:last-of-type{
  margin-bottom: 26px;
}

.fin-drawer-content .fintech-link{
  color: #7FA8FF;
  font-weight: 700;
}

.fin-drawer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: #7FA8FF;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
}

.fin-drawer-cta:hover{
  text-decoration: underline;
}

/* TABLET */
@media (max-width: 1100px){
  .fin-drawer{
    width: min(760px, 94vw);
  }

  .fin-drawer-body{
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    padding: 34px 28px 44px;
  }

  .fin-drawer-nav ul{
    gap: 18px;
  }

  .fin-drawer-nav a{
    font-size: 16px;
  }

  .fin-drawer-content h3{
    font-size: 20px;
  }
}

/* MOBILE */
@media (max-width: 767px){
  .fin-drawer{
    width: 92vw;
  }

  .fin-drawer-top{
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .fin-drawer-top-right{
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .fin-drawer-brand .fintech-logo-desktop{
    display: none !important;
  }

  .fin-drawer-brand .fintech-logo-mobile{
    display: block !important;
    max-width: 140px;
    max-height: 44px;
  }

  .fin-drawer-top-sub{
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .fin-drawer-body{
    display: block;
    padding: 24px 22px 34px;
  }

  .fin-drawer-nav ul{
    gap: 14px;
    margin-bottom: 28px;
  }

  .fin-drawer-nav a{
    font-size: 15px;
  }

  .fin-drawer-content{
    max-width: 100%;
  }

  .fin-drawer-content h3{
    font-size: 18px;
  }

  .fin-drawer-content p{
    font-size: 14px;
    margin-bottom: 22px;
  }
}
/* =========================================
   GREENSTONE MOBILE HEADER + DRAWER EXACT FIX
   ========================================= */

@media (max-width: 767px){

  /* Main header wrapper */
  .fintech-header-wrap{
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .fintech-header{
    display: grid !important;
    grid-template-columns: 44px 1fr auto !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 6px !important;
    padding: 12px 14px 10px !important;
    min-height: auto !important;
  }

  /* Left menu icon */
  .fintech-left{
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 44px !important;
    min-width: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .fintech-menu-btn{
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    gap: 4px !important;
  }

  .fintech-menu-btn span{
    width: 18px !important;
    height: 2px !important;
  }

  /* Center logo */
  .fintech-center{
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    padding: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .fintech-logo{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .fintech-logo-desktop{
    display: none !important;
  }

  .fintech-logo-mobile{
    display: block !important;
    width: auto !important;
    max-width: 118px !important;
    max-height: 42px !important;
    height: auto !important;
  }

  /* Header text under logo */
  .fintech-sub{
    margin-top: 5px !important;
    max-width: 235px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    color: rgba(255,255,255,.82) !important;
    text-align: center !important;
  }

  .fintech-sub .fintech-link{
    color: #7FB1FF !important;
    font-weight: 700 !important;
  }

  /* Right button */
  .fintech-right{
    grid-column: 3 !important;
    grid-row: 1 !important;
    min-width: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
  }

  .fintech-btn,
  .fintech-btn--cta{
    min-height: 34px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  /* =================================
     DRAWER
     ================================= */

  .fin-drawer{
    width: 82vw !important;
    max-width: 340px !important;
    background: #f4f4f4 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .fin-drawer-top{
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 10px !important;
    padding: 14px 14px 12px !important;
    align-items: start !important;
  }

  .fin-drawer-close{
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    font-size: 22px !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .fin-drawer-brand{
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
  }

  .fin-drawer-brand .fintech-logo{
    justify-content: flex-start !important;
  }

  .fin-drawer-brand .fintech-logo-desktop{
    display: none !important;
  }

  .fin-drawer-brand .fintech-logo-mobile{
    display: block !important;
    max-width: 120px !important;
    max-height: 42px !important;
  }

  .fin-drawer-top-sub{
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    max-width: 210px !important;
    color: rgba(255,255,255,.82) !important;
  }

  .fin-drawer-top-sub a{
    color: #7FB1FF !important;
    text-decoration: none !important;
    font-weight: 700 !important;
  }

  .fin-drawer-top-right{
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 4px !important;
  }

  .fin-drawer-top-right .fintech-btn{
    min-height: 52px !important;
    padding: 0 30px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
  }

  /* Drawer body */
  .fin-drawer-body{
    display: block !important;
    padding: 20px 22px 28px !important;
    background: #f4f4f4 !important;
  }

  /* Menu list */
  .fin-drawer-nav{
    margin: 0 !important;
  }

  .fin-drawer-nav ul{
    display: grid !important;
    gap: 18px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .fin-drawer-nav li{
    margin: 0 !important;
    padding: 0 !important;
  }

  .fin-drawer-nav a{
    display: block !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: .02em !important;
    text-transform: uppercase !important;
    color: #111 !important;
    text-decoration: none !important;
  }

  /* Right content */
  .fin-drawer-content{
    margin-top: 0 !important;
    max-width: 100% !important;
  }

  .fin-drawer-content h3{
    margin: 0 0 12px !important;
    font-size: 18px !important;
    line-height: 1.05 !important;
    font-weight: 500 !important;
    color: #111 !important;
    text-transform: uppercase !important;
  }

  .fin-drawer-content p{
    margin: 0 0 24px !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #3a3a3a !important;
  }

  .fin-drawer-content .fintech-link{
    color: #7FA8FF !important;
    font-weight: 700 !important;
  }

  .fin-drawer-cta{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    color: #7FA8FF !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }
}
/* Hide header description on mobile */
@media (max-width: 767px){
  .fintech-sub{
    display:none !important;
  }
}
/* =========================================
   HERO BLOCK FIX
   Makes the first section match the clean full hero layout
   ========================================= */

.gs-hero-video,
.gs-hero,
.gs-hero-videoWrap,
.gs-hero-video__media,
.gs-hero-video__content,
.gs-hero-video__inner {
  box-sizing: border-box;
}

.gs-hero-video,
.gs-hero {
  position: relative !important;
  width: 100% !important;
  min-height: 760px !important;
  overflow: hidden !important;
  background: #08101b !important;
}

.gs-hero-video__media,
.gs-hero-videoWrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.gs-hero-video__media video,
.gs-hero-video__media img,
.gs-hero-videoWrap video,
.gs-hero-videoWrap img,
.gs-hero video,
.gs-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.gs-hero-video__overlay,
.gs-hero-video__bg-overlay,
.gs-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    linear-gradient(180deg, rgba(5,10,20,.40) 0%, rgba(5,10,20,.58) 100%),
    radial-gradient(circle at 50% 20%, rgba(40,72,140,.22), rgba(0,0,0,0) 48%) !important;
}

.gs-hero-video__content,
.gs-hero__content,
.gs-hero-content {
  position: relative !important;
  z-index: 3 !important;
  min-height: 760px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 120px 20px 90px !important;
}

.gs-hero-video__inner,
.gs-hero__inner,
.gs-hero-inner {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

.gs-hero-video__subtitle,
.gs-hero__subtitle,
.gs-hero-subtitle {
  margin: 0 0 16px !important;
  color: rgba(255,255,255,.9) !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

.gs-hero-video__title,
.gs-hero__title,
.gs-hero-title {
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: 74px !important;
  line-height: 1.02 !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gs-hero-video__text,
.gs-hero__text,
.gs-hero-text {
  max-width: 920px !important;
  margin: 0 auto 34px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.gs-hero-video__buttons,
.gs-hero-buttons,
.gs-hero-cta,
.gs-hero-video .button-group {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 0 !important;
}

.gs-hero-video__buttons a,
.gs-hero-buttons a,
.gs-hero-cta a,
.gs-hero-video .button-group a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  min-height: 54px !important;
  padding: 0 28px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.gs-hero-video__buttons a:hover,
.gs-hero-buttons a:hover,
.gs-hero-cta a:hover,
.gs-hero-video .button-group a:hover {
  transform: translateY(-2px) !important;
}

.gs-hero-video__buttons a:first-child,
.gs-hero-buttons a:first-child,
.gs-hero-cta a:first-child {
  background: #f5f5f5 !important;
  color: #111 !important;
}

.gs-hero-video__buttons a:last-child,
.gs-hero-buttons a:last-child,
.gs-hero-cta a:last-child {
  background: #edd084 !important;
  color: #111 !important;
}

/* prevent content from dropping below hero */
.gs-hero + *,
.gs-hero-video + * {
  margin-top: 0 !important;
}

/* Desktop refinements */
@media (max-width: 1400px) {
  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title {
    font-size: 62px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .gs-hero-video,
  .gs-hero {
    min-height: 680px !important;
  }

  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content {
    min-height: 680px !important;
    padding: 110px 20px 80px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title {
    font-size: 52px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text {
    font-size: 17px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .gs-hero-video,
  .gs-hero {
    min-height: 620px !important;
  }

  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content {
    min-height: 620px !important;
    padding: 90px 18px 60px !important;
  }

  .gs-hero-video__subtitle,
  .gs-hero__subtitle,
  .gs-hero-subtitle {
    font-size: 13px !important;
    letter-spacing: .14em !important;
    margin-bottom: 12px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title {
    font-size: 38px !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
  }

  .gs-hero-video__buttons,
  .gs-hero-buttons,
  .gs-hero-cta,
  .gs-hero-video .button-group {
    gap: 12px !important;
  }

  .gs-hero-video__buttons a,
  .gs-hero-buttons a,
  .gs-hero-cta a,
  .gs-hero-video .button-group a {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
    min-height: 52px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
  }
}
/* =========================================
   GREENSTONE HERO FINAL POLISH
   Add at very bottom of style.css
   ========================================= */

.gs-hero,
.gs-hero-video,
.gs-hero-video__content,
.gs-hero__content,
.gs-hero-content{
  font-family: Montserrat, sans-serif !important;
}

.gs-hero-video__inner,
.gs-hero__inner,
.gs-hero-inner{
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Small top label */
.gs-hero-video__subtitle,
.gs-hero__subtitle,
.gs-hero-subtitle{
  font-size: 18px !important;
  line-height: 1.2 !important;
  letter-spacing: .18em !important;
  font-weight: 500 !important;
  margin: 0 0 18px !important;
  color: rgba(255,255,255,.92) !important;
  text-transform: uppercase !important;
}

/* Main heading */
.gs-hero-video__title,
.gs-hero__title,
.gs-hero-title{
  max-width: 1120px !important;
  margin: 0 auto 26px !important;
  font-size: 72px !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  text-wrap: balance !important;
}

/* Description */
.gs-hero-video__text,
.gs-hero__text,
.gs-hero-text{
  max-width: 980px !important;
  margin: 0 auto 34px !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.88) !important;
  text-align: center !important;
}

/* Button row */
.gs-hero-video__buttons,
.gs-hero-buttons,
.gs-hero-cta,
.gs-hero-video .button-group{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-top: 0 !important;
}

/* Reset ugly link look */
.gs-hero-video__buttons a,
.gs-hero-buttons a,
.gs-hero-cta a,
.gs-hero-video .button-group a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 188px !important;
  height: 58px !important;
  padding: 0 28px !important;
  border-radius: 14px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease !important;
}

/* Button 1 - How It Works */
.gs-hero-video__buttons a:first-child,
.gs-hero-buttons a:first-child,
.gs-hero-cta a:first-child{
  background: #f5f5f7 !important;
  color: #111827 !important;
  border-color: rgba(255,255,255,.28) !important;
}

.gs-hero-video__buttons a:first-child:hover,
.gs-hero-buttons a:first-child:hover,
.gs-hero-cta a:first-child:hover{
  background: #ffffff !important;
  color: #111827 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.16) !important;
}

/* Button 2 - Request A Quote */
.gs-hero-video__buttons a:last-child,
.gs-hero-buttons a:last-child,
.gs-hero-cta a:last-child{
  background: #ead084 !important;
  color: #111827 !important;
  border-color: rgba(234,208,132,.55) !important;
}

.gs-hero-video__buttons a:last-child:hover,
.gs-hero-buttons a:last-child:hover,
.gs-hero-cta a:last-child:hover{
  background: #f1d98f !important;
  color: #111827 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.18) !important;
}

/* Make sure hero content sits nicely */
.gs-hero-video__content,
.gs-hero__content,
.gs-hero-content{
  padding-top: 130px !important;
  padding-bottom: 100px !important;
}

/* Large desktop */
@media (min-width: 1600px){
  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 82px !important;
    max-width: 1240px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    font-size: 18px !important;
    max-width: 1040px !important;
  }
}

/* Laptop / normal desktop */
@media (max-width: 1366px){
  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 64px !important;
    max-width: 980px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    max-width: 900px !important;
    font-size: 16px !important;
  }
}

/* Tablet */
@media (max-width: 1024px){
  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content{
    padding-top: 110px !important;
    padding-bottom: 80px !important;
  }

  .gs-hero-video__subtitle,
  .gs-hero__subtitle,
  .gs-hero-subtitle{
    font-size: 15px !important;
    margin-bottom: 14px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 50px !important;
    line-height: 1.08 !important;
    max-width: 860px !important;
    margin-bottom: 20px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    font-size: 15px !important;
    line-height: 1.75 !important;
    max-width: 760px !important;
    margin-bottom: 28px !important;
  }

  .gs-hero-video__buttons a,
  .gs-hero-buttons a,
  .gs-hero-cta a,
  .gs-hero-video .button-group a{
    min-width: 176px !important;
    height: 54px !important;
    font-size: 16px !important;
  }
}

/* Mobile */
@media (max-width: 767px){
  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content{
    padding-top: 90px !important;
    padding-bottom: 60px !important;
  }

  .gs-hero-video__subtitle,
  .gs-hero__subtitle,
  .gs-hero-subtitle{
    font-size: 12px !important;
    letter-spacing: .14em !important;
    margin-bottom: 10px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 34px !important;
    line-height: 1.1 !important;
    letter-spacing: -.03em !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin-bottom: 22px !important;
  }

  .gs-hero-video__buttons,
  .gs-hero-buttons,
  .gs-hero-cta,
  .gs-hero-video .button-group{
    gap: 12px !important;
  }

  .gs-hero-video__buttons a,
  .gs-hero-buttons a,
  .gs-hero-cta a,
  .gs-hero-video .button-group a{
    width: 100% !important;
    max-width: 270px !important;
    min-width: 0 !important;
    height: 52px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }
}
/* =========================================
   HERO FINAL FIX — MATCH TARGET
   Add at very bottom of style.css
   ========================================= */

/* Softer overlay / less dark gradient */
.gs-hero-video__overlay,
.gs-hero-video__bg-overlay,
.gs-hero-overlay {
  background:
    linear-gradient(180deg, rgba(6,12,24,.22) 0%, rgba(6,12,24,.34) 100%),
    radial-gradient(circle at 50% 18%, rgba(70,105,180,.10), rgba(0,0,0,0) 48%) !important;
}

/* Content width + spacing */
.gs-hero-video__inner,
.gs-hero__inner,
.gs-hero-inner {
  max-width: 1220px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Small top label */
.gs-hero-video__subtitle,
.gs-hero__subtitle,
.gs-hero-subtitle {
  font-family: Montserrat, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  letter-spacing: .16em !important;
  font-weight: 500 !important;
  margin: 0 0 14px !important;
  color: rgba(255,255,255,.95) !important;
  text-transform: uppercase !important;
}

/* Main title */
.gs-hero-video__title,
.gs-hero__title,
.gs-hero-title {
  font-family: Montserrat, sans-serif !important;
  max-width: 1080px !important;
  margin: 0 auto 22px !important;
  font-size: 66px !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  text-wrap: balance !important;
}

/* Description */
.gs-hero-video__text,
.gs-hero__text,
.gs-hero-text {
  font-family: Montserrat, sans-serif !important;
  max-width: 920px !important;
  margin: 0 auto 30px !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.88) !important;
  text-align: center !important;
}

/* Buttons row */
.gs-hero-video__buttons,
.gs-hero-buttons,
.gs-hero-cta,
.gs-hero-video .button-group {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  margin-top: 0 !important;
}

/* Base button */
.gs-hero-video__buttons a,
.gs-hero-buttons a,
.gs-hero-cta a,
.gs-hero-video .button-group a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 170px !important;
  height: 56px !important;
  padding: 0 30px !important;
  border-radius: 16px !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}

/* How It Works button */
.gs-hero-video__buttons a:first-child,
.gs-hero-buttons a:first-child,
.gs-hero-cta a:first-child {
  background: #f2f2f4 !important;
  color: #101522 !important;
  border: 1px solid rgba(255,255,255,.38) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12) !important;
}

/* Request A Quote button */
.gs-hero-video__buttons a:last-child,
.gs-hero-buttons a:last-child,
.gs-hero-cta a:last-child {
  background: #ead084 !important;
  color: #101522 !important;
  border: 1px solid rgba(234,208,132,.65) !important;
}

/* Hover */
.gs-hero-video__buttons a:hover,
.gs-hero-buttons a:hover,
.gs-hero-cta a:hover,
.gs-hero-video .button-group a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.16) !important;
}

/* Hero vertical spacing */
.gs-hero-video__content,
.gs-hero__content,
.gs-hero-content {
  padding-top: 120px !important;
  padding-bottom: 95px !important;
}

/* Desktop tweak */
@media (max-width: 1366px) {
  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title {
    font-size: 58px !important;
    max-width: 980px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text {
    font-size: 16px !important;
    max-width: 860px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title {
    font-size: 48px !important;
    max-width: 820px !important;
    margin-bottom: 18px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text {
    font-size: 15px !important;
    margin-bottom: 24px !important;
  }

  .gs-hero-video__buttons a,
  .gs-hero-buttons a,
  .gs-hero-cta a,
  .gs-hero-video .button-group a {
    min-width: 160px !important;
    height: 54px !important;
    font-size: 15px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .gs-hero-video__overlay,
  .gs-hero-video__bg-overlay,
  .gs-hero-overlay {
    background:
      linear-gradient(180deg, rgba(6,12,24,.26) 0%, rgba(6,12,24,.38) 100%),
      radial-gradient(circle at 50% 18%, rgba(70,105,180,.08), rgba(0,0,0,0) 48%) !important;
  }

  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content {
    padding-top: 88px !important;
    padding-bottom: 56px !important;
  }

  .gs-hero-video__subtitle,
  .gs-hero__subtitle,
  .gs-hero-subtitle {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title {
    font-size: 34px !important;
    line-height: 1.1 !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text {
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }

  .gs-hero-video__buttons,
  .gs-hero-buttons,
  .gs-hero-cta,
  .gs-hero-video .button-group {
    gap: 12px !important;
  }

  .gs-hero-video__buttons a,
  .gs-hero-buttons a,
  .gs-hero-cta a,
  .gs-hero-video .button-group a {
    width: auto !important;
    min-width: 148px !important;
    max-width: none !important;
    height: 50px !important;
    padding: 0 22px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
  }
}
/* ================================
   HERO BUTTON FIX (FORCE STYLE)
================================ */

.gs-hero a,
.gs-hero-video a {
  text-decoration: none !important;
}

/* button container */
.gs-hero-buttons,
.gs-hero-video__buttons,
.gs-hero .button-group{
  display:flex !important;
  justify-content:center !important;
  gap:18px !important;
  margin-top:28px !important;
}

/* base button */
.gs-hero-buttons a,
.gs-hero-video__buttons a,
.gs-hero .button-group a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:16px 34px !important;
  border-radius:14px !important;
  font-family:Montserrat,sans-serif !important;
  font-weight:700 !important;
  font-size:16px !important;
  min-width:190px !important;
  transition:all .25s ease !important;
  border:none !important;
}

/* HOW IT WORKS button */
.gs-hero-buttons a:first-child,
.gs-hero-video__buttons a:first-child,
.gs-hero .button-group a:first-child{
  background:#efefef !important;
  color:#111827 !important;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.65),
    0 6px 16px rgba(0,0,0,.18) !important;
}

/* REQUEST QUOTE button */
.gs-hero-buttons a:last-child,
.gs-hero-video__buttons a:last-child,
.gs-hero .button-group a:last-child{
  background:linear-gradient(145deg,#f3d78a,#e5c373) !important;
  color:#111827 !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(255,255,255,.35) !important;
}

/* hover */
.gs-hero-buttons a:hover,
.gs-hero-video__buttons a:hover,
.gs-hero .button-group a:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 14px 28px rgba(0,0,0,.25) !important;
}


/* ================================
   VIDEO GRADIENT FIX
================================ */

.gs-hero-video__overlay,
.gs-hero-overlay,
.gs-hero-video::after{
  background:
  linear-gradient(
    180deg,
    rgba(8,15,30,.35) 0%,
    rgba(8,15,30,.45) 100%
  ),
  radial-gradient(
    circle at 50% 10%,
    rgba(70,110,200,.18),
    rgba(0,0,0,0) 55%
  ) !important;
}


/* ================================
   HERO TEXT SPACING
================================ */

.gs-hero-title,
.gs-hero-video__title{
  font-size:64px !important;
  line-height:1.05 !important;
  letter-spacing:-0.03em !important;
  margin-bottom:22px !important;
}

.gs-hero-text,
.gs-hero-video__text{
  max-width:900px !important;
  margin:0 auto 26px !important;
  font-size:17px !important;
  line-height:1.7 !important;
}


/* ================================
   MOBILE BUTTON FIX
================================ */

@media(max-width:768px){

.gs-hero-buttons a,
.gs-hero-video__buttons a{
  padding:14px 26px !important;
  font-size:15px !important;
  min-width:150px !important;
}

.gs-hero-title{
  font-size:36px !important;
}

}
/* =========================================================
   GREENSTONE HERO — SHOPIFY MATCH
   Add at the VERY END of style.css
   ========================================================= */

/* Main wrap */
.gs-hero,
.gs-hero-video{
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  background: #0B1220 !important;
}

/* Video / media */
.gs-hero-video__media,
.gs-hero-videoWrap,
.gs-hero__media{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  background: #0B1220 !important;
  z-index: 1 !important;
}

.gs-hero-video video,
.gs-hero-video iframe,
.gs-hero video,
.gs-hero iframe,
.gs-hero-video__media video,
.gs-hero-video__media iframe,
.gs-hero-videoWrap video,
.gs-hero-videoWrap iframe{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Overlay — same style feel as Shopify */
.gs-hero-video__overlay,
.gs-hero-video__bg-overlay,
.gs-hero-overlay{
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
  background:
    radial-gradient(1200px 420px at 50% -40%, rgba(127,177,255,0.24), transparent 60%),
    radial-gradient(900px 380px at 85% 10%, rgba(244,213,141,0.16), transparent 55%),
    linear-gradient(135deg, rgba(7,11,20,.42) 0%, rgba(11,18,32,.28) 45%, rgba(15,26,43,.34) 100%) !important;
}

/* Content area */
.gs-hero-video__content,
.gs-hero__content,
.gs-hero-content{
  position: relative !important;
  z-index: 3 !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 60px 22px !important;
  text-align: center !important;
}

.gs-hero-video__inner,
.gs-hero__inner,
.gs-hero-inner{
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

/* Small fade-up feel */
.gs-hero-video__inner,
.gs-hero__inner,
.gs-hero-inner{
  animation: gsHeroFadeUp .55s ease both !important;
}

.gs-hero-video__buttons,
.gs-hero-buttons,
.gs-hero-cta,
.gs-hero-video .button-group{
  animation: gsHeroFadeUp .65s ease both !important;
  animation-delay: .08s !important;
}

@keyframes gsHeroFadeUp{
  from{
    opacity: 0;
    transform: translateY(14px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtitle */
.gs-hero-video__subtitle,
.gs-hero__subtitle,
.gs-hero-subtitle{
  margin: 0 0 10px !important;
  font-size: 14px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.82) !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 500 !important;
}

/* Title */
.gs-hero-video__title,
.gs-hero__title,
.gs-hero-title{
  margin: 0 0 12px !important;
  font-size: clamp(26px, 3.2vw, 44px) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  color: #fff !important;
  font-family: Montserrat, sans-serif !important;
  max-width: 980px !important;
  text-wrap: balance !important;
}

/* Text */
.gs-hero-video__text,
.gs-hero__text,
.gs-hero-text{
  margin: 0 auto 26px !important;
  max-width: 820px !important;
  color: rgba(255,255,255,.82) !important;
  line-height: 1.6 !important;
  font-size: 16px !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 400 !important;
}

.gs-hero-video__text p,
.gs-hero__text p,
.gs-hero-text p{
  margin: 0 0 10px !important;
}

.gs-hero-video__text p:last-child,
.gs-hero__text p:last-child,
.gs-hero-text p:last-child{
  margin-bottom: 0 !important;
}

/* Button row */
.gs-hero-video__buttons,
.gs-hero-buttons,
.gs-hero-cta,
.gs-hero-video .button-group{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-top: 0 !important;
}

/* Kill ugly blue-link styles */
.gs-hero a,
.gs-hero-video a{
  text-decoration: none !important;
}

/* Base button */
.gs-hero-video__buttons a,
.gs-hero-buttons a,
.gs-hero-cta a,
.gs-hero-video .button-group a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 26px !important;
  min-width: 188px !important;
  min-height: 52px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-family: Montserrat, sans-serif !important;
  text-decoration: none !important;
  user-select: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.gs-hero-video__buttons a:hover,
.gs-hero-buttons a:hover,
.gs-hero-cta a:hover,
.gs-hero-video .button-group a:hover{
  transform: translateY(-1px) !important;
}

.gs-hero-video__buttons a:active,
.gs-hero-buttons a:active,
.gs-hero-cta a:active,
.gs-hero-video .button-group a:active{
  transform: scale(0.96) !important;
}

/* How It Works = white primary */
.gs-hero-video__buttons a:first-child,
.gs-hero-buttons a:first-child,
.gs-hero-cta a:first-child,
.gs-hero-video .button-group a:first-child{
  background: rgba(255,255,255,0.92) !important;
  color: #0B1220 !important;
  border-color: rgba(255,255,255,0.92) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}

/* Request A Quote = gold */
.gs-hero-video__buttons a:last-child,
.gs-hero-buttons a:last-child,
.gs-hero-cta a:last-child,
.gs-hero-video .button-group a:last-child{
  border-color: rgba(244,213,141,0.55) !important;
  background: linear-gradient(135deg, rgba(244,213,141,0.95), rgba(255,229,170,0.90)) !important;
  color: #0B1220 !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}

/* Desktop tuning */
@media (min-width: 1200px){
  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content{
    min-height: 620px !important;
    padding: 60px 22px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 44px !important;
    max-width: 980px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    font-size: 16px !important;
    max-width: 820px !important;
  }
}

/* Tablet */
@media (max-width: 1024px){
  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content{
    min-height: 560px !important;
    padding: 52px 18px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 38px !important;
    line-height: 1.14 !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    font-size: 15px !important;
  }
}

/* Mobile */
@media (max-width: 768px){
  .gs-hero-video__content,
  .gs-hero__content,
  .gs-hero-content{
    min-height: 560px !important;
    padding: 44px 16px !important;
  }

  .gs-hero-video__subtitle,
  .gs-hero__subtitle,
  .gs-hero-subtitle{
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }

  .gs-hero-video__title,
  .gs-hero__title,
  .gs-hero-title{
    font-size: 32px !important;
    line-height: 1.14 !important;
    margin-bottom: 12px !important;
  }

  .gs-hero-video__text,
  .gs-hero__text,
  .gs-hero-text{
    font-size: 15px !important;
    margin-bottom: 22px !important;
    max-width: 100% !important;
  }

  .gs-hero-video__buttons a,
  .gs-hero-buttons a,
  .gs-hero-cta a,
  .gs-hero-video .button-group a{
    width: min(320px, 92vw) !important;
    min-width: 0 !important;
  }
}
/* =====================================================
   FORCE HERO LINKS INTO REAL BUTTON BOXES
   Add at VERY END of style.css
   ===================================================== */

/* target hero button row and common WP/Gutenberg button wrappers */
.gs-hero .wp-block-buttons,
.gs-hero-video .wp-block-buttons,
.gs-hero .elementor-button-wrapper,
.gs-hero-video .elementor-button-wrapper,
.gs-hero .hero-buttons,
.gs-hero-video .hero-buttons,
.gs-hero .button-group,
.gs-hero-video .button-group{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:18px !important;
  flex-wrap:wrap !important;
}

/* target the actual links/buttons */
.gs-hero .wp-block-button__link,
.gs-hero-video .wp-block-button__link,
.gs-hero .hero-buttons a,
.gs-hero-video .hero-buttons a,
.gs-hero .button-group a,
.gs-hero-video .button-group a,
.gs-hero .wp-block-buttons a,
.gs-hero-video .wp-block-buttons a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:250px !important;
  min-height:64px !important;
  padding:0 34px !important;
  border-radius:18px !important;
  font-family:Montserrat,sans-serif !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1 !important;
  text-decoration:none !important;
  border:2px solid transparent !important;
  box-shadow:none !important;
  transition:all .2s ease !important;
}

/* first button = white */
.gs-hero .wp-block-buttons > .wp-block-button:first-child .wp-block-button__link,
.gs-hero-video .wp-block-buttons > .wp-block-button:first-child .wp-block-button__link,
.gs-hero .hero-buttons a:first-child,
.gs-hero-video .hero-buttons a:first-child,
.gs-hero .button-group a:first-child,
.gs-hero-video .button-group a:first-child,
.gs-hero .wp-block-buttons a:first-child,
.gs-hero-video .wp-block-buttons a:first-child{
  background:#f3f3f4 !important;
  color:#101522 !important;
  border-color:rgba(255,255,255,.6) !important;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.18),
    0 8px 20px rgba(0,0,0,.18) !important;
}

/* second button = gold */
.gs-hero .wp-block-buttons > .wp-block-button:last-child .wp-block-button__link,
.gs-hero-video .wp-block-buttons > .wp-block-button:last-child .wp-block-button__link,
.gs-hero .hero-buttons a:last-child,
.gs-hero-video .hero-buttons a:last-child,
.gs-hero .button-group a:last-child,
.gs-hero-video .button-group a:last-child,
.gs-hero .wp-block-buttons a:last-child,
.gs-hero-video .wp-block-buttons a:last-child{
  background:linear-gradient(135deg,#f2d687 0%, #e6c675 100%) !important;
  color:#101522 !important;
  border-color:rgba(242,214,135,.55) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.2),
    0 10px 22px rgba(0,0,0,.2) !important;
}

/* hover */
.gs-hero .wp-block-button__link:hover,
.gs-hero-video .wp-block-button__link:hover,
.gs-hero .hero-buttons a:hover,
.gs-hero-video .hero-buttons a:hover,
.gs-hero .button-group a:hover,
.gs-hero-video .button-group a:hover,
.gs-hero .wp-block-buttons a:hover,
.gs-hero-video .wp-block-buttons a:hover{
  transform:translateY(-2px) !important;
  text-decoration:none !important;
}

/* kill ugly blue link styles */
.gs-hero .wp-block-button__link:link,
.gs-hero .wp-block-button__link:visited,
.gs-hero-video .wp-block-button__link:link,
.gs-hero-video .wp-block-button__link:visited,
.gs-hero .wp-block-buttons a:link,
.gs-hero .wp-block-buttons a:visited,
.gs-hero-video .wp-block-buttons a:link,
.gs-hero-video .wp-block-buttons a:visited{
  color:inherit !important;
  text-decoration:none !important;
}

/* softer overlay on video */
.gs-hero-video__overlay,
.gs-hero-overlay,
.gs-hero-video__bg-overlay{
  background:
    radial-gradient(1200px 420px at 50% -40%, rgba(127,177,255,0.18), transparent 60%),
    radial-gradient(900px 380px at 85% 10%, rgba(244,213,141,0.12), transparent 55%),
    linear-gradient(135deg, rgba(7,11,20,.28) 0%, rgba(11,18,32,.18) 45%, rgba(15,26,43,.22) 100%) !important;
}

/* mobile */
@media (max-width:768px){
  .gs-hero .wp-block-button__link,
  .gs-hero-video .wp-block-button__link,
  .gs-hero .hero-buttons a,
  .gs-hero-video .hero-buttons a,
  .gs-hero .button-group a,
  .gs-hero-video .button-group a,
  .gs-hero .wp-block-buttons a,
  .gs-hero-video .wp-block-buttons a{
    min-width:170px !important;
    min-height:54px !important;
    padding:0 22px !important;
    font-size:16px !important;
    border-radius:16px !important;
  }
}
/* REAL HERO BUTTON BOXES */
.gs-hero-btnrow{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:18px !important;
  flex-wrap:wrap !important;
  margin-top:28px !important;
}

.gs-hero-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:250px !important;
  min-height:64px !important;
  padding:0 34px !important;
  border-radius:18px !important;
  font-family:Montserrat,sans-serif !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1 !important;
  text-decoration:none !important;
  transition:all .2s ease !important;
}

.gs-hero-btn--white{
  background:#f3f3f4 !important;
  color:#101522 !important;
  border:2px solid rgba(255,255,255,.65) !important;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.18),
    0 8px 20px rgba(0,0,0,.18) !important;
}

.gs-hero-btn--gold{
  background:linear-gradient(135deg,#f2d687 0%, #e6c675 100%) !important;
  color:#101522 !important;
  border:2px solid rgba(242,214,135,.55) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.2),
    0 10px 22px rgba(0,0,0,.2) !important;
}

.gs-hero-btn:hover{
  transform:translateY(-2px) !important;
}

.gs-hero-video__overlay,
.gs-hero-overlay,
.gs-hero-video__bg-overlay{
  background:
    radial-gradient(1200px 420px at 50% -40%, rgba(127,177,255,0.18), transparent 60%),
    radial-gradient(900px 380px at 85% 10%, rgba(244,213,141,0.12), transparent 55%),
    linear-gradient(135deg, rgba(7,11,20,.28) 0%, rgba(11,18,32,.18) 45%, rgba(15,26,43,.22) 100%) !important;
}

@media (max-width:768px){
  .gs-hero-btn{
    min-width:170px !important;
    min-height:54px !important;
    padding:0 22px !important;
    font-size:16px !important;
    border-radius:16px !important;
  }
}
@media (max-width: 768px){

  .fintech-header{
    display:grid !important;
    grid-template-columns: 52px minmax(0,1fr) auto !important;
    align-items:center !important;
    column-gap:8px !important;
    padding:12px 12px !important;
  }

  .fintech-left{
    width:52px !important;
    min-width:52px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
  }

  .fintech-menu-btn{
    width:42px !important;
    height:42px !important;
  }

  .fintech-center{
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  .fintech-logo{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    overflow:hidden !important;
  }

  .fintech-logo-desktop{
    display:none !important;
  }

  .fintech-logo-mobile{
    display:block !important;
    max-width:110px !important;
    width:110px !important;
    height:auto !important;
    margin:0 auto !important;
  }

  .fintech-right{
    min-width:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
  }

  .fintech-btn--cta{
    min-width:unset !important;
    width:auto !important;
    padding:7px 12px !important;
    font-size:10px !important;
    line-height:1 !important;
    border-radius:999px !important;
    white-space:nowrap !important;
  }

  .fintech-sub{
    display:none !important;
  }
}