:root{
  --charcoal: #2b2b2b;
  --brown: #5c4438;
  --light: #F2E9E4;
  --accent-gold: #caa55a;
  --accent-teal: #4fb3a1;
  --accent-bronze: #a76b43;
  --muted: #dcd7d2;
}
*{box-sizing:border-box}
html, body {
  padding: 0;
  margin: 0;
  font-family: 'Alkatra', sans-serif;
  background-color: var(--charcoal);
  color: var(--light);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

header {
  background: rgba(43,43,43,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

header.shrink {
  padding: 8px 50px;
  background: rgba(30,30,30,0.98);
}

header img {
  height: 64px;   
  width: 208px;   
  overflow: hidden;
  object-fit: cover;
  transition: all 0.3s ease;
}

header.shrink img {
  height: 50px;   
  width: 160px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-btn {
  display: none; 
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #efefef;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  position: relative;
font-family: sans-serif;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #a0765b;
  opacity: 0.05; 
  transition: width 0.6s ease, opacity 0.3s ease 0.05s; 
}

nav a:hover::after {
  width: 100%;
  opacity: 1; 
}

nav a.active.animate::after {
  width: 100%;
  opacity: 1; 
}

.section-1 img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  object-fit: cover;
  filter: grayscale(60%);
}
.section-1 { position: relative; }

.s1-div1 {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  max-width: 90%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 22px 36px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  color: var(--light);
}
.s1-div1 h1 {
  font-family: 'Bruno Ace SC', sans-serif;
  font-size: 46px;
  color: var(--light);
  line-height:1.05;
  margin:0 0 12px 0;
}
.hero-cta{
  display:inline-block;
  font-family:'Bruno Ace SC', sans-serif;
  font-weight:700;
  border:2px solid var(--light);
  color:var(--light);
  text-decoration:none;
  padding:10px 20px;
  font-size:16px;
  border-radius:8px;
  background:rgba(255,255,255,0.04);
  transform: perspective(200px) scale(0.94);
  transition: all 0.28s ease;
}
.hero-cta:hover{ transform: rotate(0deg) scale(1.03); background: rgba(170,120,80,0.14); color:#FFF8E7}


.section-pain{
  background: linear-gradient(180deg, rgba(43,43,43,0.0), rgba(43,43,43,0.02));
  padding: 18px 16px;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pain-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  padding:8px;
}
.pain-text h2{
  font-family:'Fugaz One', sans-serif;
  font-size:26px;
  margin:0 0 6px 0;
  color:var(--light);
}
.pain-text .muted{
  margin:0 0 10px 0;
  color:var(--muted);
  font-size:14px;
  max-width:560px;
  line-height:1.45;
}
.btn-primary{
  display:inline-block;
  padding:10px 18px;
  border-radius:8px;
  background: linear-gradient(145deg, rgba(202,165,90,0.95), rgba(167,107,67,0.9));
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-family:'Fugaz One', sans-serif;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}
.btn-primary.outline{
  background:transparent;
  border:2px solid rgba(255,255,255,0.08);
  color:var(--light);
}
.btn-primary:hover{ transform: translateY(-3px) }


.pain-visual{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  min-width:180px;
  max-width:260px;
  padding:6px;
  position:relative;
}
.shop-silhouette{
  width:120px;
  height:100px;
  opacity:0.9;
  filter: saturate(0.6) grayscale(20%);
  transform: translateY(4px);
  border-radius:6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.pain-counter{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--light);
}
.pain-counter .count{
  font-family: 'Fugaz One', sans-serif;
  font-size:34px;
  display:inline-block;
  margin-right:2px;
}
.pain-counter .percent{
  font-family: 'Fugaz One', sans-serif;
  font-size:20px;
  opacity:0.9;
}
.counter-label{
  font-size:11px;
  color:var(--muted);
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:0.9px;
}

.section-growth{
  background: var(--brown);
  padding: 36px 16px 56px;
  text-align:center;
  position:relative;
}
.section-growth h2{
  margin: 6px 0 18px 0;
  font-family: 'Fugaz One', sans-serif;
  font-size: 40px;
  color: var(--light);
}
.steps-container{
  max-width:1200px;
  margin: 16px auto 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  align-items:stretch;
  padding: 0 8px;
}


.step-card{
  background: linear-gradient(145deg, rgba(82,60,51,0.85), rgba(92,68,56,0.95));
  border-radius:12px;
  padding:18px;
  text-align:left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(0,0,0,0.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:230px;
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  animation: fadeUp 0.6s forwards;
}


.step-card::before{
  content: '';
  width:6px;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  border-top-left-radius:12px;
  border-bottom-left-radius:12px;
}
.step-card .step-icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: rgba(255,255,255,0.03);
  color: var(--light);
}
.step-card h3{
  margin:0;
  font-family:'Fugaz One', sans-serif;
  font-size:20px;
  color:var(--light);
}
.step-sub{
  margin:0;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
  text-transform:none;
}
.step-body{
  margin-top:6px;
  color:var(--light);
  font-size:15px;
  line-height:1.45;
  font-family:'Alkatra', sans-serif;
  margin-bottom:auto;
}


.accent-gold::before { background: linear-gradient(180deg, var(--accent-gold), #b58b47); }
.accent-teal::before { background: linear-gradient(180deg, var(--accent-teal), #3b9b86); }
.accent-bronze::before { background: linear-gradient(180deg, var(--accent-bronze), #925c3e); }


.step-card:nth-child(1){ animation-delay: 0.12s; }
.step-card:nth-child(2){ animation-delay: 0.26s; }
.step-card:nth-child(3){ animation-delay: 0.40s; }

.step-card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}


@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}


.section-3{
  background-color: #2d2d2d;
  text-align: center;
  padding: 10px;
  max-width: 100%;
  align-items: center;
  padding-bottom: 50px;
}
.section-3 h2{
  margin-top: 25px;
  font-family: 'Fugaz One';
  font-size: 40px;
  color: var(--light);
}
.section-3-grid{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
  padding-bottom: 50px;
  margin:0 auto;
  max-width:1200px;
  padding: 0 8px;
}
.section-3-item{
overflow: hidden;
  flex: 0 0 200px;
  height: 200px;
  border: 3px solid #5C4438;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.section-3-item:hover{ transform: scale(1.03) }
.section-3-item img{ width:200px; height:200px; object-fit:cover; overflow: hidden;}


.section-4{
  background-color: #38505C;
  text-align:center;
  padding-bottom:40px;
  padding: 10px;
  max-width:100%;
}
.section-4 h2{ font-family:'Fugaz One'; font-size:38px; color:var(--light); margin:6px 0; }
.section-4 p{ font-family:'Alkatra'; color:var(--light); font-size:18px; max-width:900px; margin:10px auto 0; }


.site-footer{
  background-color: var(--brown);
  color: #F5F5F5;
  font-family: sans-serif;
  padding: 40px 20px 5px;
  max-width: 100%;
}
.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  text-align:left;
  gap:12px;
}
.footer-section h4{ margin-bottom:10px; font-size:16px; color:#313131; }
.footer-section a{ display:block; color:#F5F5F5; text-decoration:none; margin:5px 0; font-size:14px; }
.footer-section a:hover{ color: #2b2b2b; }
.footer-logo img{ width:160px; }
.footer-contact p{ margin:5px 0; font-size:14px; }
.footer-social a img{ width:25px; margin-right:10px; vertical-align:middle; }
.footer-bottom{ text-align:center; margin-top:30px; font-size:12px; color:#CCCCCC; }


@media (max-width: 1200px){
  .s1-div1 { left: 74%; }
  .s1-div1 h1 { font-size:36px; }
  .hero-cta { padding:10px 18px; font-size:15px; }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
 nav {
    position: relative; 
  }

  .nav-links {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
    background-color: #222;
    padding: 0 10px; 
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
	min-width: 150px;
    z-index: 1000;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-links.open {
    max-height: 500px; 
    padding: 10px;     
  }

  .nav-btn {
    display: block;
    background: none;
    border: 2px solid #efefef;
    color: #efefef;
    font-size: 18px;
    padding: 6px 12px;
    cursor: pointer;
	}
	nav a {
	  font-size: 16px;
	}
  .pain-inner { flex-direction: column; gap:12px; align-items:flex-start; }
  .pain-visual { align-self:flex-start; }
  .s1-div1 { left:70%; padding:14px 18px; }
  .s1-div1 h1 { font-size:28px; }
  .steps-container { grid-template-columns: 1fr; }
  .step-card { min-height: unset; }
  .section-3-grid { gap:12px; }
}

@media (max-width: 480px){
  
  .s1-div1{ left:50%; transform:translate(-50%,-50%); }
  .s1-div1 h1 { font-size:28px; white-space:nowrap; }
  .pain-inner{ padding:6px; }
  .pain-text h2{ font-size:18px; }
  .pain-counter .count{ font-size:28px; }
  .section-growth h2{ font-size:28px; }
  .section-4 p{ font-size:15px; }
header img {
   width: 50%;
}
}

  

a{ -webkit-tap-highlight-color: transparent; }
