:root {
  --primary: #ff7a2f;
  --primary-dark: #ea651d;
  --green: #0e8d29;
  --green-deep: #07691d;
  --yellow: #ffc83d;
  --bg: #fff8f2;
  --text: #1d2433;
  --muted: #667085;
  --line: #efe3d8;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(28, 31, 43, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 61, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(14, 141, 41, 0.1), transparent 28%),
    var(--bg);
}

.py-lg-6 { padding-top: 6rem; padding-bottom: 6rem; }
.section-space { padding: 90px 0; }
.section-space-alt { padding: 90px 0; background: #fff; }

.hero-logo {
    margin-bottom: 20px;
}


.hero-logo img {

    height: 152px;

    width: auto;

}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f2 0%, #fff1e5 42%, #fff8f2 100%);
}
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .9;
}
.hero-section::before {
  width: 300px; height: 300px; right: -60px; top: -50px;
  background: rgba(255, 122, 47, 0.18);
}
.hero-section::after {
  width: 240px; height: 240px; left: -40px; bottom: 40px;
  background: rgba(14, 141, 41, 0.12);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: .04em;
}
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .98;
  font-weight: 900;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--primary-dark); }
.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.hero-proof {
  gap: 12px;
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.proof-chip i { color: var(--green); }

.btn-cta,
.btn-outline-cta,
.cta-band-btn {
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 800;
  border-width: 2px;
}
.btn-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 122, 47, .28);
}
.btn-cta:hover { color: #fff; transform: translateY(-2px); }
.btn-outline-cta {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-cta:hover {
  background: var(--green);
  color: #fff;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fff8f2 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  right: 28px;
  top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 700;
  z-index: 2;
}
.screen-frame {
  border-radius: 24px;
  border: 10px solid #1f2634;
  overflow: hidden;
  background: white;
}
.screen-topbar {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #f3f4f6;
}
.screen-topbar span {
  width: 10px; height: 10px; border-radius: 50%; background: #cdd5df;
}
.screen-body {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fff5ec 100%);
}
.mockup-headline { font-weight: 900; font-size: 1.55rem; margin-bottom: 12px; }
.mockup-sub { color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.mock-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 14px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.mock-card i { font-size: 1.4rem; color: var(--primary-dark); }
.mock-cta {
  background: linear-gradient(135deg, var(--green) 0%, #19b442 100%);
  color: white;
  text-align: center;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
}
.floating-stat {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
}
.floating-stat i { color: var(--green); font-size: 1.35rem; }
.floating-stat strong { display: block; font-size: .96rem; }
.floating-stat span { color: var(--muted); font-size: .82rem; }
.stat-1 { left: -18px; bottom: 94px; }
.stat-2 { right: -12px; bottom: 24px; }

.problem-strip { padding: 0 0 40px; }
.problem-box,
.service-card,
.feature-box,
.timeline-card,
.form-card,
.pc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0,0,0,.05);
  height: 100%;
}
.problem-box i,
.feature-box i,
.icon-wrap i {
  font-size: 1.5rem;
  color: var(--primary-dark);
}
.problem-box h3,
.service-card h3,
.feature-box h3,
.timeline-card h3 { font-size: 1.2rem; font-weight: 800; margin: 14px 0 10px; }
.problem-box p,
.service-card p,
.feature-box p,
.timeline-card p,
.section-heading p { color: var(--muted); line-height: 1.7; }

.section-heading { max-width: 780px; margin: 0 auto 20px; }
.section-heading h2 { font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.section-kicker {
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.icon-wrap {
  width: 68px; height: 68px; border-radius: 18px;
  background: rgba(255,122,47,.12);
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-wrap i { font-size: 1.65rem; }

.timeline-wrap { display: grid; gap: 18px; }
.timeline-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
}
.step-no {
  min-width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem;
}

.why-section { background: linear-gradient(180deg, #fff 0%, #fff8f2 100%); }
.feature-box { text-align: center; }
.feature-box i { font-size: 1.8rem; }

.cta-band { padding-bottom: 20px; }
.cta-band-inner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 58%, #20ba49 100%);
  color: white; border-radius: 32px; padding: 38px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow);
}
.cta-band-inner h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 900; }
.cta-band-inner p { color: rgba(255,255,255,.85); margin-bottom: 0; }

.form-card { padding: 42px; }
.form-label { font-weight: 700; color: var(--text); }
.funnel-input {
  border-radius: 16px;
  border: 1px solid #ded7cf;
  padding: 14px 16px;
}
.funnel-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .22rem rgba(255,122,47,.16);
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 991.98px) {
  .py-lg-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .section-space, .section-space-alt { padding: 72px 0; }
  .hero-badge { position: static; display: inline-flex; margin-bottom: 16px; }
  .stat-1, .stat-2 { position: static; margin-top: 16px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 575.98px) {
  .hero-card, .problem-box, .service-card, .feature-box, .timeline-card, .form-card { padding: 20px; }
  .mockup-grid { grid-template-columns: 1fr 1fr; }
}


/* =========================================================
   WEBSITE DEVELOPMENT FUNNEL PAGE - GREEN THEME
========================================================= */

.website-funnel-page {
  background: #f7fff8;
  font-family: 'Inter', sans-serif;
}

.wf-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 61, .34), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 122, 47, .18), transparent 28%),
    linear-gradient(135deg, #064b16 0%, #0e8d29 55%, #07691d 100%);
  color: #fff;
}

.wf-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.wf-shape-one {
  width: 520px;
  height: 520px;
  background: rgba(255, 200, 61, .16);
  right: -180px;
  top: -180px;
}

.wf-shape-two {
  width: 380px;
  height: 380px;
  background: rgba(255, 122, 47, .16);
  left: -120px;
  bottom: -120px;
}

.wf-hero .container {
  position: relative;
  z-index: 2;
}

.wf-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 22px;
}

.wf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 200, 61, .18);
  color: #ffc83d;
  border: 1px solid rgba(255, 200, 61, .4);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wf-kicker.center {
  justify-content: center;
}

.wf-title {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: .96;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.wf-title span {
  display: block;
  color: var(--yellow);
}

.wf-copy {
  max-width: 640px;
  color: rgba(255,255,255,.88);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.wf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wf-main-btn,
.wf-outline-btn,
.wf-package-btn,
.wf-submit-btn {
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 900;
  border: 0;
}

.wf-main-btn,
.wf-submit-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
  color: #064b16;
  box-shadow: 0 18px 38px rgba(255,122,47,.32);
}

.wf-main-btn:hover,
.wf-submit-btn:hover {
  color: #064b16;
  transform: translateY(-2px);
}

.wf-outline-btn {
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
}

.wf-outline-btn:hover {
  background: #fff;
  color: var(--green-deep);
}

.wf-preview-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  transform: rotate(-1.5deg);
}

.wf-browser {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #eff8f1;
  border-radius: 18px 18px 0 0;
}

.wf-browser span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.wf-browser span:nth-child(2) {
  background: var(--yellow);
}

.wf-browser span:nth-child(3) {
  background: var(--green);
}

.wf-preview-content {
  min-height: 480px;
  border-radius: 0 0 22px 22px;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(255,200,61,.28), transparent 28%),
    linear-gradient(135deg, #0e8d29 0%, #07691d 100%);
}

.wf-preview-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  margin-bottom: 20px;
}

.wf-preview-content h3 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.wf-preview-content p {
  color: rgba(255,255,255,.88);
  line-height: 1.7;
}

.wf-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.wf-preview-grid div {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 20px;
  font-weight: 800;
}

.wf-preview-grid i {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
  margin-bottom: 10px;
}

.wf-floating-price {
  position: absolute;
  right: 70px;
  bottom: 25px;
  background: var(--yellow);
  color: var(--green-deep);
  border-radius: 24px;
  padding: 16px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.wf-floating-price small {
  display: block;
  font-weight: 800;
}

.wf-floating-price strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.wf-service-strip {
  margin-top: -35px;
  position: relative;
  z-index: 5;
  padding-bottom: 70px;
  background: #f7fff8;
}

.wf-strip-box {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(7,105,29,.14);
}

.wf-strip-title {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--yellow));
  color: var(--green-deep);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.wf-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wf-service-list div {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1d2433;
}

.wf-service-list i {
  color: var(--green);
  margin-right: 8px;
}

.wf-benefits,
.wf-process,
.wf-contact {
  /* padding: 85px 0; */
  background: #f7fff8;
}

.wf-packages {
  padding: 85px 0;
  background:
    radial-gradient(circle at top left, rgba(255,200,61,.22), transparent 28%),
    #ffffff;
}

.wf-section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
}

.wf-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.wf-section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.wf-benefit-card,
.wf-step-card,
.wf-form-card {
  background: #fff;
  border: 1px solid rgba(14,141,41,.12);
  border-radius: 28px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 16px 38px rgba(7,105,29,.08);
}

.wf-benefit-card i {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255,122,47,.12);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.wf-benefit-card h3,
.wf-step-card h3 {
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.wf-benefit-card p,
.wf-step-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.wf-package-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14,141,41,.12);
  border-radius: 30px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(7,105,29,.09);
  overflow: hidden;
}

.wf-package-card.featured {
  border: 3px solid var(--green);
  transform: translateY(-12px);
}

.wf-package-card.premium {
  background:
    radial-gradient(circle at top right, rgba(255,200,61,.2), transparent 28%),
    #fff;
}

.wf-popular-tag {
  position: absolute;
  top: 16px;
  right: -42px;
  transform: rotate(40deg);
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  padding: 8px 52px;
  font-size: .8rem;
}

.wf-package-ribbon {
  display: inline-block;
  background: var(--green-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wf-package-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.wf-package-pages {
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.wf-package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.wf-package-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: #1d2433;
  margin-bottom: 13px;
  line-height: 1.35;
}

.wf-package-card li i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 2px;
}

.wf-package-btn {
  width: 100%;
  background: var(--yellow);
  color: var(--green-deep);
}

.wf-package-btn:hover {
  background: var(--primary);
  color: #fff;
}

.wf-renewal-note {
  margin: 34px auto 0;
  max-width: 720px;
  background: #f7fff8;
  border: 1px solid rgba(14,141,41,.14);
  color: #1d2433;
  border-radius: 18px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
}

.wf-renewal-note i {
  color: var(--primary);
  margin-right: 6px;
}

.wf-step-card span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--primary), var(--yellow));
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.wf-cta {
  padding: 40px 0;
  background: #fff;
}

.wf-cta-box {
  background:
    radial-gradient(circle at top right, rgba(255,200,61,.26), transparent 30%),
    linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 22px 55px rgba(7,105,29,.22);
}

.wf-cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.wf-cta-box p {
  color: rgba(255,255,255,.86);
  margin: 0;
}

.wf-form-card {
  padding: 42px;
}

.wf-form-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-deep);
}

.wf-form-card p {
  color: var(--muted);
}

.wf-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.9);
  padding: 25px 0;
}

.wf-footer span {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .wf-hero {
    padding: 70px 0;
  }

  .wf-preview-card {
    transform: none;
  }

  .wf-floating-price {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .wf-service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .wf-package-card.featured {
    transform: none;
  }

  .wf-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .wf-logo img {
    height: 95px;
  }

  .wf-service-list {
    grid-template-columns: 1fr;
  }

  .wf-preview-content {
    min-height: auto;
    padding: 28px;
  }

  .wf-preview-grid {
    grid-template-columns: 1fr;
  }

  .wf-strip-box,
  .wf-form-card,
  .wf-cta-box {
    padding: 24px;
  }
}

.messenger-float {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  background: #0084ff;
  color: #fff !important;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  z-index: 2147483647 !important;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 132, 255, 0.35);
}

.messenger-float i {
  font-size: 24px;
}

.messenger-float:hover {
  color: #fff !important;
  transform: translateY(-3px);
}

/* =========================================================
   WEBSITE FUNNEL COMBINED CONTACT FORM + INFO SECTION
========================================================= */

.wf-contact-combined {
  padding: 85px 0;
  background:
    radial-gradient(circle at top left, rgba(14, 141, 41, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fff8 0%, #ffffff 100%);
}

.wf-combined-card,
.wf-contact-side-card,
.wf-contact-note {
  background: #ffffff;
  border: 1px solid rgba(14, 141, 41, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(7, 105, 29, 0.08);
}

.wf-combined-card {
  height: 100%;
}

.wf-contact-side-card {
  height: 100%;
  padding: 34px;
}

.wf-contact-side-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.wf-contact-side-head h3 {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.wf-contact-side-head p {
  color: var(--muted);
  margin: 0;
}

.wf-contact-side-item {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(29, 36, 51, 0.08);
}

.wf-contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  background: rgba(255, 122, 47, 0.12);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.wf-contact-icon.big {
  width: 64px;
  height: 64px;
  min-width: 64px;
  font-size: 1.7rem;
}

.wf-contact-side-item h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #1d2433;
  margin-bottom: 5px;
}

.wf-contact-side-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.wf-contact-side-item a {
  color: var(--muted);
  text-decoration: none;
}

.wf-contact-side-item a:hover {
  color: var(--primary-dark);
}

.wf-contact-note {
  margin-top: 26px;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.wf-contact-note i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(14, 141, 41, 0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.wf-contact-note strong {
  color: var(--green-deep);
}

@media (max-width: 991.98px) {
  .wf-contact-note {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .wf-contact-side-card {
    padding: 24px;
  }

  .wf-contact-side-head,
  .wf-contact-side-item {
    align-items: flex-start;
  }
}

/* =========================================================
Footer
========================================================= */


.wf-footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.wf-footer-link i {
  margin-right: 6px;
}

.wf-footer-link:hover {
  color: #FFC107; /* your accent color */
}

/* =========================================================
   WEBSITE HIGHLIGHT SECTION
========================================================= */

.website-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f7fff8 100%);
}

.website-highlight-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.website-highlight-desc {
  color: var(--muted);
  margin-bottom: 20px;
}

.website-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.website-highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.website-highlight-list i {
  color: var(--green);
}

/* RIGHT CARD */
.website-highlight-card {
  position: relative;
}

.website-preview-box {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(7, 105, 29, 0.08);
}

.browser-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 5px;
}

.website-preview-content {
  margin-top: 20px;
}

.preview-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-features span {
  background: rgba(14, 141, 41, 0.08);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.price-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: linear-gradient(135deg, #FF7A00, #FFC107);
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.price-badge small {
  display: block;
  font-size: 0.7rem;
}

.price-badge strong {
  font-size: 1.2rem;
}