/* ===== RESET ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'DM Sans',sans-serif;
  color:#0f172a;
}

/* ===== LAYOUT ===== */
.container{
  max-width:1150px;
  margin:auto;
  padding:0 20px;
}

/* ===== HEADER ===== */
header{
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom:1px solid #e2e8f0;
  background:#fff;
}
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;   /* vertical center */
  height:80px;          /* 👈 increase height */
}

/* CALL BUTTON */
.call-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#fff;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  padding:70px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:40px;
}

.hero h1{
  font-size:38px;
  margin-bottom:10px;
}
.hero p{
  color:#cbd5f5;
  margin-bottom:20px;
}

/* ===== MINI CARDS FIXED ===== */
.mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.mini{
  background:#fff;
  color:#000;
  border-radius:12px;
  padding:16px;

  /* FIXES */
  border:2px solid transparent; /* prevents jump */
  min-height:90px;              /* equal height */
  display:flex;
  flex-direction:column;
  justify-content:center;

  transition:0.25s ease;
}

.mini:hover{
  border-color:#3b82f6;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.mini h4{
  font-size:14px;
  font-weight:600;
  margin-bottom:4px;
}

.mini p{
  font-size:13px;
  color:#94a3b8;
}

/* ===== FORM ===== */
.form{
  background:#fff;
  color:#000;
  padding:20px;
  border-radius:12px;
}
.form input{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #e2e8f0;
  border-radius:6px;
}
.form button{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
}

/* ===== BENEFITS ===== */
.section{
  padding:110px 0;
  background:#f1f5f9;
}
.section h2{
  text-align:center;
  margin-bottom:10px;
}
.section-sub{
  text-align:center;
  color:#64748b;
  margin-bottom:40px;
}

.benefits{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:20px;
  transition:0.25s;
}

.card:hover{
  border-color:#3b82f6;
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.card-header{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.icon{
  width:32px;
  height:32px;
  background:#eff6ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
}

.card p{
  font-size:14px;
  color:#64748b;
}

/* ===== TABLE ===== */
.compare{
  padding:100px 0;
  background:#f8fafc;
}

.table-wrap{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e2e8f0;
}

table{
  width:100%;
  border-collapse:collapse;
}

thead{
  background:#1e293b;
  color:#fff;
}

th,td{
  padding:14px;
  border-top:1px solid #e2e8f0;
  text-align:center;
}

td:first-child,th:first-child{
  text-align:left;
}

.group-cell{
  background:#f1f5f9;
  color:#2563eb;
  font-weight:600;
  cursor:pointer;
  position:relative;
}

.arrow{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
}

.group-content{

}

/* ===== STATS ===== */
.stats{
  padding:60px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  text-align:center;
}
.stats h2{
  color:#2563eb;
  font-size:36px;
}

/* ===== CTA ===== */
.cta{
  background:#0f172a;
  color:#fff;
  padding:50px;
  text-align:center;
}

.cta-buttons{
  display:flex;
  justify-content:flex-end;
  gap:20px;
  margin-top:20px;
}

.cta-btn{
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.cta-buttons a {
  text-decoration: none;
  color: inherit;            /* prevents blue/purple link */
  display: flex;             /* ensures proper centering */
  align-items: center;
  justify-content: center;
}

.cta-buttons a:visited,
.cta-buttons a:hover,
.cta-buttons a:active {
  text-decoration: none;
  color: inherit;
}

.call{background:#2563eb;}
.wa{background:#22c55e;}

/* ===== PARTNERS ===== */
.partners{
  padding:60px 0;
  background:#f1f5f9;
  text-align:center;
}

.partners-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:30px;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

/* CARD STYLE SAME AS YOUR SYSTEM */
.partner-card{
  background:#fff;
  border-radius:12px;
  border:1px solid #e2e8f0;
  height:90px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:15px;

  transition:0.25s;
}

.partner-card:hover{
  border-color:#3b82f6;
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
}

/* LOGO FIT */
.partner-card img{
  max-height:60px;
  max-width:100%;
  object-fit:contain;
}

/* =========================================
   GLOBAL RESPONSIVE BASE
========================================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   TABLET (<= 1024px)
========================================= */
@media (max-width: 1024px) {

  .container {
    padding: 0 20px;
  }

  /* HEADER */
  .header {
    gap: 12px;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  /* FORM */
  .form {
    max-width: 520px;
    margin: auto;
    width: 100%;
  }

  /* MINI CARDS */
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mini {
    height: 100%;
  }

  /* OFFER STRIP */
  .offer-container {
    flex-wrap: nowrap;
	display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .offer-item {
    flex: 1;
    min-width: 0;
  }

  .offer-btn {
    width: 100%;
    align-items: center;
  }

  .offer-btn a {
    width: 100%;
    text-align: center;
  }

  .divider {
    display: none;
  }

  /* BENEFITS */
  .benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* PARTNERS */
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* TABLE */
  table {
    font-size: 14px;
  }

  /* STATS */
  .stats {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  /* REVIEWS */
  .review-card {
    min-width: 260px;
  }
}


/* =========================================
   MOBILE (<= 640px)
========================================= */
@media (max-width: 640px) {

  .container {
    padding: 0 16px;
  }

  /* HEADER */
  .header {
    flex-direction: row;
    justify-content: space-between;
  }

  .call-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* HERO */
  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  /* MINI CARDS */
  .mini-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mini {
    padding: 14px;
  }

  /* FORM */
  .form {
    padding: 20px;
  }

  .form input {
    height: 42px;
    font-size: 14px;
  }

  .form button {
    height: 44px;
    font-size: 14px;
  }

  /* OFFER STRIP */
  .offer-container {
    flex-direction: column;
    align-items: stretch;
	gap: 14px;
	padding: 16px;
  }

  .offer-item {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .offer-btn {
    width: 100%;
    align-items: center;
  }

  .offer-btn a {
    width: 100%;
    text-align: center;
  }

  /* BENEFITS */
  .card {
    padding: 18px;
  }

  .card-header h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  /* PARTNERS */
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    height: 80px;
  }

  /* TABLE */
  table {
    font-size: 13px;
  }

  th, td {
    padding: 10px;
  }

  /* STATS */
  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats h2 {
    font-size: 28px;
  }

  /* REVIEWS */
  .review-card {
    min-width: 220px;
  }

  /* CTA */
  .cta {
    padding: 40px 0;
  }

  .cta-buttons {
    gap: 14px;
  }

  .cta-btn {
    width: 60px;
    height: 60px;
  }

  .cta h2 {
    font-size: 22px;
  }
}


/* =========================================
   SMALL MOBILE (<= 400px)
========================================= */
@media (max-width: 400px) {

  .hero h1 {
    font-size: 24px;
  }

  .mini h4 {
    font-size: 14px;
  }

  .mini p {
    font-size: 12px;
  }

  .form input {
    font-size: 13px;
  }

  .form button {
    font-size: 13px;
  }

  .offer-item p {
    font-size: 13px;
	line-height: 1.4;
  }
}
/* ===== REVIEWS ===== */
.reviews{
  padding:70px 0;
  background:#f8fafc;
  overflow:hidden;
}

.reviews-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  margin-bottom:40px;
}

.reviews-slider{
  overflow:hidden;
  position:relative;
}

/* RUNNING TRACK */
.reviews-track{
  display:flex;
  gap:20px;
  width:max-content;

  animation:scroll 25s linear infinite;
}

/* PAUSE ON HOVER (premium touch) */
.reviews-slider:hover .reviews-track{
  animation-play-state:paused;
}

/* CARDS */
.review-card{
  width:320px;
  background:#fff;
  border-radius:14px;
  padding:20px;
  border:1px solid #e2e8f0;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.review-card p{
  font-size:14px;
  color:#475569;
  margin-bottom:15px;
}

.review-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.stars{
  color:#fbbf24;
}

/* KEYFRAME MAGIC */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.form-msg{
  margin-top:10px;
  font-size:14px;
  display:none;
}
.offer-strip {
  background: #e9edf5;
  padding: 16px 0;
}

.offer-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;

  background: #eef2f7;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}


.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  flex: 1;
}

.offer-item.no-icon {
  max-width: 180px;
}

.offer-item p {
  font-size: 14px;
  line-height: 1.4;
  color: #1e293b;
  margin: 0;
}

.offer-item p br {
  display: none;
}

.offer-item strong {
  font-weight: 700;
}

.circle {
  width: 34px;
  height: 34px;
  min-width: 34px;

  background: #f1f5f9;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.circle svg {
  width: 18px;
  height: 18px;
}

.divider {
  display:none;
}

.offer-btn {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 6px;
}

.offer-btn a {
  width: 100%;
  background: #ef4444;
  color: #fff;
  text-align: center;

  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;

  white-space: nowrap;
}

.offer-btn a:hover {
  background: #dc2626;
}

.offer-btn span {
  font-size: 11px;
  color: #64748b;
  text-align: center;
}

.offer-btn .tnc {
  font-size: 11px;
  color: #475569;
  margin-top: 4px;
}
.floating-cta{
  position: fixed;
  right: 14px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.2s ease;
}

.float-btn:hover{
  transform: scale(1.08);
}

.call{
  background:#3b82f6;
}

.wa{
  background:#22c55e;
}
/* COMPACT CTA */
.compact-cta {
  padding: 40px 0; /* reduced height */
  text-align: center;
}

.compact-cta h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* CENTER BUTTONS */
.cta-buttons.center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* OPTIONAL: slightly smaller buttons for balance */
.compact-cta .cta-btn {
  width: 55px;
  height: 55px;
  font-size: 22px;
}
/* TURN EXISTING FORM INTO MODAL */
.form-popup-active .hero .form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-popup-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}