: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;
}

/* =========================================================
   KIWI CORPORATE SALES PANEL HOMEPAGE
========================================================= */

body.kiwi-corporate-page {
  --corp-orange: #f26a21;
  --corp-orange-dark: #cc4f12;
  --corp-yellow: #f7bd2f;
  --corp-green: #238a42;
  --corp-green-dark: #0f5f2a;
  --corp-ink: #111827;
  --corp-navy: #172033;
  --corp-muted: #667085;
  --corp-line: #e7ebf0;
  --corp-soft: #f8fafc;
  background: #ffffff;
  color: var(--corp-ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

html:has(body.kiwi-corporate-page) {
  overflow-x: hidden;
}

.kiwi-corporate-page a {
  text-decoration: none;
}

.kiwi-corporate-page .reveal-up {
  opacity: 1;
  transform: none;
}

.kiwi-corporate-page .container {
  max-width: 1180px;
}

.kiwi-funnel-page .site-header {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(231, 235, 240, .86);
  backdrop-filter: blur(18px);
}

.site-header .navbar {
  padding: 14px 0;
}

.site-header .navbar-brand img {
  width: 156px;
  height: auto;
}

.site-header .nav-link {
  color: #3b4454;
  font-weight: 700;
  font-size: .94rem;
  padding: 10px 12px;
}

.site-header .nav-link:hover {
  color: var(--corp-orange-dark);
}

.nav-cta,
.kiwi-corporate-page .btn-cta {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--corp-orange), var(--corp-yellow));
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(242, 106, 33, .24);
}

.nav-cta {
  padding: 10px 16px;
}

.kiwi-corporate-page .btn-cta {
  padding: 14px 22px;
}

.nav-cta:hover,
.kiwi-corporate-page .btn-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.kiwi-corporate-page .btn-outline-cta {
  border: 1px solid var(--corp-line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--corp-green-dark);
  font-weight: 900;
  padding: 13px 22px;
}

.kiwi-corporate-page .btn-outline-cta:hover {
  border-color: var(--corp-green);
  background: #f0fbf4;
  color: var(--corp-green-dark);
}

.corp-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 70px 0 84px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 58%, rgba(255,247,235,.88) 100%),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.corp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--corp-orange), var(--corp-yellow), var(--corp-green));
}

.corp-hero h1 {
  max-width: 930px;
  margin: 0 auto 20px;
  color: #0d1830;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .98;
  font-weight: 900;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--corp-orange-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero-kicker {
  padding: 9px 13px;
  border: 1px solid rgba(242, 106, 33, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
}

.hero-lead {
  max-width: 760px;
  color: var(--corp-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.funnel-logo {
  text-align: center;
  margin-bottom: 26px;
}

.funnel-logo img {
  width: 118px;
  height: auto;
}

.funnel-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px auto 0;
  max-width: 980px;
}

.funnel-flow div {
  position: relative;
  padding: 22px 18px;
  border: 1px solid rgba(231, 235, 240, .92);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 36px rgba(16,24,40,.08);
}

.funnel-flow div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 3;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--corp-orange), var(--corp-yellow));
}

.funnel-flow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(242,106,33,.1);
  color: var(--corp-orange-dark);
  font-size: 1.2rem;
}

.funnel-flow strong,
.funnel-flow span {
  display: block;
}

.funnel-flow strong {
  color: #101828;
  font-size: 1.05rem;
  font-weight: 900;
}

.funnel-flow span {
  color: var(--corp-muted);
  font-size: .88rem;
  font-weight: 700;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid var(--corp-line);
  border-radius: 12px;
  background: rgba(255,255,255,.86);
}

.trust-row strong {
  display: block;
  color: var(--corp-green-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.trust-row span {
  color: var(--corp-muted);
  font-size: .9rem;
  font-weight: 700;
}

.sales-panel {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 34px 80px rgba(16, 24, 40, .2);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #101828;
  color: #ffffff;
}

.panel-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.panel-top span:nth-child(2) {
  background: var(--corp-yellow);
}

.panel-top span:nth-child(3) {
  background: var(--corp-green);
}

.panel-top strong {
  margin-left: auto;
  font-size: .86rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.panel-body {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(247,189,47,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.panel-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #132039, #0d1426);
  color: #ffffff;
}

.panel-hero-card small,
.panel-tile span {
  display: block;
  color: rgba(255,255,255,.68);
  font-weight: 700;
}

.panel-hero-card strong {
  display: block;
  font-size: 2.3rem;
  font-weight: 900;
}

.panel-growth {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(35,138,66,.18);
  color: #88e0a2;
  font-weight: 900;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.panel-tile {
  min-height: 156px;
  padding: 18px;
  border-radius: 16px;
  color: #ffffff;
}

.panel-tile i {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.panel-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.panel-tile.orange { background: linear-gradient(135deg, #f26a21, #d95317); }
.panel-tile.green { background: linear-gradient(135deg, #238a42, #0f5f2a); }
.panel-tile.yellow { background: linear-gradient(135deg, #e4a700, #f7bd2f); color: #2c2100; }
.panel-tile.yellow span { color: rgba(44, 33, 0, .68); }
.panel-tile.dark { background: linear-gradient(135deg, #263247, #101828); }

.panel-progress {
  margin-top: 18px;
}

.progress-line {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ebf0;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--corp-orange), var(--corp-yellow), var(--corp-green));
}

.panel-progress p {
  margin: 8px 0 0;
  color: var(--corp-muted);
  font-size: .92rem;
}

.logo-strip {
  padding: 24px 0;
  background: #ffffff;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--corp-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 24, 40, .06);
}

.strip-inner span {
  color: var(--corp-muted);
  font-weight: 800;
}

.strip-inner strong {
  color: #192336;
  font-weight: 900;
}

.strip-inner .strip-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--corp-orange), var(--corp-yellow));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(242,106,33,.22);
  white-space: nowrap;
}

.funnel-pain-section {
  padding: 58px 0 24px;
  background: #ffffff;
}

.funnel-pain-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--corp-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16,24,40,.05);
}

.funnel-pain-card.active {
  border-color: rgba(242,106,33,.35);
  background: linear-gradient(180deg, #fff8ed, #ffffff);
}

.funnel-pain-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(35,138,66,.1);
  color: var(--corp-green-dark);
  font-size: 1.25rem;
}

.funnel-pain-card.active i {
  background: rgba(242,106,33,.12);
  color: var(--corp-orange-dark);
}

.funnel-pain-card h3 {
  color: #101828;
  font-size: 1.2rem;
  font-weight: 900;
}

.funnel-pain-card p {
  color: var(--corp-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.kiwi-corporate-page .section-space {
  padding: 92px 0;
}

.kiwi-corporate-page .section-heading {
  max-width: 760px;
}

.kiwi-corporate-page .section-heading h2,
.process-section h2,
.proposal-inner h2,
.form-card h2 {
  color: #0d1830;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
}

.kiwi-corporate-page .section-heading p,
.process-section p,
.proposal-inner p,
.form-card p {
  color: var(--corp-muted);
  line-height: 1.75;
}

.solutions-section {
  background: #ffffff;
}

.solution-card {
  position: relative;
  min-height: 310px;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--corp-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,106,33,.38);
  box-shadow: 0 28px 54px rgba(16, 24, 40, .1);
}

.solution-card.featured {
  border-color: rgba(242,106,33,.38);
  background:
    linear-gradient(180deg, rgba(255,247,235,.95), #ffffff);
}

.solution-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(242,106,33,.1);
  color: var(--corp-orange-dark);
  font-size: 1.55rem;
}

.solution-card h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.3rem;
  font-weight: 900;
}

.solution-card p {
  color: var(--corp-muted);
  line-height: 1.72;
  margin-bottom: 24px;
}

.solution-card a {
  color: var(--corp-green-dark);
  font-weight: 900;
}

.process-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 26px;
  border: 1px solid var(--corp-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 24, 40, .05);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--corp-orange-dark);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.process-step h3 {
  color: #101828;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
}

.portfolio-section {
  background: #ffffff;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.portfolio-tab {
  border: 1px solid var(--corp-line);
  border-radius: 999px;
  background: #ffffff;
  color: #344054;
  padding: 11px 17px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.portfolio-tab:hover,
.portfolio-tab.active {
  border-color: rgba(242,106,33,.46);
  background: linear-gradient(135deg, var(--corp-orange), var(--corp-yellow));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(242,106,33,.18);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--corp-line);
  border-radius: 16px;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 18px 42px rgba(16, 24, 40, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(16, 24, 40, .12);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}

.portfolio-media::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef6b5a;
  box-shadow: 16px 0 0 #f6c542, 32px 0 0 #43b36a;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.04);
}

.portfolio-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.portfolio-content span {
  color: var(--corp-green);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 900;
}

.portfolio-content h3 {
  margin: 12px 0 10px;
  color: #111827;
  font-size: 1.32rem;
  font-weight: 900;
}

.portfolio-content p {
  color: var(--corp-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.portfolio-content strong {
  margin-top: auto;
  color: var(--corp-orange-dark);
}

.proposal-band {
  padding: 24px 0 88px;
  background: #ffffff;
}

.proposal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(247,189,47,.26), transparent 32%),
    linear-gradient(135deg, #0f5f2a, #238a42);
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(15, 95, 42, .22);
}

.proposal-inner .section-kicker,
.proposal-inner h2,
.proposal-inner p {
  color: #ffffff;
}

.proposal-inner p {
  max-width: 720px;
  color: rgba(255,255,255,.84);
  margin-bottom: 0;
}

.proposal-inner .btn {
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--corp-green-dark);
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.kiwi-corporate-page .form-card,
.contact-panel {
  height: 100%;
  border: 1px solid var(--corp-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(16, 24, 40, .08);
}

.kiwi-corporate-page .form-card {
  padding: 34px;
}

.kiwi-corporate-page .funnel-input {
  border-radius: 10px;
  border: 1px solid #d8dee8;
  padding: 13px 14px;
  background: #ffffff;
}

.kiwi-corporate-page .funnel-input:focus {
  border-color: var(--corp-orange);
  box-shadow: 0 0 0 .2rem rgba(242, 106, 33, .14);
}

.contact-panel {
  padding: 28px;
}

.contact-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--corp-line);
}

.contact-panel-head i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(242,106,33,.11);
  color: var(--corp-orange-dark);
  font-size: 1.5rem;
}

.contact-panel h3,
.contact-panel h4 {
  color: #101828;
  font-weight: 900;
}

.contact-panel p {
  color: var(--corp-muted);
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--corp-line);
}

.contact-item > i {
  color: var(--corp-green);
  font-size: 1.2rem;
}

.contact-item span {
  display: block;
  color: var(--corp-muted);
  font-size: .84rem;
  font-weight: 800;
}

.contact-item strong {
  color: #182235;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--corp-line);
  background: #101828;
  color: rgba(255,255,255,.72);
}

.site-footer img {
  width: 44px;
  height: auto;
  margin-right: 10px;
}

.site-footer p {
  display: inline-block;
  vertical-align: middle;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

.kiwi-corporate-page .messenger-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #238a42, #f26a21);
  color: #ffffff;
  font-size: 1.65rem;
  box-shadow: 0 18px 34px rgba(16,24,40,.24);
}

@media (max-width: 991.98px) {
  .corp-hero {
    padding: 72px 0 62px;
  }

  .site-header .navbar-collapse {
    padding: 16px 0 8px;
  }

  .strip-inner,
  .proposal-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .trust-row,
  .panel-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    align-items: stretch;
  }

  .strip-inner strong {
    padding-top: 10px;
    border-top: 1px solid var(--corp-line);
  }

  .kiwi-corporate-page .section-space {
    padding: 70px 0;
  }

  .proposal-band {
    padding-bottom: 70px;
  }

  .proposal-inner,
  .kiwi-corporate-page .form-card,
  .contact-panel {
    padding: 24px;
  }

  .corp-hero {
    min-height: auto;
  }

  .funnel-flow {
    grid-template-columns: 1fr;
  }

  .funnel-flow div:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -13px;
    width: 2px;
    height: 24px;
    transform: translateX(50%);
    background: linear-gradient(180deg, var(--corp-orange), var(--corp-yellow));
  }
}

@media (max-width: 575.98px) {
  .site-header .navbar-brand img {
    width: 132px;
  }

  .corp-hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
