.hero{
  height:640px;
  position:relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 52%, rgba(0,0,0,.52) 100%),
    url("../assets/Background.jpeg") center/cover no-repeat;
}

.arrow{
  transform:rotate(180deg);
  transform-origin:50% 50%;
}

.hero .inner{
  max-width:1280px;
  margin:0 auto;
  padding:100px 0 0;
  display:flex;
  align-items:flex-start;
}

.hero .copy{
  width:820px;
}
.hero .title{
  color:var(--gold);
  font-size:38px;
  line-height:1.12;
  font-weight:700;
  margin:0 0 18px;
}
.hero .desc{
  width:650px;
  color:#ffffffcc;
  font-size:22px;
  line-height:1.85;
}

.hero .cta{
  margin-top:26px;
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:18px 22px 18px 30px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.62);
  color:#fff;
  background:rgba(0,0,0,.12);
  font-size:24px;
  font-weight:600;
  line-height:1;
}


.hero .cta .arrow{
  filter:invert(1);
  width:18px;
  height:18px;
  display:inline-block;
  box-sizing:content-box;
  padding:0;
  border:none;
  border-radius:0;
}
.hero .cta.btn-cta::before{opacity:0.95}
.hero .cta:hover{border-color:transparent}

.banner{
  height:92px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.banner .text{
  font-size:16px;
  color:var(--blue);
  opacity:.9;
  position:relative;
}
.banner .text::before{
  content:"";
  position:absolute;
  left:-38px;
  top:50%;
  width:18px;
  height:18px;
  border-radius:4px;
  background:rgba(31,21,72,.06);
  transform:translateY(-50%) rotate(-18deg);
}

.record{
  background:var(--blue);
  padding:90px 0 80px;
}
.record .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
  text-align:center;
  color:#fff;
}
.record h2{
  font-size:38px;
  margin:0 0 12px;
  font-weight:600;
}
.record p.top{
  margin:0 auto 46px;
  width:1000px;
  color:#ffffffcc;
  font-size:22px;
  line-height:1.7;
}
.stats{
  margin:0 auto 40px;
  width:1280px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}
.stat{
  padding:18px 18px 10px;
  border-right:1px solid rgba(255,255,255,.14);
}
.stat:last-child{border-right:none}
.stat .num{
  font-size:40px;
  font-weight:700;
  letter-spacing:.4px;
}
.stat .label{
  margin-top:4px;
  font-size:12px;
  color:#ffffffd6;
  font-weight:600;
}

.record p.bottom{
  width:1180px;
  margin:0 auto 40px;
  font-size:18px;
  line-height:1.75;
  color:#ffffffb8;
}

/* Testimonial */
.testimonial{
  margin-top:44px;
}
.testimonial h3{
  margin:0 0 30px;
  font-size:30px;
  font-weight:500;
  letter-spacing:.3px;
}

.slider{
  width:1280px;
  margin:0 auto;
  position:relative;
}
.slider-window{
  overflow:hidden;
}
.slider-track{
  display:flex;
  gap:40px;
  transition:transform .6s ease;
  will-change:transform;
}
/* Tampilan Kartu Tetap Abu-abu (Ukuran 400x190) */
.t-card {
  flex: 0 0 400px;
  height: 190px;
  border-radius: 18px;
  background: #d9d9d9; /* Warna abu-abu asli dipertahankan */
  /* Kombinasi inset shadow putih & drop shadow hitam tipis untuk efek 3D modern */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 
              0 8px 20px rgba(0, 0, 0, 0.08); 
  padding: 22px 24px; /* Padding sedikit dilebarkan agar teks bernapas */
  display: flex;
  align-items: flex-start;
}

/* Layout Inner */
.t-inner {
  display: flex; 
  gap: 16px; 
  width: 100%;
}

/* Foto User (Avatar) */
.t-avatar {
  width: 56px; 
  height: 56px;
  border-radius: 50%; 
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

/* Teks Header (Nama & Role) */
.t-body {
  flex: 1; 
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.t-name {
  font-size: 22px; 
  font-weight: 700; 
  color: var(--blue);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.t-role {
  font-size: 16px; 
  color: #555; 
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase; 
  letter-spacing: 0.6px;
}

/* Teks Kutipan */
.t-quote {
  font-size: 14px; 
  color: #3b3b3b; 
  line-height: 1.6; 
  margin-top: 12px;
  font-style: italic; 
}

.slider-controls{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  color:#ffffffc9;
  user-select:none;
}
.slider-controls .arrow-btn{
  width:40px;
  height:40px;
  font-size:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:.8;
  transition:opacity .2s ease, transform .2s ease;
}
.slider-controls .arrow-btn:hover{opacity:1; transform:translateY(-1px)}
.dots{
  display:flex;
  gap:10px;
  align-items:center;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
}
.dot.active{background:#fff}

/* Measured section */
.measured{
  background:#fff;
  padding:88px 0 0;
}
.measured .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px 70px;
  text-align:center;
}
.measured h2{
  margin:0 0 10px;
  font-size:38px;
  color:var(--blue);
}
.measured p{
  width:980px;
  margin:0 auto 22px;
  font-size:22px;
  line-height:1.7;
  color:#494949;
}

.measured .assess{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  border:none;
  background:var(--blue);
  color:var(--gold);
  font-weight:700;
}
.measured .assess .arrow{filter:invert(1); opacity:.9}
.measured .assess.btn-cta::before{background:rgba(228,206,142,.22)}
.measured .divider{margin-top:48px}

.awards{
  padding:44px 0 52px;
}
.awards .row{
  width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:140px;
}
.awards img{
  width:200px;
  height:auto;
  filter:grayscale(1);
  opacity:.9;
}

.guidance{
  padding:18px 0 40px;
  text-align:center;
}
.guidance .title{
  font-size:30px;
  font-style:italic;
  color:#111;
  margin:0 0 10px;
}
.guidance .sub{
  width:1600px;
  margin:0 auto;
  color:#666;
  font-size:18px;
  line-height:1.7;
}

/* Insight */
.insight{
  background:#efefef;
  padding:52px 0 100px;
}
.insight h2{
  text-align:center;
  color:var(--blue);
  font-size:30px;
  margin:0 0 34px;
}
.news-grid{
  width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}
.news-card{
  background:#fff;
  border-radius:18px;
  padding:26px 26px 22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  min-height:430px;
}
.news-card .meta{
  font-size:12px;
  color:var(--blue);
  font-weight:600;
  line-height:1.35;
}
.news-card .date{
  font-size:11px;
  color:#8a8a8a;
  margin-top:2px;
}
.news-card h3{
  margin:16px 0 18px;
  /* Requested: headline 30px */
  font-size:30px;
  line-height:1.25;
  color:var(--blue);
}
.tag-row{
  display:flex;
  gap:14px;
  margin-bottom:22px;
}
.tag{
  background:rgba(228,206,142,.75);
  color:#3a2d00;
  padding:8px 12px;
  border-radius:4px;
  font-size:10px;
  font-weight:600;
}

.read-more{
  margin-top:auto;
  display:inline-flex;
  color:#8a8a8a;
  font-size:12px;
}
.read-more:hover{color:var(--blue)}

.discover{
  margin-top:34px;
  text-align:center;
}
/* Update pada class .btn yang sudah ada */
.discover .btn {
  display: inline-flex; /* Menyejajarkan teks dan panah */
  align-items: center;
  justify-content: center;
  gap: 10px; /* Jarak antara teks dan panah */
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: color 0.35s ease; /* Efek transisi halus untuk teks */
}


.discover .btn.btn-cta::before {
  background: var(--gold);
  transition: transform .45s cubic-bezier(.2,.9,.2,1), opacity .45s ease;
}

.discover .btn.btn-cta:hover {
  color: var(--blue);
}


.discover .btn .arrow {
  transition: transform 0.35s ease, filter 0.35s ease;
}


.discover .btn.btn-cta:hover .arrow {
  transform: translateX(4px); 
  filter: invert(0) !important; 
}

/* Next step + Footer */
.next-step-bg{
  margin-top:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.38) 60%, rgba(0,0,0,.20) 100%),
    url("../assets/2.jpg") center/cover no-repeat;
  padding:100px 0 0;   
}

.next-step-bg .title{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
  color:var(--gold);
  font-size:40px;
  font-weight:700;
}

.next-step-bg .subtitle{
  max-width:720px;
  margin:20px 240px 0;
  padding:0 0 100px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.85;
  text-align: left;
}

.next-step{
  background:#E4CE8E; 
  margin-top:18px;
  padding:40px 0;
}

.next-step .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
}
.next-step h3{
  margin:0 0 6px;
  color:var(--blue);
  font-size:38px;
}
.next-step p{
  margin:20px 0 16px;
  font-size:22px;
  color:#3f3f3f;
  width:840px;
  line-height:1.6;
}
.subscribe{
  display:flex;
  align-items:center;
  gap:0;
}
.subscribe input{
  width:580px;
  height:60px;
  border:none;
  outline:none;
  padding:0 12px;
  background:#fff;
  font-size:22px;
}
.subscribe button{
  height:60px;
  padding:0 20px;
  border:none;
  background:var(--blue);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  border-radius:0;
  font-size : 18px;
  font-family: "IBM Plex Sans";
}
.subscribe button.btn-cta::before{background:var(--gold)}


/* Firm chooser section (below "Are you a business...") */
.firm-chooser{
  position:relative;
  padding:70px 0 50px;
  background:#F7F7FA;
  overflow:hidden;
}
.firm-chooser::before{
  content:"";
  position:absolute;
  inset:-120px -120px -120px -120px;
  background:
    radial-gradient(circle at 30% 35%, rgba(31,21,72,.06) 0%, rgba(31,21,72,0) 55%),
    radial-gradient(circle at 70% 60%, rgba(31,21,72,.05) 0%, rgba(31,21,72,0) 58%);
  transform:rotate(-7deg);
  pointer-events:none;
}

/* Keep this section wide enough to fit 6 gold boxes @ 250px each */
.firm-chooser .inner{
  position:relative;
  max-width:1920px;
  margin:0 auto;
  padding:0 165px;
}

.firm-chooser .prompt{
  text-align:center;
  font-size:30px;
  line-height:1.35;
  letter-spacing:-.2px;
  color:var(--blue);
  margin:0 0 44px;
}

.firm-chooser .switch{
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:28px;
  margin:0 auto 42px;
}

/* Requested size */
.firm-btn{
  width:456px;
  height:196px;
  border:0;
  border-radius:22px;
  background:var(--blueLight);
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  overflow:hidden;
  transition:background .28s ease, transform .28s cubic-bezier(.2,.9,.2,1);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:18px 20px 16px;
}

.firm-btn:hover,
.firm-btn:focus-visible{
  background:var(--blue);
  transform:translateY(-2px);
}

.firm-btn.is-active{
  background:var(--blue);
}

/* Logo inside firm button (slightly larger, requested) */
.firm-btn .firm-logo,
.firm-btn .brand img.logo{
  width:290px;
  height:112px;
  object-fit:contain;
  display:block;
}

/* Hide legacy brand text block ("Phan Campbell...") if present in older HTML */
.firm-btn .brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  margin:0;
}

.firm-btn .brand > div{
  display:none !important;
}

/* Label under logo */
.firm-btn .label{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#FFEEBF;
  font-family:"IBM Plex Sans";
  font-size:30px;
  font-style:normal;
  font-weight:600;
  line-height:1.1;
  letter-spacing:-.2px;
}

/* Triangle caret: UP when inactive, DOWN when active */
.firm-btn .label .caret-tri{
  width:0;
  height:0;
  border-left:7px solid transparent;
  border-right:7px solid transparent;
  border-top:9px solid #FFEEBF; /* triangle */
  display:inline-block;
  transform:rotate(180deg);
  transition:transform .28s ease;
}

.firm-btn.is-active .label .caret-tri{
  transform:rotate(0deg);
}

/* Hidden before click */
.firm-cards.is-hidden{display:none;}

/* Requested gold box size */
.firm-cards{
  /* Keep the 250x180 boxes, but prevent overflow on narrower screens */
  width:100%;
  max-width:1590px; /* 6*250 + 5*18 */
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(auto-fit, 250px);
  gap:18px;
  justify-content:center;
}

.firm-card{
  display:block;
  text-decoration:none;
  width:250px;
  height:180px;
  background:var(--gold);
  border-radius:18px;
  padding:22px 20px;
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  transform:translateY(18px) scale(.98);
  opacity:0;
  will-change:transform, opacity;
}

.firm-card.is-in{
  transform:translateY(0) scale(1);
  opacity:1;
  transition:
    transform .60s cubic-bezier(.2,.9,.2,1),
    opacity .60s ease;
}

.firm-card .t{
  font-size:22px;
  font-weight:800;
  line-height:1.15;
  color:var(--blue);
  letter-spacing:-.2px;
  margin:0 0 12px;
}

.firm-card .d{
  font-size:13px;
  line-height:1.55;
  color:rgba(31,21,72,.92);
  margin:0;
}