:root{
  --bg:#fff;
  --text:#121212;
  --muted:#5f5f5f;
  --line: rgba(18,18,18,.10);

  --brand:#d7a13b;
  --dark:#111111;

  --radius: 18px;
  --shadow: 0 22px 60px rgba(18,18,18,.12);
  --shadow2: 0 14px 36px rgba(18,18,18,.10);

  --max:1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bg);color:var(--text);}
a{text-decoration:none;color:inherit;}
.c-wrap{width:min(var(--max),92%);margin:0 auto;padding:70px 0;}
.c-h2{font-size:clamp(24px,2.2vw,36px);margin:0 0 10px;letter-spacing:.3px;}
.c-p{margin:0;color:var(--muted);line-height:1.85;font-size:15.6px;}
.c-sectionHead{text-align:center;margin-bottom:28px;}
.c-sectionHead .c-p{max-width:760px;margin:0 auto;}

/* =================== Reveal Animation =================== */
[data-reveal]{
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(6px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* =================== Buttons =================== */

/* =================== CARDS =================== */
.c-cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:16px;
  margin-top: 24px;
}
.c-card{
  position:relative;
  padding: 22px 18px;
  border-radius: calc(var(--radius) + 8px);
  border:1px solid var(--line);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.c-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(340px 140px at 12% 0%, rgba(215,161,59,.18), transparent 60%),
    radial-gradient(380px 180px at 100% 100%, rgba(0,0,0,.06), transparent 60%);
  pointer-events:none;
}
.c-card::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-40%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.40), transparent);
  transform: rotate(20deg);
  opacity:0;
  transition: opacity .25s var(--ease);
}
.c-card:hover{
  transform: translateY(-8px);
  border-color: rgba(215,161,59,.35);
  box-shadow: var(--shadow);
}
.c-card:hover::after{opacity:1;}

.c-card__icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius: 16px;
  background: rgba(215,161,59,.14);
  border: 1px solid rgba(215,161,59,.28);
  color:#7a5212;
  margin-bottom: 12px;
  position:relative;
  z-index:2;
}
.c-card__title{margin:0 0 6px;font-size:16px;font-weight:950;position:relative;z-index:2;}
.c-card__text{margin:0 0 12px;color:var(--muted);line-height:1.7;font-size:14px;position:relative;z-index:2;}
.c-card__link{
  display:inline-flex;
  font-weight:900;
  color:var(--dark);
  border-bottom: 2px solid rgba(215,161,59,.45);
  padding-bottom:2px;
  position:relative;z-index:2;
}

/* =================== CTA =================== */
.c-cta{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(900px 360px at 20% 20%, rgba(215,161,59,.22), transparent 60%),
    linear-gradient(180deg, #111111, #0b0b0b);
}
.c-cta::before{
  content:"";
  position:absolute;
  inset: 0;
  border-top: 1px solid rgba(215,161,59,.25);
  border-bottom: 1px solid rgba(215,161,59,.15);
  pointer-events:none;
}
.c-cta__inner{
  width:min(var(--max),92%);
  margin:0 auto;
  padding: 58px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position:relative;
  z-index:2;
}
.c-cta__title{margin:0 0 6px;font-size: clamp(22px, 2.2vw, 32px);font-weight:950;}
.c-cta__text{margin:0;color: rgba(255,255,255,.82);line-height:1.8;}
.c-cta__actions{display:flex;gap:12px;flex-wrap:wrap;}

/* =================== WHY =================== */
.c-why{
  display:grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.c-list{
  list-style:none;
  margin: 18px 0 0;
  padding: 0;
  display:grid;
  gap: 10px;
}
.c-list li{
  display:flex;align-items:center;gap:10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 34px rgba(18,18,18,.06);
  font-weight: 850;
  transition: transform .22s var(--ease);
}
.c-list li:hover{transform: translateX(4px);}
.c-list i{color:#1c7c45;font-size:18px;}

.c-why__box{
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(215,161,59,.32);
  background: linear-gradient(180deg, rgba(215,161,59,.14), rgba(215,161,59,.04));
  padding: 18px;
  box-shadow: 0 20px 55px rgba(18,18,18,.10);
}
.c-why__box h3{margin:0 0 8px;font-size:16px;font-weight:950;color:#6b4b10;}
.c-why__box p{margin:0 0 14px;color:#3f3f3f;line-height:1.8;font-size:14.2px;}
.c-why__mini{display:flex;gap:10px;flex-wrap:wrap;}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.08);
  font-weight: 900;
  font-size: 13px;
}

/* =================== FAQ =================== */
.c-faq{padding-top:0;}
.faq{max-width:900px;margin:0 auto;display:grid;gap:12px;}
.faq__item{
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(18,18,18,.10);
  overflow:hidden;
  transition: transform .25s var(--ease);
}
.faq__item:hover{transform: translateY(-3px);}
.faq__q{
  cursor:pointer;
  list-style:none;
  padding: 16px 16px;
  font-weight: 950;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.faq__q::-webkit-details-marker{display:none;}
.faq__icon{
  width:36px;height:36px;
  display:grid;place-items:center;
  border-radius:999px;
  border:1px solid rgba(18,18,18,.10);
  background: rgba(215,161,59,.12);
  color:#6b4b10;
  transition: transform .25s var(--ease);
}

.faq__a{
  margin:0;
  padding: 0 16px 16px;
  color:var(--muted);
  line-height:1.85;
  font-size:14.6px;
}
details[open] .faq__icon{ transform: rotate(45deg); }

.btn-box{
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 10px;
}
.btn-pri, .btn-sec{
  display: inline-flex;            
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 16px;            
  padding: 8px 14px;              
  font-weight: 700;               

  text-decoration: none;          
  cursor: pointer;

  position: relative;             
  overflow: hidden;               
  user-select: none;

  transition: transform .25s ease, box-shadow .25s ease, color .35s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-pri span, .btn-sec span{
  position: relative;
  z-index: 2;                     /* keep text above fill */
}

.btn-pri{
  border: 2px solid #7a5212;      
  color: #7a5212;                 
  background: transparent;
}

.btn-pri::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #7a5212;
  transition: height .35s ease;
  z-index: 1;
}

.btn-pri:hover::before{ height: 100%; }

.btn-pri:hover{
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(34, 166, 179, .28);
}

.btn-pri:active{ transform: translateY(0) scale(.98); }

.btn-sec{
  border: 2px solid #7a5212;      
  background: #7a5212;            
  color: #fff;                  
  box-shadow: 0 12px 26px rgba(34, 166, 179, .28);
}

.btn-sec::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #fff;
  transition: height .35s ease;
  z-index: 1;
}

.btn-sec:hover::before{ height: 100%; }

.btn-sec:hover{
  color: #7a5212;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 166, 179, .35);
}

.btn-sec:active{ transform: translateY(0) scale(.98); }

/* Optional: nicer focus for keyboard users */
.btn-pri:focus-visible, .btn-sec:focus-visible{
  outline: 3px solid rgba(34, 166, 179, .25);
  outline-offset: 3px;
}

.btn-pri i, .btn-sec i{
  position: relative;
  z-index: 2;
  color: inherit;
}

/* =================== Responsive =================== */
@media (max-width: 980px){
  .c-cards{grid-template-columns: repeat(2, minmax(0,1fr));}
  .c-why{grid-template-columns:1fr;}
  .c-cta__inner{justify-content:center;text-align:center;}
  .c-cta__actions{justify-content:center;width:100%;}
  .c-hero__stats{grid-template-columns:1fr;max-width:520px;}
}
@media (max-width: 520px){
  .c-wrap{padding:48px 0;}
  .c-cards{grid-template-columns:1fr;}
}

/* Respect user motion settings */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;}
}
