* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #1e3205;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/*==========================================
        GALLERY SECTION
==========================================*/

.gallery-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(180deg,#240303 0%,#320505 100%);
    overflow:hidden;
}

.gallery-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(#d69a2d 1px,transparent 1px);
    background-size:22px 22px;
    opacity:.08;
}

.gallery-section .container{
    position:relative;
    z-index:2;
}

/*==========================================
        HEADING
==========================================*/

.gallery-heading{
    max-width:760px;
    margin:0 auto 70px;
}

.gallery-heading .sub-title{
    display:inline-block;
    color:#d69a2d;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.gallery-heading h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
    margin-bottom:20px;
}

.gallery-heading h2 span{
    color:#d69a2d;
}

.gallery-heading p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

/*==========================================
        GRID
==========================================*/

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:25px;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    background:#3b0909;

}

.gallery-item.large{

    grid-column:span 2;
    grid-row:span 2;

}

.gallery-item.tall{

    grid-row:span 2;

}

.gallery-item.wide{

    grid-column:span 2;

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;

}

/*==========================================
        OVERLAY
==========================================*/

.gallery-overlay{

    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        rgba(36,3,3,.2),
        rgba(214,154,45,.45)
    );

    opacity:0;
    transition:.45s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

/*==========================================
        PLUS BUTTON
==========================================*/

.gallery-btn{

    width:72px;
    height:72px;
    border:none;
    border-radius:50%;
    background:#d69a2d;
    color:#fff;
    font-size:38px;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.gallery-btn:hover{

    transform:rotate(90deg) scale(1.1);

}

/*==========================================
        LIGHTBOX
==========================================*/

.gallery-lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.94);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.4s;

    z-index:9999;

}

.gallery-lightbox.active{

    opacity:1;
    visibility:visible;

}

.gallery-preview{

    max-width:80%;
    max-height:80vh;
    border-radius:15px;
    border:4px solid #d69a2d;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

}

/*==========================================
        CLOSE
==========================================*/

.gallery-close{

    position:absolute;
    top:35px;
    right:45px;

    color:#fff;
    font-size:48px;
    cursor:pointer;

    transition:.3s;

}

.gallery-close:hover{

    color:#d69a2d;
    transform:rotate(90deg);

}

/*==========================================
        ARROWS
==========================================*/

.gallery-prev,
.gallery-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:#d69a2d;
    color:#fff;

    cursor:pointer;

    font-size:26px;

    transition:.35s;

}

.gallery-prev{

    left:40px;

}

.gallery-next{

    right:40px;

}

.gallery-prev:hover,
.gallery-next:hover{

    background:#fff;
    color:#240303;

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-item.large,
.gallery-item.wide{

    grid-column:span 2;

}

}

@media(max-width:768px){

.gallery-section{

    padding:70px 0;

}

.gallery-heading h2{

    font-size:36px;

}

.gallery-grid{

    grid-template-columns:1fr;
    grid-auto-rows:250px;

}

.gallery-item,
.gallery-item.large,
.gallery-item.tall,
.gallery-item.wide{

    grid-column:auto;
    grid-row:auto;

}

.gallery-preview{

    max-width:92%;

}

.gallery-prev,
.gallery-next{

    width:50px;
    height:50px;

}

.gallery-prev{

    left:10px;

}

.gallery-next{

    right:10px;

}

.gallery-close{

    top:15px;
    right:20px;

}

}
/*=========================================
        PRODUCT SECTION
=========================================*/

.product-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(180deg,#240303 0%,#320505 100%);
    overflow:hidden;
}

.product-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(#d69a2d 1px,transparent 1px);
    background-size:22px 22px;
    opacity:.08;
}

.product-section .container{
    position:relative;
    z-index:2;
}

/*=========================================
            HEADING
=========================================*/

.product-heading{
    max-width:760px;
    margin:0 auto 70px;
}

.product-heading .sub-title{
    display:inline-block;
    color:#d69a2d;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.product-heading h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
    margin-bottom:20px;
}

.product-heading h2 span{
    color:#d69a2d;
}

.product-heading p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:17px;
}

/*=========================================
            PRODUCT CARD
=========================================*/

.product-card{
    position:relative;
    background:#3a0909;
    border:1px solid rgba(214,154,45,.25);
    border-radius:24px;
    overflow:hidden;
    transition:.4s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    border-color:#d69a2d;
    box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.product-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d69a2d,#ffd56d);
}

/*=========================================
            BADGE
=========================================*/

.product-badge{
    position:absolute;
    top:18px;
    right:18px;
    background:#d69a2d;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    z-index:2;
}

/*=========================================
            IMAGE
=========================================*/

.product-img{
    padding:35px;
    background:#2d0606;
    text-align:center;
}

.product-img img{
    width:100%;
    max-width:100%;
    transition:.5s;
}

.product-card:hover .product-img img{
    transform:scale(1.08) rotate(-2deg);
}

/*=========================================
            CONTENT
=========================================*/

.product-content{
    padding:30px;
}

.product-content h3{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
    font-weight:700;
}

.product-content h4{
    color:#d69a2d;
    font-size:30px;
    margin-bottom:18px;
    font-weight:800;
}

.product-content p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:30px;
    min-height:110px;
}

/*=========================================
            BUTTON
=========================================*/

.order-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:55px;
    background:#d69a2d;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.order-btn:hover{
    background:#fff;
    color:#240303;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

.product-heading h2{
    font-size:42px;
}

.product-content p{
    min-height:auto;
}

}

@media(max-width:767px){

.product-section{
    padding:70px 0;
}

.product-heading h2{
    font-size:34px;
}

.product-img{
    padding:25px;
}

.product-content{
    padding:25px;
}

.product-content h3{
    font-size:22px;
}

.product-content h4{
    font-size:26px;
}

}
.top-bar {
  background: #2e0505;
  border-bottom: 1px solid #3a0a0a;
  padding: 0 48px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.top-bar a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s;
}

.top-bar a:hover,
.top-bar a.active {
  color: #fff;
}

header {
  background: #1e3205;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #578224;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.logo-main {
  display: flex;
  align-items: center;
  position: relative;
  background: #FFC633;
  padding: 8px 18px 8px 14px;
  border-radius: 4px;
}

.logo-bof {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.logo-prime {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 14px;
}

.logo-triangle {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-bottom: 13px solid #fff;
  position: absolute;
  top: 6px;
  right: 14px;
}

.contact-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

/* HERO */
.hero {
  position: relative;
  background: #1e3205;
  min-height: calc(100vh - 90px);
  min-height: calc(100dvh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-stripes {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340px;
  height: 340px;
  overflow: hidden;
  z-index: 1;
}

.hero-stripes::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: repeating-linear-gradient(-45deg, #FFC633 0px, #FFC633 18px, transparent 18px, transparent 44px);
  opacity: 0.9;
  clip-path: polygon(42% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  z-index: 2;
}

.globe-outer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.globe-outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.globe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1e3205 0%, rgba(33, 1, 1, 0.5) 30%, rgba(33, 1, 1, 0.1) 60%, transparent 100%);
}

.globe-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(0deg, #1e3205 0%, transparent 100%);
}

.candles {
  display: none;
}

.network-svg {
  display: none;
}

.swoosh {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 48px;
  max-width: 660px;
}

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 800;
  line-height: 1.03;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #6b4e0e 0%, #b8860b 22%, #FFC633 44%, #fff3cf 50%, #FFC633 56%, #b8860b 78%, #6b4e0e 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroTitleSheen 6s linear infinite;
}

@keyframes heroTitleSheen {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 220% center;
  }
}

.hero-title .yellow {
  color: #FFC633;
}

.hero-title .white {
  color: #fff;
  font-weight: 800;
}

.hero-lead {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 540px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: #c9bcbc;
  line-height: 1.5;
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  border: 2px solid #fff;
}

.hero-cta:hover {
  background: transparent;
  color: #fff;
}

/* STATS */
.stats-bar {
  background: #260303;
  border-top: 1px solid #401010;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat+.stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #401010;
}

.stat-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: #FFC633;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

/* ABOUT */
.about-wrap {
  max-width: 1304px;
  margin: 0 auto;
  padding: 100px 48px;
}

.about-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFC633;
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}

.about-inner h2 {
  font-size: clamp(60px, 7vw, 104px);
  font-weight: 700;
  line-height: 1.06;
  color: #FFC633;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.about-inner p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.about-inner p {
  font-size: 19px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 14px;
}

.btn-outline-gold {
  display: inline-block;
  margin-top: 20px;
  border: 2px solid #FFC633;
  color: #FFC633;
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.btn-outline-gold:hover {
  background: #FFC633;
  color: #000;
}

.success-boxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.success-box {
  background: #2e0505;
  border: 1px solid #401010;
  border-left: 3px solid #FFC633;
  padding: 22px 26px;
  position: relative;
  transition: background .2s, transform .25s ease, box-shadow .25s ease;
}

.success-box:hover {
  background: #3c0a0a;
  transform: scale(1.05);
  z-index: 3;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.success-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.success-box p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* SOLUTIONS */
.solutions-wrap {
  background: #ffffff;
  padding: 100px 48px;
}

.solutions-hdr {
  max-width: 1304px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.solutions-hdr h2 {
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 700;
  color: #1e3205;
  letter-spacing: -0.02em;
}

.solutions-hdr h2 em {
  color: #FFC633;
  font-style: normal;
}

.sol-grid {
  max-width: 1304px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sol-card {
  background: #f6efef;
  padding: 46px 38px;
  text-align: center;
  position: relative;
  transition: background .25s, transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.sol-card:hover {
  background: #fffaf0;
  transform: scale(1.06);
  z-index: 3;
  box-shadow: 0 16px 40px rgba(33, 1, 1, 0.16);
}

.sol-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 38px;
  right: 38px;
  height: 2px;
  background: #c9a227;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.sol-card:hover::after {
  transform: scaleX(1);
}

.sol-icon {
  margin-bottom: 22px;
  display: block;
  color: #c9a227;
}

.sol-icon svg {
  width: 34px;
  height: 34px;
  stroke: #c9a227;
}

.sol-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e3205;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.sol-card p {
  font-size: 15px;
  color: #5c3434;
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease;
}

.sol-card:hover p {
  max-height: 240px;
  opacity: 1;
  margin-top: 6px;
}

.sol-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 220px;
  text-align: left;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease;
}

.sol-card:hover .sol-list {
  max-height: 320px;
  opacity: 1;
  margin-top: 10px;
}

.sol-list li {
  font-size: 14.5px;
  font-weight: 600;
  color: #5c3434;
  line-height: 1.5;
  padding: 7px 2px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.sol-list li:last-child {
  border-bottom: none;
}

/* CLIENTS */
.clients-wrap {
  max-width: 1304px;
  margin: 0 auto;
  padding: 100px 48px;
}

.clients-wrap h2 {
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

.clients-wrap>p {
  font-size: 17px;
  color: #fff;
  max-width: 700px;
  line-height: 1.7;
  margin: 0 auto 48px;
  text-align: center;
}

/* CLIENT TABS */
.client-tabs {
  display: flex;
  justify-content: center;
  gap: 2px;
  border-bottom: 1px solid #e7dede;
}

.client-tab {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #9b8585;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 22px 18px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.client-tab:hover {
  color: #1e3205;
}

.client-tab.active {
  color: #b8860b;
  border-bottom-color: #b8860b;
}

.tab-panel {
  margin-top: 40px;
  text-align: center;
  min-height: 66px;
}

.tab-panel-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #5c3434;
  max-width: 640px;
  margin: 0 auto;
  transition: opacity .2s ease;
}

@media (max-width: 760px) {
  .client-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .client-tabs::-webkit-scrollbar {
    display: none;
  }

  .client-tab {
    font-size: 15px;
    padding: 0 16px 14px;
  }

  .tab-panel-desc {
    font-size: 17px;
  }
}

/* ALTERNATING LIGHT PANELS */
.panel-light {
  position: relative;
  z-index: 0;
}

.panel-light::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #ffffff;
  z-index: -1;
}

.about-wrap.panel-light .about-inner h2 {
  background: linear-gradient(90deg, #1e3205 0%, #1e3205 50%, #FFA733 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-wrap.panel-light .about-inner p {
  color: #5c3434;
}

.about-wrap.panel-light .btn-outline-gold {
  border-color: #1e3205;
  color: #1e3205;
}

.about-wrap.panel-light .btn-outline-gold:hover {
  background: #1e3205;
  color: #fff;
}

.about-wrap.panel-light .flow-arrows path {
  stroke: #c9a227;
}

.about-wrap.panel-light .flow-arrows path[fill],
.about-wrap.panel-light .flow-arrows circle {
  fill: #c9a227;
}

.clients-wrap.panel-light h2 {
  background: linear-gradient(90deg, #FFA733 0%, #FFA733 50%, #1e3205 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.clients-wrap.panel-light>p {
  color: #5c3434;
}

.clients-wrap.panel-light .footer-stat-num {
  color: #b8860b;
}

.clients-wrap.panel-light .footer-stats {
  border-top-color: #e7dede;
}

.clients-wrap.panel-light .footer-stat+.footer-stat::before {
  background: #e7dede;
}

/* CONTACT */
.contact-wrap {
  background: #1e3205;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.contact-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 62% 58% at 50% 48%, rgba(38, 3, 3, 0.82) 0%, rgba(38, 3, 3, 0.45) 42%, rgba(38, 3, 3, 0) 74%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1304px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
}

.contact-left h2 em {
  color: #FFC633;
  font-style: normal;
}

.contact-left>p {
  font-size: 16px;
  color: #d8c4c4;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #d8c4c4;
}

.c-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 198, 51, 0.14);
  border: 1px solid #FFC633;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border-radius: 6px;
}

.award-box {
  background: #2e0505;
  border: 1px solid #401010;
  border-left: 3px solid #FFC633;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.award-box strong {
  font-size: 12px;
  color: #FFC633;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.award-box p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.cform {
  background: #1e3205;
  border: 1px solid #6a9b2f;
  padding: 44px;
}

.cform h3 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.fg {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b89a9a;
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  background: #f4eaea;
  border: 1px solid #e0cccc;
  padding: 13px 15px;
  color: #1e3205;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #9a8080;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #FFC633;
  box-shadow: 0 0 0 2px rgba(255, 198, 51, 0.3);
}

textarea {
  resize: vertical;
  min-height: 88px;
}

.sbtn {
  width: 100%;
  background: #FFC633;
  border: none;
  padding: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  transition: opacity .2s;
  margin-top: 6px;
}

.sbtn:hover {
  opacity: 0.85;
}

/* FOOTER */
.footer-stats {
  max-width: 1304px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid #401010;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer-stat {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.footer-stat+.footer-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #401010;
}

.footer-stat-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #FFC633;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

@media (max-width: 760px) {
  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
}

footer {
  background: #1e3205;
  border-top: 1px solid #87c23e;
  padding: 60px 48px 32px;
}

.footer-top {
  max-width: 1304px;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand p {
  font-size: 13px;
  color: #9a8888;
  line-height: 1.7;
  max-width: 290px;
  margin-top: 16px;
}

.fcol h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.fcol ul {
  list-style: none;
}

.fcol li {
  margin-bottom: 11px;
}

.fcol a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color .2s;
}

.fcol a:hover {
  color: #FFC633;
}

.footer-bottom {
  max-width: 1304px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid #87c23e;
}

.disclaimer {
  font-size: 11px;
  color: #2e2e2e;
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal p {
  font-size: 12px;
  color: #2e2e2e;
}

.flegal-links {
  display: flex;
  gap: 22px;
}

.flegal-links a {
  font-size: 12px;
  color: #2e2e2e;
  text-decoration: none;
  transition: color .2s;
}

.flegal-links a:hover {
  color: #666;
}

/* Cookie */
.cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 480px;
  background: #2e0505;
  border: 1px solid #4d1212;
  padding: 22px 24px;
  z-index: 999;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.cookie p {
  margin-bottom: 16px;
}

.cookie a {
  color: #FFC633;
  text-decoration: underline;
}

.cookie-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.ck-accept {
  flex: 1;
  background: #FFC633;
  color: #000;
  border: none;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.ck-accept:hover {
  background: #FFD874;
}

.ck-deny {
  flex: 1;
  background: transparent;
  color: #666;
  border: 1px solid #4d1212;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.ck-deny:hover {
  border-color: #666;
  color: #aaa;
}

.chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #FFC633;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 198, 51, 0.3);
  transition: transform .2s;
}

.chat-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 900px) {

  .top-bar,
  header {
    padding: 0 20px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stripes {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
  }

  .stats-bar,
  .about-inner,
  .sol-grid,
  .client-grid,
  .contact-inner,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-wrap,
  .solutions-wrap,
  .clients-wrap,
  .contact-wrap,
  footer {
    padding: 60px 20px;
  }

  .solutions-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ===================== FULL-SCREEN PANELS ===================== */
html {
  scroll-snap-type: y proximity;
  /* gentle snap; won't trap on tall panels */
  scroll-behavior: smooth;
}

/* each major panel snaps into place */
.hero,
.stats-bar,
.about-wrap,
.solutions-wrap,
.clients-wrap,
.whitelabel-wrap,
.contact-wrap {
  scroll-snap-align: start;
}

/* flow panels: fill the viewport and vertically centre their content */
.about-wrap,
.solutions-wrap,
.clients-wrap,
.whitelabel-wrap,
.contact-wrap {
  min-height: 100vh;
  min-height: 100dvh;
  /* avoids mobile toolbar clipping */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 96px;
  box-sizing: border-box;
}

/* stats keep their 4-column grid, just centred in a full screen */
.stats-bar {
  min-height: 100vh;
  min-height: 100dvh;
  align-content: center;
  padding-top: 96px;
  padding-bottom: 96px;
  box-sizing: border-box;
}

/* nudge hero title / subtitle / CTA toward centre-right (globe is hidden on mobile, so desktop only) */
@media (min-width: 901px) {
  .hero-content {
    margin-left: 8%;
  }
}

/* logo now sits above the hero title */
.hero-content .logo {
  margin-bottom: 30px;
  align-self: flex-start;
}

/* header lost its logo — keep the CONTACT button on the right */
header .contact-btn {
  margin-left: auto;
}

/* main navigation in the header */
.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}

.main-nav a:hover {
  color: #FFC633;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: #FFC633;
  transition: width .2s;
}

.main-nav a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/* Services dropdown submenu */
.main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav .caret {
  font-size: 9px;
  margin-left: 4px;
  vertical-align: middle;
}

.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  min-width: 168px;
  padding: 14px 0 8px;
  background: rgba(45, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}

.main-nav .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown a {
  padding: 10px 24px;
  font-size: 13px;
  white-space: nowrap;
}

.main-nav .dropdown a::after {
  display: none;
}

.main-nav .dropdown a:hover {
  color: #FFC633;
  background: rgba(255, 198, 51, 0.08);
}

/* second panel: "What Are We Offering" above the stats */
.stats-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
}

.offering {
  text-align: center;
}

.offering .section-label {
  font-size: 13px;
  margin-bottom: 28px;
}

.offering-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.offering-item {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 0 16px;
}

.offering-item+.offering-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: #4d1212;
}

@media (max-width: 900px) {

  .offering-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* CONTACT now sits beside FIND OUT MORE in the hero */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* frosted-glass buttons with 3D depth that recall the gold accent on hover */
.hero-cta-row .hero-cta,
.hero-cta-row .contact-btn,
.btn-outline-gold,
.sbtn,
.whitelabel-cta {
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.45),
    0 2px 5px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -3px 8px rgba(0, 0, 0, 0.35);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.hero-cta-row .hero-cta:hover,
.hero-cta-row .contact-btn:hover,
.btn-outline-gold:hover,
.sbtn:hover,
.whitelabel-cta:hover {
  color: #FFC633;
  opacity: 1;
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 198, 51, 0.32), rgba(255, 198, 51, 0.08));
  border-color: #FFC633;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 198, 51, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25);
}

.hero-cta-row .hero-cta:active,
.hero-cta-row .contact-btn:active,
.btn-outline-gold:active,
.sbtn:active,
.whitelabel-cta:active {
  transform: translateY(1px);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.45),
    inset 0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* solid gold SEND MESSAGE button */
.sbtn {
  color: #1e3205;
  background: #FFC633;
  border: 1px solid #FFC633;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), 0 0 0 rgba(255, 198, 51, 0);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.sbtn:hover {
  color: #1e3205;
  background: #ffd24d;
  border-color: #ffd24d;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 198, 51, 0.45);
}

.sbtn:active {
  background: #e6b22d;
  border-color: #e6b22d;
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.about-inner {
  position: relative;
}

.flow-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

@media (max-width: 900px) {
  .flow-arrows {
    display: none;
  }
}


/* <  !-- CLIENT TYPE GATE--> */
.client-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 1, 1, .8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 1;
  transition: opacity .35s ease;
}

.client-gate.cg-hidden {
  opacity: 0;
  pointer-events: none;
}

.client-gate-card {
  background: #1e3205;
  border: 1px solid rgba(255, 198, 51, .35);
  border-radius: 14px;
  padding: 72px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cg-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.client-gate-logo {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 auto 40px;
}

.client-gate-card h2 {
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.client-gate-card p {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 44px;
}

.client-gate-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.cg-divider {
  flex: 0 0 auto;
  width: 1px;
  height: 80px;
  align-self: center;
  background: rgba(255, 198, 51, .35);
}

.cg-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45), 0 2px 5px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 8px rgba(0, 0, 0, 0.35);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.cg-btn:hover {
  color: #FFC633;
  opacity: 1;
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 198, 51, 0.32), rgba(255, 198, 51, 0.08));
  border-color: #FFC633;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 198, 51, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -3px 8px rgba(0, 0, 0, 0.25);
}

.cg-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45), inset 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media(max-width:460px) {
  .client-gate-btns {
    flex-direction: column;
  }

  .cg-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}




/* why bof prime */
.why-wrap {
  background: #1e3205;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 62% 58% at 50% 48%, rgba(33, 1, 1, 0.82) 0%, rgba(33, 1, 1, 0.45) 42%, rgba(33, 1, 1, 0) 74%);
}

.why-inner {
  position: relative;
  z-index: 2;
  max-width: 1304px;
  margin: 0 auto;
  width: 100%;
}

.why-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.why-hdr h2 {
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 38%, #FFC633 62%, #b8860b 82%, #8a6608 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

.why-hdr h2 em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.why-carousel {
  position: relative;
}

.why-viewport {
  overflow: hidden;
}

.why-track {
  display: flex;
  gap: 14px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.why-card {
  flex: 0 0 auto;
  width: calc((100% - 28px)/3);
  box-sizing: border-box;
  background: #2b4808;
  padding: 64px 36px;
  position: relative;
  transition: background .25s ease;
  cursor: pointer;
}

.why-card:hover {
  background: #551c1c;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: #FFC633;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-num {
  font-size: 12px;
  font-weight: 700;
  color: #FFC633;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.why-card p {
  font-size: 14px;
  color: #cbb3b3;
  line-height: 1.6;
  margin: 0;
}

.why-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 198, 51, 0.4);
  background: rgba(33, 1, 1, 0.55);
  color: #FFC633;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s, border-color .2s, color .2s;
}

.why-arrow:hover {
  background: #FFC633;
  color: #1e3205;
  border-color: #FFC633;
}

.why-prev {
  left: -18px;
}

.why-next {
  right: -18px;
}

.why-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.why-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 198, 51, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.why-dot.active {
  background: #FFC633;
  transform: scale(1.3);
}

@media(max-width:980px) {
  .why-card {
    width: calc((100% - 14px)/2);
  }
}

@media(max-width:620px) {
  .why-card {
    width: 100%;
  }

  .why-wrap {
    padding: 60px 20px;
  }

  .why-arrow {
    display: none;
  }
}




    /* Hide Hamburger on Desktop */

.nav-toggle{
    display:none;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    z-index:1200;
}

.nav-toggle span{
    display:block;
    width:28px;
    height:2px;
    background:#fff;
    margin:6px auto;
    transition:.35s;
}

/* Active Icon */

.nav-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
    opacity:0;
}

.nav-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}


/* Overlay */

.nav-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:998;

}

/* .nav-overlay.active{

    opacity:1;
    visibility:visible;

} */
header.scrolled {
  background: #1e3205;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  position: fixed;
  width: 100%;
}


/* Mobile */

@media(max-width:991px){

.nav-toggle{
    display:block;
}
.innwnnav {
  width: 300px!important;
  justify-content: center!important;
  padding-right: 0!important;
}
  .mobile-nav {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 300px;
    height: 400px;
    background: #2d0202;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: .45s;
    z-index: 999;
    transform: translate(0%, 0%);
    left: auto;
  }

.mobile-nav.nav-open{

    right:0;

}

.mobile-nav a{

    color:#fff;
    font-size:18px;
    text-decoration:none;
    letter-spacing:2px;
    text-transform:uppercase;

}

body.menu-open{

    overflow:hidden;

}


}

.mobile-nav a {
  display: block !important;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}

.mobile-nav  .nav-cta {
  border: 2px solid #fff;
  color: #fff;
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.innwnnav {
  width: 100%;
  justify-content: right;
  padding-right: 70px;
}




 .eco-wrap {
      background: #1e3205;
      padding: 100px 48px;
      position: relative;
      scroll-snap-align: start;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eco-inner {
      max-width: 1304px;
      margin: 0 auto;
      width: 100%;
      text-align: center;
    }

    .eco-hdr h2 {
      font-size: clamp(52px, 6.4vw, 92px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.04;
      margin: 0 0 22px;
      background: linear-gradient(100deg, #ffffff 0%, #ffffff 38%, #FFC633 62%, #b8860b 82%, #8a6608 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .eco-hdr h2 em {
      font-style: normal;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .eco-intro {
      font-size: 17px;
      color: #cbb3b3;
      line-height: 1.7;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .eco-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      text-align: left;
    }

    .eco-card {
      background: #2b4808;
      padding: 52px 40px;
      position: relative;
      transition: background .25s ease;
    }

    .eco-card:hover {
      background: #2b4808;
    }

    .eco-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 40px;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #FFC633, #d99e1f);
    }

    .eco-name {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin: 26px 0 12px;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .eco-logo {
      height: 38px;
      width: auto;
      display: block;
      margin: 24px 0 16px;
    }

    .eco-logo-pay {
      height: 46px;
      width: auto;
      display: block;
      margin: 20px 0 16px;
    }

    .eco-desc {
      font-size: 15px;
      color: #cbb3b3;
      line-height: 1.6;
      margin: 0;
    }

    .eco-link {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 198, 51, 0.45);
      transition: color .2s, border-color .2s;
    }

    .eco-link:hover {
      color: #FFC633;
      border-bottom-color: #FFC633;
    }

    .eco-foot {
      font-size: 22px;
      color: #e9d9d9;
      line-height: 1.6;
      max-width: 880px;
      margin: 54px auto 0;
    }

    @media(max-width:860px) {
      .eco-grid {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:620px) {
      .eco-wrap {
        padding: 60px 20px;
      }
    }



     .whitelabel-wrap {
      background: #1e3205;
      padding: 96px 48px;
      position: relative;
      overflow: hidden;
    }

    .wl-wave {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 0;
      pointer-events: none;
    }

    .whitelabel-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: radial-gradient(ellipse 62% 58% at 50% 48%, rgba(33, 1, 1, 0.82) 0%, rgba(33, 1, 1, 0.45) 42%, rgba(33, 1, 1, 0) 74%);
    }

    .whitelabel-inner {
      max-width: 980px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .whitelabel-inner h2 {
      font-size: clamp(52px, 6.4vw, 92px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.04;
      margin: 0 0 12px;
      text-shadow: 0 2px 18px rgba(20, 0, 0, 0.65);
    }

    .whitelabel-inner h2 em {
      color: #FFC633;
      font-style: normal;
    }

    .whitelabel-inner p {
      font-size: 17px;
      color: #f3e9e9;
      line-height: 1.7;
      margin: 0 auto 14px;
      max-width: 960px;
      text-shadow: 0 1px 12px rgba(20, 0, 0, 0.7);
    }

    .whitelabel-cta {
      display: inline-block;
      margin-top: 18px;
    }

    .wl-shot {
      margin: 42px auto 0;
      max-width: 1220px;
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 198, 51, 0.22);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
      position: relative;
      z-index: 2;
      max-height: 64vh;
    }

    .wl-shot img {
      display: block;
      width: 100%;
      height: auto;
    }

    .wl-statement {
      max-width: 1000px;
      width: 100%;
      margin: 8px auto 0;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .wl-statement p {
      font-size: clamp(19px, 2.1vw, 25px);
      line-height: 1.5;
      color: #f0e2e2;
      font-weight: 500;
      margin: 0 0 6px;
      letter-spacing: -0.01em;
    }

    .wl-statement p:last-child {
      margin-bottom: 0;
    }

    .wl-statement .g {
      color: #FFC633;
      font-weight: 700;
    }

    @media(max-width:760px) {
      .whitelabel-wrap {
        padding: 48px 20px;
      }

      .whitelabel-inner p {
        font-size: 16px;
      }

      .wl-statement p {
        font-size: 19px;
      }
    }

    .whitelabel-inner h2,
    .contact-left h2 {
      background: linear-gradient(100deg, #ffffff 0%, #ffffff 38%, #FFC633 62%, #b8860b 82%, #8a6608 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      text-shadow: none;
    }

    .whitelabel-inner h2 em,
    .contact-left h2 em {
      -webkit-text-fill-color: transparent;
      color: transparent;
    }





header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.35s ease;
}

header.scrolled{
    background:#1e3205;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
