/* ============================================================
   COUNTRY LANDING PAGES — shared stylesheet
   Used by: usa.html, uk.html, uae.html, australia.html, canada.html
   ============================================================ */

/* --- HERO --- */
.cl-hero {
  position: relative;
  padding: 90px 0 80px;
  background-color: #09102e;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cl-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
  transform: scale(1.02);
}
.cl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 16, 46, 0.88) 0%, rgba(9, 16, 46, 0.55) 55%, rgba(9, 16, 46, 0.15) 100%),
    radial-gradient(700px 400px at 85% 10%, rgba(122, 204, 13, 0.22), transparent 60%);
  z-index: 1;
}
.cl-hero > .container { position: relative; z-index: 2; }

/* Hero right — floating image stack */
.cl-hero-images {
  position: relative;
  height: 460px;
}
.cl-hero-img {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.cl-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cl-hero-img-main {
  top: 0;
  right: 0;
  width: 82%;
  height: 320px;
}
.cl-hero-img-accent {
  bottom: 0;
  left: 0;
  width: 60%;
  height: 220px;
  border: 6px solid #09102e;
}
.cl-hero-img-badge {
  position: absolute;
  top: 22px;
  left: -10px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(122, 204, 13, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.cl-hero-img-badge i { font-size: 16px; }
.cl-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.cl-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #b9bfd8;
  font-size: 13px;
}
.cl-crumb a { color: #cbd5e1; text-decoration: none; }
.cl-crumb a:hover { color: #7ACC0D; }
.cl-crumb span { opacity: 0.5; }
.cl-crumb .cl-crumb-current { color: #7ACC0D; opacity: 1; }

.cl-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.64px;
  margin-bottom: 16px;
}
.cl-flag .cl-flag-emoji { font-size: 18px; }
.cl-title {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.32px;
  margin: 0 0 18px;
}
.cl-sub {
  color: #c8cce6;
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 30px;
}
.cl-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 42px;
  margin-bottom: 30px;
}
.cl-hero-stat strong {
  display: block;
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}
.cl-hero-stat strong .cl-accent {
  background: linear-gradient(90deg, #7ACC0D 0%, #c5f07a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cl-hero-stat span { color: #a9b0c9; font-size: 13.5px; }

.cl-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.cl-btn-primary {
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e !important;
  box-shadow: 0 10px 26px rgba(122, 204, 13, 0.3);
}
.cl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(122, 204, 13, 0.45); }
.cl-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3);
}
.cl-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; transform: translateY(-2px); }

.cl-hero-right {
  position: relative;
}
.cl-hero-card {
  background: linear-gradient(180deg, rgba(18, 24, 60, 0.95) 0%, rgba(11, 15, 42, 0.95) 100%);
  border: 1px solid rgba(120, 140, 200, 0.2);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}
.cl-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(400px 200px at 100% 0%, rgba(122, 204, 13, 0.18), transparent 60%);
  pointer-events: none;
}
.cl-hero-card > * { position: relative; z-index: 1; }
.cl-hero-card h3 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  color: #fff;
}
.cl-hero-card p { color: #c8cce6; font-size: 13.5px; margin: 0 0 18px; }
.cl-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cl-hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9ecf7;
  font-size: 14px;
  line-height: 1.5;
}
.cl-hero-points li i {
  color: #7ACC0D;
  font-size: 17px;
  margin-top: 1px;
  flex: 0 0 auto;
}

/* --- SECTION HEADS --- */
.cl-section-head {
  text-align: center;
  margin-bottom: 46px;
}
.cl-section-head .cl-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  color: #568f00;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.96px;
  margin-bottom: 14px;
}
.cl-section-head h2 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: #09102e;
  margin: 0 0 10px;
  letter-spacing: -0.32px;
}
.cl-section-head h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 50%, #09102e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cl-section-head p {
  color: #5a6378;
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.cl-section-head-light h2 { color: #fff; }
.cl-section-head-light p { color: #c8cce6; }

/* --- SERVICES --- */
.cl-services {
  padding: var(--sec-py-md) 0;
  background: #f8faf4;
}
.cl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cl-svc {
  background: #fff;
  border: 1px solid #e6ecf1;
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cl-svc::before {
  content: "";
  position: absolute;
  inset: auto auto -40% -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}
.cl-svc:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 204, 13, 0.45);
  box-shadow: 0 18px 42px rgba(9, 16, 46, 0.1);
}
.cl-svc:hover::before { opacity: 1; }
.cl-svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.15) 0%, rgba(104, 177, 10, 0.1) 100%);
  color: #568f00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.cl-svc h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #09102e;
  margin: 0;
}
.cl-svc p {
  color: #5a6378;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 6px;
}
.cl-svc-link {
  color: #568f00;
  font-weight: 700;
  text-decoration: none;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
  margin-top: auto;
}
.cl-svc-link:hover { gap: 10px; color: #3d7c00; }

/* --- PORTFOLIO --- */
.cl-portfolio { padding: var(--sec-py-md) 0; background: #fff; }
.cl-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cl-project {
  border-radius: 18px;
  overflow: hidden;
  background: #09102e;
  position: relative;
  aspect-ratio: 4 / 3;
  transition: transform .3s ease;
  text-decoration: none;
  display: block;
}
.cl-project:hover { transform: translateY(-5px); }
.cl-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}
.cl-project:hover img { transform: scale(1.06); opacity: 0.6; }
.cl-project-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 16, 46, 0.9) 100%);
  color: #fff;
}
.cl-project-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.9);
  color: #09102e;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cl-project h4 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px;
}
.cl-project p { font-size: 13px; color: #c8cce6; margin: 0; }

/* --- BRANDS SCROLL --- */
.cl-brands {
  padding: var(--sec-py-md) 0;
  background: #f8faf4;
  border-top: 1px solid #eef2f5;
  border-bottom: 1px solid #eef2f5;
}
.cl-brands-marquee {
  overflow: hidden;
  margin-top: 20px;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.cl-brands-track {
  display: inline-flex;
  gap: 18px;
  animation: cl-scroll 48s linear infinite;
  will-change: transform;
}
@keyframes cl-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cl-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 80px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6ecf1;
  box-shadow: 0 4px 14px rgba(9, 16, 46, 0.04);
}
.cl-brand img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* --- WHY US --- */
.cl-why { padding: var(--sec-py-md) 0; background: #fff; }
.cl-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cl-why-left h2 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: #09102e;
  margin: 0 0 16px;
  letter-spacing: -0.32px;
}
.cl-why-left h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 50%, #09102e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cl-why-left p { color: #5a6378; font-size: 16px; line-height: 1.7; margin: 0 0 24px; }
.cl-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cl-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #344056;
  line-height: 1.5;
}
.cl-why-list li i {
  color: #7ACC0D;
  font-size: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
}
.cl-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cl-why-stat {
  padding: 26px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f5f8f1 0%, #ffffff 100%);
  border: 1px solid #e6ecf1;
  text-align: center;
}
.cl-why-stat strong {
  display: block;
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: #09102e;
  margin-bottom: 6px;
}
.cl-why-stat strong .cl-accent {
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cl-why-stat span { color: #5a6378; font-size: 13px; line-height: 1.5; }

/* --- TESTIMONIALS --- */
.cl-testimonials { padding: var(--sec-py-md) 0; background: #f8faf4; }
.cl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cl-quote {
  padding: 28px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e6ecf1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cl-quote:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(9, 16, 46, 0.08); }
.cl-quote-stars { color: #7ACC0D; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.cl-quote-body {
  color: #1c2438;
  font-size: 15.5px;
  line-height: 1.65;
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 500;
  margin: 0 0 20px;
}
.cl-quote-author { display: flex; align-items: center; gap: 12px; }
.cl-quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Fraunces', sans-serif;
  font-size: 16px;
}
.cl-quote-author strong { display: block; font-size: 14px; color: #09102e; font-weight: 700; }
.cl-quote-author span { font-size: 12.5px; color: #6b7591; }

/* --- PRICING --- */
.cl-pricing { padding: var(--sec-py-md) 0; background: #fff; }
.cl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cl-price {
  padding: 32px 28px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #e6ecf1;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.cl-price:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(9, 16, 46, 0.1); }
.cl-price-featured {
  border-color: #7ACC0D;
  background: linear-gradient(180deg, #09102e 0%, #0b1436 100%);
  color: #fff;
  box-shadow: 0 20px 44px rgba(9, 16, 46, 0.18);
}
.cl-price-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.cl-price h3 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  color: inherit;
}
.cl-price-desc {
  font-size: 13.5px;
  color: #5a6378;
  margin: 0 0 18px;
}
.cl-price-featured .cl-price-desc { color: #c8cce6; }
.cl-price-amt {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: #09102e;
  margin: 0 0 6px;
}
.cl-price-featured .cl-price-amt { color: #fff; }
.cl-price-amt sup { font-size: 20px; font-weight: 600; vertical-align: top; color: #568f00; }
.cl-price-featured .cl-price-amt sup { color: #c5f07a; }
.cl-price-note { font-size: 12.5px; color: #8893a7; margin: 0 0 22px; }
.cl-price-featured .cl-price-note { color: #a9b0c9; }
.cl-price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.cl-price ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #344056;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl-price-featured ul li { color: #e9ecf7; }
.cl-price ul li i { color: #7ACC0D; font-size: 15px; }
.cl-price-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .2s ease;
  background: #f5f8f1;
  color: #09102e;
}
.cl-price-cta:hover { transform: translateY(-2px); background: rgba(122, 204, 13, 0.18); }
.cl-price-featured .cl-price-cta {
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e;
}

/* --- FAQ --- */
/* --- TRUST BAR --- */
.cl-trust {
  padding: 44px 0 48px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
}
.cl-trust-label {
  text-align: center;
  color: #5a6378;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 28px;
}
.cl-trust-badges {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
}
.cl-trust-badges a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 4px 6px;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}
.cl-trust-badges a:hover { opacity: 1; transform: translateY(-2px); }
.cl-trust-badges img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 1199.98px) {
  .cl-trust-badges { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 28px;        display: flex;
        justify-content: center;
        flex-wrap: wrap; }
       .cl-trust-badges span {
    width: auto;
}
}
@media (max-width: 767.98px) {
  .cl-trust-badges { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 20px; }
  .cl-trust-badges a { height: 44px; }
  .cl-trust-badges img { max-height: 36px; }
}
@media (max-width: 479.98px) {
  .cl-trust-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.cl-faq { padding: var(--sec-py-md) 0; background: #f8faf4; }
.cl-faq-list { max-width: 840px; margin: 0 auto; }
.cl-faq-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.cl-faq-grid .cl-faq-list { max-width: none; margin: 0; }
.cl-faq-col { min-width: 0; }
.cl-faq-head { margin-bottom: 22px; text-align: left; }
.cl-faq-head .cl-eyebrow { margin: 0 0 14px; }
.cl-faq-title {
  margin: 0;
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: #09102e;
  line-height: 1.15;
  letter-spacing: -0.32px;
}
.cl-faq-title em {
  font-style: normal;
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 50%, #09102e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- UK Contact card (right of FAQ) ---- */
.cl-contact-col { min-width: 0; position: sticky; top: 24px; }
.cl-contact-card {
  position: relative;
  background: linear-gradient(160deg, rgba(122, 204, 13, 0.1) 0%, #ffffff 55%, #fbfdf5 100%);
  border: 1px solid rgba(122, 204, 13, 0.32);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(9, 16, 46, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.cl-contact-glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.3), transparent 65%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}
.cl-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.16);
  color: #568f00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cl-contact-title {
  margin: 14px 0 8px;
  font-family: 'Fraunces', 'Inter', sans-serif;
  color: #09102e;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.16px;
}
.cl-contact-title em {
  font-style: normal;
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cl-contact-sub {
  margin: 0 0 22px;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.6;
}
.cl-contact-meta {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cl-contact-meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e6ecf1;
  border-radius: 12px;
}
.cl-contact-ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7ACC0D, #3d7c00);
  color: #fff;
  font-size: 15px;
}
.cl-contact-meta li > div { display: flex; flex-direction: column; min-width: 0; }
.cl-contact-meta strong {
  color: #09102e;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
}
.cl-contact-meta strong a { color: inherit; text-decoration: none; }
.cl-contact-meta strong a:hover { color: #568f00; }
.cl-contact-meta span {
  color: #5a6378;
  font-size: 12.5px;
  margin-top: 2px;
}
.cl-contact-form { display: flex; flex-direction: column; gap: 12px; }
.cl-field { display: flex; flex-direction: column; gap: 6px; }
.cl-field label {
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.cl-field input,
.cl-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #dfe6ec;
  border-radius: 10px;
  color: #09102e;
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.cl-field input::placeholder,
.cl-field textarea::placeholder { color: #9aa3b2; }
.cl-field input:focus,
.cl-field textarea:focus {
  outline: none;
  border-color: #7ACC0D;
  box-shadow: 0 0 0 3px rgba(122, 204, 13, 0.18);
}
.cl-contact-submit {
  margin-top: 4px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #7ACC0D, #3d7c00);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cl-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(122, 204, 13, 0.4);
}
.cl-contact-note {
  margin: 6px 0 0;
  color: #5a6378;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cl-contact-note .bi { color: #568f00; }

@media (max-width: 991.98px) {
  .cl-faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .cl-contact-col { position: static; }
}
.cl-faq-item {
  background: #fff;
  border: 1px solid #e6ecf1;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.cl-faq-item:hover { box-shadow: 0 10px 24px rgba(9, 16, 46, 0.06); }
.cl-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: #09102e;
}
.cl-faq-item summary::-webkit-details-marker { display: none; }
.cl-faq-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(122, 204, 13, 0.14);
  color: #568f00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.cl-faq-item[open] .cl-faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #fff;
}
.cl-faq-item > div {
  padding: 0 24px 22px;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.7;
}

/* --- CTA BANNER --- */
.cl-cta-banner {
  padding: var(--sec-py-md) 0;
  background:
    radial-gradient(600px 300px at 85% 30%, rgba(122, 204, 13, 0.22), transparent 60%),
    linear-gradient(135deg, #0b1436 0%, #09102e 100%);
  color: #fff;
  position: relative;
}
.cl-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cl-cta-grid h2 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.32px;
  margin: 0 0 12px;
}
.cl-cta-grid p { color: #c8cce6; font-size: 15.5px; line-height: 1.65; margin: 0; max-width: 520px; }
.cl-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* --- CONTACT / INQUIRY --- */
.cl-contact { padding: var(--sec-py-md) 0; background: #fff; }
.cl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.cl-contact-left h2 {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: #09102e;
  margin: 0 0 14px;
  letter-spacing: -0.32px;
}
.cl-contact-left h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 50%, #09102e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cl-contact-left p { color: #5a6378; font-size: 15.5px; line-height: 1.7; margin: 0 0 26px; }
.cl-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cl-contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f5;
  color: #344056;
  font-size: 14.5px;
}
.cl-contact-info li:last-child { border-bottom: none; }
.cl-contact-info li i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(122, 204, 13, 0.14);
  color: #568f00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cl-contact-info li a { color: #09102e; text-decoration: none; font-weight: 600; }
.cl-contact-info li a:hover { color: #568f00; }

.cl-form {
  background: linear-gradient(180deg, #f8faf4 0%, #ffffff 100%);
  border: 1px solid #e6ecf1;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 14px 36px rgba(9, 16, 46, 0.06);
}
.cl-form-title {
  font-family: 'Fraunces', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #09102e;
  margin: 0 0 6px;
}
.cl-form-sub { color: #5a6378; font-size: 13.5px; margin: 0 0 22px; }
.cl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cl-form-field { display: flex; flex-direction: column; gap: 6px; }
.cl-form-field.cl-form-full { grid-column: 1 / -1; }
.cl-form-field label {
  font-size: 12.5px;
  color: #344056;
  font-weight: 600;
}
.cl-form-field input,
.cl-form-field select,
.cl-form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dde3ea;
  background: #fff;
  color: #09102e;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cl-form-field input:focus,
.cl-form-field select:focus,
.cl-form-field textarea:focus {
  border-color: #7ACC0D;
  box-shadow: 0 0 0 3px rgba(122, 204, 13, 0.15);
}
.cl-form-field textarea { min-height: 100px; resize: vertical; }
.cl-form-submit {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(122, 204, 13, 0.3);
  transition: transform .2s ease;
  margin-top: 6px;
}
.cl-form-submit:hover { transform: translateY(-2px); }
.cl-form-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8893a7;
  font-size: 12px;
  margin: 12px 0 0;
}
.cl-form-trust i { color: #7ACC0D; }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .cl-hero-grid,
  .cl-why-grid,
  .cl-contact-grid,
  .cl-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cl-cta-btns { justify-content: flex-start; }
  .cl-services-grid,
  .cl-portfolio-grid,
  .cl-testimonials-grid,
  .cl-pricing-grid { grid-template-columns: repeat(2, 1fr); }
.cl-pricing-grid > :last-child:nth-child(odd) {
        grid-column: 1 / 3;
        justify-self: center;
        width: 50%;
    }


}

@media (max-width: 767px) {
    .cl-pricing-grid > :last-child:nth-child(odd) {
        grid-column: 1;
        justify-self: center;
        width: 100%;
    }

    .cl-services-grid, .cl-portfolio-grid, .cl-testimonials-grid, .cl-pricing-grid {
        grid-template-columns: repeat(1, 1fr);
    }


   }

@media (max-width: 575px) {
  .cl-hero { padding: 60px 0 50px; }
  .cl-services,
  .cl-portfolio,
  .cl-why,
  .cl-testimonials,
  .cl-pricing,
  .cl-faq,
  .cl-contact { padding: var(--sec-py-sm) 0; }
  .cl-services-grid,
  .cl-portfolio-grid,
  .cl-testimonials-grid,
  .cl-pricing-grid,
  .cl-why-list,
  .cl-why-right,
  .cl-form-row { grid-template-columns: 1fr; }
  .cl-hero-stats { gap: 18px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .cl-brands-track { animation: none; }
}
