/* ===== CONFIGURE PER PROSPECT ===== */
  /* Business name, review count, etc. are set in the JS at the bottom */

  :root {
    --teal: #2D5F5D;
    --teal-dark: #1E4745;
    --teal-light: #3A7A77;
    --teal-bg: #EBF5F4;
    --coral: #E8705A;
    --coral-dark: #D4604B;
    --coral-light: #FAE8E4;
    --white: #FFFFFF;
    --off-white: #F7F9F9;
    --gray-900: #1C2B2A;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --green: #2A9D6E;
    --green-bg: #F2FAF6;
    --red: #C45B5B;
    --red-light: #F0D4D4;
    --red-bg: #FBF4F4;
    --orange: #F5811F;
  }


	.comp_calc_sec {
		font-family: 'DM Sans', sans-serif;
	}

  .container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

  /* ========== HERO ========== */
  .hero {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    padding: 60px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto 16px;
  }

  .hero h1 .hl {
    color: var(--coral);
  }

  .hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232,112,90,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,112,90,0.5);
  }

  .hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
  }

  /* Card visual placeholder in hero */
  .hero-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
  }

  .hero-card-img {
    width: 180px;
    height: 110px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
  }

  .hero-card-img:nth-child(1) { transform: rotate(-6deg) translateY(8px); }
  .hero-card-img:nth-child(2) { transform: rotate(3deg); }

  /* ========== PERSONALIZED MESSAGE ========== */
  .personal {
    padding: 60px 24px;
    text-align: center;
  }

  .personal-tag {
    font-size: 14px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .personal h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
  }

  .personal h2 .biz-name {
    color: var(--coral);
  }

  .personal-sub {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }

  .personal-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .ps { text-align: center; }

  .ps-num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
  }

  .ps-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
  }

  /* ========== SECTION SHARED ========== */
  .section { padding: 60px 0; }

  .section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal);
    margin-bottom: 8px;
  }

  .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.15;
  }

  .section-desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 36px;
  }

  /* ========== HOW IT WORKS ========== */
  .how-bg {
    background: var(--off-white);
    padding: 60px 0;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
  }

  .step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
  }

  .step-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.55;
  }

  /* ========== COMPARISON TABLE ========== */
  .table-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  }

  .comp-table { 
	  width: 100%;
	  border-collapse: collapse;
	  font-size: 14.5px;
	  margin: 0;
	  border-radius: 0;
}

  .comp-table thead th {
    padding: 18px 20px;
    text-align: center !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid var(--gray-200) !important;
    color: var(--gray-500) !important;
    background: var(--off-white) !important;
	  box-shadow: none;
	  line-height: normal;
  }

  .comp-table thead th:first-child { text-align: left !important; color: var(--gray-700) !important; }

  .comp-table thead th.trc {
    color: var(--white) !important;
    background: var(--teal) !important;
    border-left: 2px solid var(--teal) !important;
    border-right: 2px solid var(--teal) !important;
  }

  .comp-table tbody tr { transition: background 0.15s; }
  .comp-table tbody tr:hover { background: var(--off-white); }
  .comp-table tbody tr:hover td.trc { background: var(--teal-bg); }
  .comp-table tbody tr:nth-child(even) td.trc { background: rgba(45,95,93,0.06) !important; }
  .comp-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--gray-100); box-shadow: none !important; }

  .comp-table td { padding: 13px 20px; text-align: center; color: var(--gray-600); border: 0; }
  .comp-table td:first-child { text-align: left; font-weight: 500; color: var(--gray-900); box-shadow: none !important; }

  .comp-table td.trc {
	  background: var(--teal-bg) !important;
	  border-left: 2px solid var(--teal);
	  border-right: 2px solid var(--teal);
	  box-shadow: none;
  }

  .comp-table tbody tr:last-child td.trc { border-bottom: 2px solid var(--teal); }

  .ck {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    font-size: 14px; font-weight: 700;
  }

  td:not(.trc) .ck { background: rgba(42,157,110,0.1); color: var(--green); }
  td.trc .ck {
    background: var(--teal);
    color: var(--white);
    width: 30px;
    height: 30px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(45,95,93,0.25);
  }

  .cx {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(196,91,91,0.08); color: var(--red);
    font-size: 14px; font-weight: 700;
  }

  .meh { color: var(--gray-400); font-size: 13px; font-style: italic; }

  /* ========== WHY REVIEWS MATTER ========== */
  .why-bg { background: var(--teal); padding: 60px 0; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
  }

  .why-card {
    text-align: center;
    padding: 24px 16px;
  }

  .why-num {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--coral);
    line-height: 1;
  }

  .why-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    line-height: 1.4;
  }

  /* ========== CALCULATOR ========== */
  .calc-section {
    background: var(--white);
    border-radius: 24px;
    padding: 56px 48px;
    border: 1px solid rgba(45,95,93,0.08);
    box-shadow: 0 4px 32px rgba(45,95,93,0.06), 0 1px 4px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
  }

  .calc-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--coral));
    opacity: 0.7;
    border-radius: 24px 24px 0 0;
  }

  .calc-header { text-align: center; margin-bottom: 44px; }

  .calc-header .section-title { letter-spacing: -0.5px; }

  .calc-header .section-tag { 
    display: inline-block;
    background: rgba(45,95,93,0.06);
    padding: 5px 14px;
    border-radius: 100px;
  }

  .calc-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 44px;
  }

  .input-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 22px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .input-card:hover {
    border-color: rgba(45,95,93,0.2);
    box-shadow: 0 2px 12px rgba(45,95,93,0.06);
  }

  .input-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    display: block;
  }

  .slider-row { display: flex; align-items: center; gap: 12px; }

  .calc-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 4px;
    background: var(--gray-200);
    outline: none;
    cursor: pointer;
    transition: background 0.15s;
  }

  .calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(45,95,93,0.35);
    border: 3px solid var(--white);
  }

  .calc-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(45,95,93,0.35);
  }

  .input-box {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 6px 12px;
    min-width: 84px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .input-box:hover { border-color: rgba(45,95,93,0.25); }

  .input-box:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(45,95,93,0.08);
  }

  .input-prefix {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
    user-select: none;
    opacity: 0.7;
  }

  .num-input {
    font-family: 'Outfit', sans-serif;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--teal) !important;
    width: 52px !important;
    text-align: right;
    background: none !important;
    border: none !important;
    outline: none !important;
    -moz-appearance: textfield;
    box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
  }

	input[type="number"].num-input:focus {
		 background: none !important;
	}

  .num-input::-webkit-inner-spin-button,
  .num-input::-webkit-outer-spin-button {
    -webkit-appearance: none; margin: 0;
  }

  /* Growth table */
  .growth-table-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--white);
    margin-bottom: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
  }

  .growth-table { width: 100%; border-collapse: collapse; }

  .growth-table thead th {
    padding: 16px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .growth-table thead th:first-child { text-align: left; color: var(--gray-400); background: var(--white) !important; font-weight: 600; }
  .growth-table thead th.wo-h { color: var(--red); background: rgba(196,91,91,0.06); }
  .growth-table thead th.w-h { color: var(--green); background: rgba(42,157,110,0.06); }
  .growth-table thead th.rev-h { color: var(--green); background: rgba(42,157,110,0.06); border-left: 1px solid var(--gray-200); }

  .growth-table tbody td {
    padding: 15px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--gray-600);
	box-shadow: none;
  }

  .growth-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.01); }
  .growth-table tbody tr:nth-child(even) td.wo-r { background: rgba(196,91,91,0.04); }
  .growth-table tbody tr:nth-child(even) td.w-r { background: rgba(42,157,110,0.05); }
  .growth-table tbody tr:nth-child(even) td.rev-d { background: rgba(42,157,110,0.05); }

  .growth-table tbody td:first-child {
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--gray-500);
    font-size: 14px;
  }

  .growth-table tbody td.wo-r {
    background: rgba(196,91,91,0.03);
    font-weight: 700;
    color: var(--gray-400);
  }

  .growth-table tbody td.w-r {
    background: rgba(42,157,110,0.03);
    font-weight: 700;
    color: var(--green);
  }

  .growth-table tbody td.rev-d {
    background: rgba(42,157,110,0.03);
    font-weight: 700;
    color: var(--green);
    border-left: 1px solid var(--gray-200);
  }

  .growth-table tbody tr:last-child td { border-bottom: none; font-size: 16px; }
  .growth-table tbody tr:last-child td:first-child { font-weight: 800; }
  .growth-table tbody tr:last-child td.wo-r { background: rgba(196,91,91,0.05); }
  .growth-table tbody tr:last-child td.w-r { background: rgba(42,157,110,0.07); font-size: 18px; color: #1E8C5A; }
  .growth-table tbody tr:last-child td.rev-d { background: rgba(42,157,110,0.07); font-size: 18px; color: #1E8C5A; }

  .table-note {
    font-size: 12px; color: var(--gray-400);
    text-align: center; line-height: 1.5; margin-bottom: 20px;
    letter-spacing: 0.2px;
  }

  /* Calc summary */
  .calc-summary {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(45,95,93,0.2);
  }

  .cs-item { text-align: center; flex: 1; min-width: 120px; }

  .cs-label {
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.4); margin-bottom: 6px;
  }

  .cs-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px; font-weight: 900; line-height: 1;
    letter-spacing: -0.5px;
  }

  .cs-num.teal-hl { color: var(--coral); }
  .cs-num.green { color: #6EDBA5; }
  .cs-arrow { color: rgba(255,255,255,0.12); font-size: 20px; }

  /* ========== COST SECTION ========== */
  .cost-bar {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 44px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cost-left { flex: 1; min-width: 260px; }

  .cost-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
  }

  .cost-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
  }

  .cost-cards { display: flex; gap: 16px; flex-wrap: wrap; }

  .cost-card {
    text-align: center; padding: 22px 24px;
    border-radius: 12px; min-width: 130px;
  }

  .cost-card.bad {
    background: rgba(196,91,91,0.04);
    border: 1px solid rgba(196,91,91,0.1);
  }

  .cost-card.good {
    background: var(--teal-bg);
    border: 2px solid var(--teal);
    box-shadow: 0 4px 16px rgba(45,95,93,0.12);
  }

  .cost-card-label {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 1.5px; font-weight: 700;
    color: var(--gray-500); margin-bottom: 6px;
  }

  .cost-card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 30px; font-weight: 800; line-height: 1;
  }

  .cost-card.bad .cost-card-price { color: var(--red); }
  .cost-card.good .cost-card-price { color: var(--teal); }
  .cost-card.good .cost-card-label { color: var(--teal-dark); }
  .cost-card-sub { font-size: 11px; color: var(--gray-500); margin-top: 3px; }

  /* ========== TESTIMONIALS ========== */
  .test-bg { background: var(--teal); padding: 60px 0; }

  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
  }

  .test-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(4px);
  }

  .test-stars { color: #FBBF24; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }

  .test-quote {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
  }

  .test-author {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
  }

  .test-biz {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }

  /* ========== CTA ========== */
  .cta-section {
    padding: 70px 24px;
    text-align: center;
  }

  .cta-urgency {
    display: inline-block;
    background: var(--coral-light);
    border: 1px solid var(--coral);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    max-width: 560px;
    margin: 0 auto 10px;
    line-height: 1.2;
  }

  .cta-sub {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232,112,90,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,112,90,0.4);
  }

  .cta-fine {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 12px;
  }

  /* ========== ANIMATIONS ========== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-inputs { grid-template-columns: 1fr; }
    .calc-section { padding: 36px 24px; }
    .cost-bar { padding: 28px 20px; gap: 24px; }
    .cost-cards { width: 100%; justify-content: center; }
    .test-grid { grid-template-columns: 1fr; }
    .cs-arrow { display: none; }
    .calc-summary { padding: 20px; }
    .cs-num { font-size: 24px; }
    .hero-cards { gap: 12px; }
    .hero-card-img { width: 140px; height: 90px; }
    .personal-stats { gap: 24px; }
    .comp-table { font-size: 13px; }
    .comp-table td, .comp-table th { padding: 12px 14px; }
  }

  @media (max-width: 500px) {
    .table-wrap { overflow-x: auto; }
    .growth-table-wrap { overflow-x: auto; }
  }