/* =========================
   Base + Theme
========================= */

:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #007bce;
  --primary-2: #0b63a7;
  --success: #5ac33b;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.10);
  --shadow-soft: 0 6px 18px rgba(17, 24, 39, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --focus: 0 0 0 4px rgba(0, 123, 206, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #ffffff 55%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--text);
  font-family: "Raleway", "Inter", system-ui, sans-serif !important;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
}

/* =========================
   Top Bar
========================= */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.logo {
  max-height: 40px;
  display: block;
}

.call-now {
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.call-now span {
  color: var(--primary);
  font-weight: 800;
}

.header-btn {
  display: none;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.header-btn:hover {
  background: var(--primary-2);
}

.header-btn:focus {
  outline: none;
  box-shadow: var(--focus);
}

/* =========================
   Layout
========================= */

.container {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 56px;
  padding: 42px 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* =========================
   Left Section
========================= */

.left-section {
  background: transparent;
}

.offer-btn {
  background-color: #fff;
  border: 1px solid rgba(0, 123, 206, 0.35);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0, 123, 206, 0.08);
  cursor: default;
}

.clover-logo {
  max-height: 54px;
  margin: 8px 0 18px 0;
  display: inline-block;
}

.left-section p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
}

.benefits-list {
  margin: 10px 0 12px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.benefits-list li {
  margin: 6px 0;
}

.phone-number {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  padding: 8px 0;
}

.phone-number:hover {
  color: var(--primary-2);
  text-decoration: underline;
}

/* =========================
   Right Section (Form Card)
========================= */

.right-section {
  width: 100%;
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.right-section h2 {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 1.7rem;
  text-align: center;
}

.step-indicator {
  display: none;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 18px;
}

.step-indicator .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 200ms ease, background 200ms ease, opacity 200ms ease;
  opacity: 0.9;
}

.step-indicator .dot.is-active {
  background: var(--primary);
  transform: scale(1.2);
  opacity: 1;
}

.step-indicator .dot.is-done {
  background: rgba(0, 123, 206, 0.35);
}

/* .features-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 10px;
  margin-top: 10%;

} */


.features-strip {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  margin-top: 6%;

}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* .feature-icon {
  width: 60px;
  height: 60px;
  background: #e7f3ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
} */

.feature-icon-text {
  font-weight: 600;
  color: black;
  font-size: 14px;
  line-height: 1.3;
}




.feature-img {
  width: 120px;
  height: auto;
  padding: 10px 0px;
}


.feature-icon-img {
  width: 100%;
  height: auto;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin: 8px 0 6px;
}

.req {
  color: #ef4444;
  font-weight: 900;
}

form select,
form input {
  width: 100%;
  padding: 16px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: box-shadow 200ms ease, border-color 200ms ease, transform 120ms ease;
}

form input::placeholder {
  color: #9ca3af;
}

form input:focus,
form select:focus {
  border-color: rgba(0, 123, 206, 0.65);
  box-shadow: var(--focus);
}

form input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.65);
}

.quote-btn {
  width: 100%;
  padding: 12px 14px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  margin: 6px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 18px rgba(0, 123, 206, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.quote-btn:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0, 123, 206, 0.22);
}

.quote-btn:active {
  transform: translateY(0);
}

.quote-btn:focus {
  outline: none;
  box-shadow: var(--focus);
}

.helper-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.otp-title {
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 6px 0 12px;
}

#loader {
  margin: 4px 0 10px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* =========================
   Clover Section
========================= */

.clover-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clover-title {
  font-size: 2rem;
  margin-bottom: 42px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.clover-green {
  color: var(--success);
  font-weight: 900;
  padding: 0 6px;
}

.clover-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 40px;
}

.product {
  width: 150px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.product img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product p {
  font-weight: 700;
  color: var(--text);
}

.clover-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  text-align: left;
  justify-content: center;
}

.clover-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.clover-text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 900;
  color: var(--text);
}

.clover-text ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text);
}

.clover-text li {
  margin: 8px 0;
}

/* =========================
   Features Section
=========================  */

.features-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding: 34px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.features-text h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 900;
  color: var(--text);
  line-height: 2rem;
}


.form-heading {
  position: relative;
  text-align: center;
}

.form-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 5px auto 0;
  border-radius: 4px;
  background: radial-gradient(#007bce, #a4f68b);
}

.features-text p {
  color: #374151;
}

.features-icons {
  display: flex;
  justify-content: center;
}

.features-icons img {
  width: min(420px, 92%);
  object-fit: contain;
  padding: 10px;
}

/* =========================
   CTA Sections
========================= */

.clover-cta {
  background-image: url('./images/clover-product-lineup.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #f5f5f5;
  padding: 90px 20px;
  text-align: center;
}

.clover-cta-1 h2 {
  background-color: #f5f5f5;
  text-align: center;
  font-size: 2rem;
  color: var(--text);
  font-weight: 900;
  padding: 44px 0px 30px;
}

.clover-cta-1 h2 span {
  color: var(--success);
}

/* =========================
   Device Section
========================= */

.clover-device-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 20px;
}

.device-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 34px;
  padding: 18px 10px;
}

.device-image {
  text-align: center;
}

.device-image img {
  max-width: 92%;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.10));
}

.clover-device-logo {
  max-height: 40px;
  margin-bottom: 12px;
}

.device-info h3 {
  font-size: 1.6rem;
  color: #374151;
  margin-bottom: 10px;
}

.device-info ul {
  list-style-type: disc;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

hr {
  border: 0;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin: 30px 0;
}

/* =========================
   Closing CTA + Footer
========================= */

.closing-cta {
  text-align: center;
  padding: 56px 20px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-cta h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 900;
}

.closing-cta p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.closing-cta .cta-call {
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 900;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.05rem;
  box-shadow: 0 14px 24px rgba(0, 123, 206, 0.18);
}

.closing-cta .cta-call:hover {
  transform: translateY(-1px);
}

.site-footer {
  padding: 36px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #4b5563;
  /* background-color: #fff; */
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin: 14px 0 0;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 5px;
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =========================
   Responsive
========================= */

@media screen and (max-width: 900px) {

  .feature-img {
    width: 80px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 16px 34px;
    display: flex;
    flex-direction: column-reverse;
  }

  .clover-info {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .features-content {
    grid-template-columns: 1fr;
  }

  .device-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .device-info ul {
    text-align: left;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  body{
    background: none;
  }
  .clover-section{
    background-color: #f6f8fb;
  }
  
  .hidden-xs {
    display: none;
  }

  .header-btn {
    display: inline-flex;
    width: auto;
  }

  .top-bar {
    padding: 12px 16px;
  }

  .right-section {
    padding: 22px;
  }

  .clover-cta-1,
  .clover-cta {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .clover-title {
    display: grid;
    gap: 6px;
  }

  .product {
    width: 44%;
  }

  .closing-cta h2 {
    font-size: 1.45rem;
  }

  .right-section h2 {
    font-size: 1.35rem;
  }
}