/* HOMEPAGE SPECIFIC STYLES */

/* HERO SECTION */
.hero {
    min-height: 92vh;   /* was 100vh */
  padding: 7rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.hero-tag .dot {
  width: 6px; 
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-sub strong { 
  color: var(--white); 
}

.hero-proof {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.proof-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.proof-num span { 
  color: var(--accent); 
}

.proof-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FORM CARD */
.form-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 2rem;
  position: relative;
}


.form-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.response-time {
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.response-time .icon {
  font-size: 1.3rem;
}

/* TRUST STRIP */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  background: var(--dark);
}

.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.banks {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.bank-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #888;   /* was #666 */
  text-transform: uppercase;
  transition: color 0.2s;
}

.bank-name:hover { 
  color: var(--white); 
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-meta {
    font-size: 1rem;   /* was 0.9rem */
  color: var(--gray);
  text-align: right;
}

/* RATES TABLE */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 1.05rem;
}

.rates-table th,
.rates-table td {
  padding: 1.4rem 1rem;
  border-bottom: 1px solid var(--border);
}

.rates-table thead th {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

/* Align numeric headers */
.rates-table th:nth-child(3),
.rates-table th:nth-child(4),
.rates-table th:nth-child(6) {
  text-align: right;
}

.rates-table td:nth-child(3),
.rates-table td:nth-child(4) {
  text-align: right;   /* Align rates properly */
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}

.rates-table td:nth-child(6) {
  text-align: right;
}

.bank-col {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.rates-table col:nth-child(1) { width: 14%; }
.rates-table col:nth-child(2) { width: 24%; }
.rates-table col:nth-child(3) { width: 16%; }
.rates-table col:nth-child(4) { width: 16%; }
.rates-table col:nth-child(5) { width: 12%; }
.rates-table col:nth-child(6) { width: 12%; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.badge-fixed { 
  background: #1a2a3a; 
  color: #5ab0ff; 
}

.badge-sora { 
  background: #2a1a3a; 
  color: #b05aff; 
}

.badge-best { 
  background: #2a2a0a; 
  color: var(--accent); 
  border: 1px solid var(--accent); 
}

.warning-row td { 
  color: var(--gray); 
  font-size: 0.9rem; 
}

/* HONESTY SECTION */
.honesty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.honesty-col {
  padding: 2.5rem;
}

.honesty-col:first-child {
  border-right: 1px solid var(--border);
  background: var(--dark);
}

.honesty-col-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-bad { 
  color: var(--red); 
}

.label-good { 
  color: var(--accent); 
}

.honesty-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.honesty-col p {
    color: #b8b8b8;   /* was #a0a0a0 */
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.honesty-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.honesty-item .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.testimonial-card {
  background: var(--dark);
  padding: 2rem;
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #d0d0d0;
  margin-bottom: 1.25rem;
}

.testimonial-text strong { 
  color: var(--white); 
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--gray);
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* CTA SECTION */
.cta-section {
  background: var(--accent);
  padding: 4rem 2.5rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--black);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(0,0,0,0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    gap: 2.5rem;
  }

  .section { 
    padding: 3rem 1.5rem; 
  }
  
  .section-header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0.5rem; 
  }
  
  .section-meta { 
    text-align: left; 
  }

  .honesty-grid { 
    grid-template-columns: 1fr; 
  }
  
  .honesty-col:first-child { 
    border-right: none; 
    border-bottom: 1px solid var(--border); 
  }

  .testimonials-grid { 
    grid-template-columns: 1fr; 
  }

  .trust-strip { 
    flex-wrap: wrap; 
  }
  
  .banks { 
    gap: 1.25rem; 
  }
}
