/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 08 2026 | 08:06:16 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --primary:#EB5939;
  --secondary:#0F172A;
  --text:#1E293B;
  --muted:#64748B;
  --bg:#F8F9FA;
  --border:#E5E7EB;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin-bottom:80px;
}

.hero-label{
  display:inline-block;
  padding:6px 20px;
  border-radius:50px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  border:2px solid var(--primary);
  color:var(--primary);
  margin-bottom:20px;
}

.hero-title{
  font-family:'Playfair Display',serif;
  font-size:50px;
  font-weight:900;
  color:var(--secondary);
  line-height:1.2;
  margin-bottom:20px;
}

.hero-title span{
  color:var(--primary);
}

.hero-subtitle{
  font-size:18px;
  color:var(--text);
  max-width:500px;
  line-height:1.6;
}

/* CLIENT CARD */
.client-card{
  background:#fff;
  border-radius:25px;
  padding:35px;
  box-shadow:0 15px 30px rgba(0,0,0,0.05);
  text-align:center;
}

.client-avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:900;
  margin:auto;
  margin-bottom:20px;
  font-family:'Playfair Display',serif;
}

.client-name{
  font-size:22px;
  font-weight:800;
  color:var(--secondary);
  margin-bottom:5px;
}

.client-role{
  font-size:14px;
  color:var(--muted);
  margin-bottom:20px;
}

.info-item{
  padding:12px 0;
  border-top:1px solid var(--border);
}

.info-item:first-child{border-top:none;}

.info-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--primary);
  font-weight:700;
}

.info-value{
  font-size:15px;
  color:var(--secondary);
  font-weight:600;
}

/* SECTION HEADERS */
.section-header{
  text-align:center;
  margin-bottom:50px;
}

.section-number{
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}

.section-title{
  font-family:'Playfair Display',serif;
  font-size:38px;
  font-weight:900;
  color:var(--secondary);
}

/* CHALLENGE */
.challenge-section{
  margin-bottom:80px;
}

.challenge-content{
  max-width:800px;
  margin:auto;
}

.challenge-text{
  font-size:16px;
  margin-bottom:20px;
  color:var(--text);
  line-height:1.6;
}

/* STRATEGY */
.strategy-section{
  margin-bottom:80px;
}

.strategy-intro{
  max-width:800px;
  margin:0 auto 40px;
  text-align:center;
  font-size:16px;
  color:var(--text);
  line-height:1.6;
}

.strategy-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.strategy-card{
  background:#fff;
  border-radius:20px;
  padding:25px;
  border:1px solid var(--border);
  transition:all 0.3s ease;
  cursor:pointer;
}

.strategy-card:hover{
  transform:translateY(-5px);
  border-color:var(--primary);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.strategy-number{
  font-size:36px;
  font-weight:900;
  color:var(--muted);
  font-family:'Playfair Display',serif;
  margin-bottom:10px;
}

.strategy-title{
  font-size:18px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:8px;
}

.strategy-desc{
  font-size:14px;
  color:var(--text);
  line-height:1.5;
}

/* RESULTS */
.results-section{
  margin-bottom:80px;
}

.results-intro{
  text-align:center;
  max-width:700px;
  margin:0 auto 30px;
  font-size:16px;
  color:var(--text);
  line-height:1.5;
}

.results-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-bottom:30px;
}

.result-card{
  background:#fff;
  border-radius:18px;
  padding:20px;
  border:1px solid var(--border);
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.result-text{
  font-weight:600;
  color:var(--secondary);
  font-size:14px;
}

/* RESULTS HIGHLIGHT */
.results-highlight{
  border:1px solid var(--border);
  border-radius:20px;
  padding:25px;
  text-align:center;
  font-size:16px;
  font-weight:700;
  color:var(--primary);
}

/* TESTIMONIAL */
.testimonial-section{
  margin-bottom:80px;
  text-align:center;
}

.testimonial-text{
  font-size:20px;
  font-style:italic;
  max-width:700px;
  margin:0 auto 20px;
  color:var(--text);
  line-height:1.6;
}

.testimonial-author{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
}

.author-avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Playfair Display',serif;
}

.author-name{
  font-weight:800;
  color:var(--secondary);
}

/* CTA */
.cta-section{
  text-align:center;
  padding:40px 20px;
  background:#0F172A;
  border-radius:20px;
  border:1px solid var(--border);
}

.cta-title{
  font-family:'Playfair Display',serif;
  font-size:32px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:15px;
}

.cta-text{
  font-size:16px;
  color:#fff;
  margin-bottom:25px;
}

.cta-button{
  display:inline-block;
  padding:14px 40px;
  border-radius:50px;
  font-weight:700;
  font-size:15px;
  color:#fff;
  background:var(--primary);
  text-decoration:none;
  transition:all 0.3s ease;
}

.cta-button:hover{
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero{grid-template-columns:1fr; gap:30px;}
  .hero-title{font-size:38px;}
  .section-title{font-size:28px;}
}

@media(max-width:600px){
  .hero-title{font-size:28px;}
  .hero-subtitle{font-size:16px;}
  .strategy-number{font-size:28px;}
  .strategy-title{font-size:16px;}
  .testimonial-text{font-size:16px;}
  .cta-title{font-size:24px;}
}