 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --black: #575757;
    --white: #fafaf8;
    --accent: #c8f041;
    --accent-dark: #a8d030;
    --gray-100: #f0efe9;
    --gray-200: #e0dfd7;
    --gray-400: #262626;
    --gray-600: #262626;
    --green: #21A658;
    --green-light: #e8f9f2;
    --green-text: #0d6e4f;
    --red: #e04040;
    --font-display: 'Syne', Poppins;
    --font-body: "Poppins", sans-serif;
    --radius: 4px;
    --radius-lg: 8px;
  }
html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    min-height: 100vh;
    line-height: 1.6;
  }

  /* ── HEADER ── */
  .site-header {
    padding: 22px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
	border-top: 10px solid #3954E8;
  }

  .logo {
    font-family: var(--font-display);
    line-height: 0;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
    color: var(--black);
  }

  .logo span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 3px;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }

  .header-cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    letter-spacing: .03em;
  }

  /* ── HERO ── */
  .hero {
    background: radial-gradient(87.5% 3742.33% at 31.76% 12.5%, #3954E8 0%, #A354E8 100%);
    color: var(--white);
    padding: 155px 2.5rem 155px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,240,65,.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 7%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 7%;
    margin: 0 auto 20px;
    text-transform: uppercase;
}
.costings {
    display: inline-block;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
	margin-bottom: 40px;
}
.costings h2 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 7%;
    background: linear-gradient(90deg, #3b5bdb, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 50px;
}

.hero p {
    font-size: 24px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 32px;
    letter-spacing: 7%;
}

  /* ── MAIN LAYOUT ── */
  .calculator-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 90px 100px;
  }
  

  
  /* ── PROGRESS ── */
  .progress-bar {
    display: flex;
    gap: 22px;
    margin-bottom: 4rem;
    align-items: center;
  }

  .progress-seg {
    flex: 1;
    height: 6px;
    background: #ADADAD;
    border-radius: 99px;
    transition: background .3s ease;
  }

  .progress-seg.active { background: #3954e8; }
  .progress-seg.done { background: #3954e8; }

  .progress-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.6rem;
  }

  /* ── STEPS ── */
  .step { display: none; }
  .step.active {
    display: block;
    animation: fadeUp 1s ease;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

.step-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 7%;
    margin-bottom: .4rem;
    line-height: 50px;
    text-transform: uppercase;
    color: #262626;
}

  .step-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 2rem;
	margin-top: 20px;
    letter-spacing: 7%;
  }

  /* ── FORM FIELDS ── */
  .field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  

  .field { display: flex; flex-direction: column; gap: 6px; }

  .field label {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #575757;
    line-height: 50px;
    letter-spacing: 7%;
}
.field label span {
    color: #575757;
    font-weight: 500 !important;
    font-size: 18px;
    text-transform: uppercase !important;
    color: #575757;
    line-height: 50px;
    letter-spacing: 7% !important;
}

  .input-wrap { position: relative; }

  .input-wrap .prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
  }

  .input-wrap input { padding-left: 28px !important; }

input[type="text"], input[type="number"], input[type="email"] {
    width: 100%;
    height: 60px;
    padding: 0 14px;
    font-family: var(--font-body);
    font-size: 18px !important;
    color: #575757;
    background: var(--white);
    border: 1.5px solid #A1A1A1;
    border-radius: 10px;
    transition: border-color .2s;
    -webkit-appearance: none;
}

input:focus {
    outline: none;
    border-color: var(--black);
  }

input::placeholder { color: #575757; }

  /* ── CHIPS ── */
  .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

  .chip {
    padding: 9px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    border: 1.5px solid var(--gray-200);
    border-radius: 99px;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: all .18s ease;
  }

  .chip:hover { border-color: var(--black); }

  .chip.selected {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
  }

  .chips-vertical { flex-direction: column; align-items: flex-start; }

  /* ── BUTTONS ── */
  .btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    border-radius: 99px;
    cursor: pointer;
    transition: all .18s ease;
    border: 1.5px solid var(--gray-200);
    background: transparent;
    color: var(--black);
    letter-spacing: 7%;
    text-transform: uppercase;
    font-weight: 600;
}

  .btn:hover { border-color: var(--black); }

  .btn.primary {
    background: #3954E8;
    color: var(--white);
    border-color: #3954E8;
  }

  .btn.primary:hover {
    background: var(--gray-600);
    border-color: var(--gray-600);
  }

  .btn.accent-btn {
    font-size: 18px;
    position: relative;
  }

.gradian-cta {
    display: flex;
	border: 0;
    align-items: center;
    gap: 10px;
    background: radial-gradient(87.5% 3742.33% at 31.76% 12.5%, #3954E8 0%, #A354E8 100%);
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 7%;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: 50px;
	line-height: normal;
	-webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background .75s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
    transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background .75s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
}  
.gradian-cta span {
    line-height: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.22);
    border-radius: 50px;
} 
.gradian-cta:hover {
    background: radial-gradient(87.5% 3742.33% at 31.76% 12.5%, #3954E8 0%, #3954E8 100%);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}  

  /* ── GATE STEP ── */
.gate-card {
    background: #141414;
    color: var(--white);
    border-radius: 20px;
    padding: 80px 15px;
    text-align: center;
}

.gate-card h3 {
    color: #F4F4F4;
    text-transform: uppercase;
    letter-spacing: 7%;
    margin-bottom: 16px;
    font-size: 36px;
    line-height: normal;
}

.gate-card p {
    font-size: 18px;
    color: #A1A1A1;
    max-width: 550px;
    margin: 0 auto 50px;
}

.gate-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 550px;
    margin: 0 auto 50px;
}

.gate-fields input {
    background: #262626 !important;
    border-color: #5757576e !important;
    color: #575757 !important;
    height: 60px;
}
.gate-card p.gate-note {
    font-size: 12px;
    line-height: normal;
    letter-spacing: 7%;
    color: #A1A1A1;
    margin-top: 32px;
	margin-bottom: 0;
}
.gate-fields input::placeholder {
  color: #575757  !important;
  opacity: 1; /* Firefox */
}

.gate-fields input::-ms-input-placeholder { /* Edge 12-18 */
  color: #575757  !important;
}

  .gate-fields input::placeholder { color: rgba(255,255,255,.35); }
  .gate-fields input:focus { border-color: var(--accent); }


.field-grid input::placeholder {
  color: #A1A1A1  !important;
  opacity: 1; /* Firefox */
}

.field-grid input::-ms-input-placeholder { /* Edge 12-18 */
  color: #A1A1A1  !important;
}
  .gate-note {
    font-size: 0.75rem;
    color: rgba(250,250,248,.35);
    margin-top: 1rem;
  }

  /* ── RESULTS ── */
  .results-header { margin-bottom: 2rem; }

.results-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 7%;
    margin-bottom: .3rem;
    color: #262626;
    text-transform: uppercase;
}

  .results-header p {
    font-size: 0.88rem;
    color: var(--gray-600);
  }

  .results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

.metric-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 48px 32px;
}

.metric-card .m-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 7%;
    text-transform: uppercase;
    color: #575757;
    margin-bottom: 6px;
    line-height: normal;
}

.metric-card .m-val {
    font-family: 'Poppins';
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 7%;
    color: #262626;
    line-height: normal;
}

  .metric-card .m-val.positive { color: var(--green); }

  /* ── COMPARE TABLE ── */
.compare-wrap {
    border: 1px solid #A1A1A1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
}
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
  }
body .compare-wrap table.compare-table {
    margin: 0;
    background-color: transparent !important;
}

body .compare-table thead th {
    text-align: left;
    padding: 20px 40px !important;
    font-size: 18px;
    font-weight: 600 !important;
    letter-spacing: 7%;
    text-transform: uppercase;
    color: #575757;
    background: #FFFFFF;
    border: 0 !important;
}

  .compare-table thead th:not(:first-child) { text-align: right; }

  .compare-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--black);
  }

  .compare-table tbody tr:last-child td { border-bottom: none; }

  .compare-table tbody td:not(:first-child) { text-align: right; }

  .compare-table .positive {
    color: var(--green);
    font-weight: 500;
  }

  /* ── GAP BOX ── */
.gap-box {
    color: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: radial-gradient(87.5% 3742.33% at 31.76% 12.5%, #3954E8 0%, #A354E8 100%);
}
.gap-box .gap-left .gap-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 7%;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #fff;
}
.price-badge {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 999px;
  background: #ffffff; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gap-val-main {
    display: inline-block;
    padding: 16px 30px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.gap-box .gap-val {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 4%;
    background: linear-gradient(90deg, #3b5bdb, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 50px;
}


.gap-box .gap-right {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 7%;
}
.gap-box .gap-left, .gap-box .gap-right {
    width: 100%;
}

  /* ── CTA BOX ── */
  .cta-box {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
  }

  .cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.025em;
    margin-bottom: .4rem;
  }

  .cta-box p {
    font-size: 0.875rem;
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto 1.5rem;
  }

  /* ── ERROR ── */
  .error-msg {
    font-size: 0.78rem;
    color: var(--red);
    margin-top: 8px;
    display: none;
  }
  
   /* ── FOOTER ── */
  .site-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.78rem;
    color: var(--gray-400);
  }

  .site-footer a { color: var(--gray-600); text-decoration: none; }
  .site-footer a:hover { color: var(--black); } 
  
  body .calculator-wrap .compare-wrap .compare-table thead th:nth-child(2) {
    text-align: center;
}
body .calculator-wrap .compare-wrap .compare-table tr  td {
    border: 0;
    padding: 20px 40px;
    font-size: 16px;
}
body .calculator-wrap .compare-wrap .compare-table tr {
    border-bottom: 1px solid #D6D6D6;
    background-color: transparent !important;
}
body .calculator-wrap .compare-wrap .compare-table tr:last-child {
    border: 0;
}
body .calculator-wrap .compare-wrap .compare-table tr td:nth-child(2) {
    text-align: center;
}
.cta-box.strategy-button {
    background: #000;
    border-radius: 20px;
    padding: 80px 15px;
	margin-bottom: 40px;
}
.cta-box.strategy-button h3 {
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 32px;
    letter-spacing: 7%;
}
.cta-box.strategy-button p {
    color: #A1A1A1;
    max-width: 420px;
    margin-bottom: 50px;
}
.cta-box.strategy-button .btn.accent-btn {
	text-decoration: none;
	max-width: max-content;
}
.calculator-wrap .step {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.button-rows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.site-header .logo img {
    max-width: 105px;
    width: 100%;
}


@media (max-width: 999px) {
.calculator-wrap {
    padding: 80px 15px 100px;
}
}

@media (max-width: 767px) {
    .field-grid { grid-template-columns: 1fr; }    
    .site-header { padding: 10px; }
    .results-grid { grid-template-columns: 1fr; }
	.gate-card { padding: 40px 15px;}
.metric-card {
    padding: 20px 20px;
}
body .compare-table thead th {
    padding: 10px !important;
	font-size: 14px;
}
body .calculator-wrap .compare-wrap .compare-table tr  td {
    padding: 10px;
    font-size: 14px;
}
.gap-box {
    padding: 20px;
    flex-wrap: wrap;
}
.gap-box .gap-val {
    font-size: 32px;
    line-height: 36px;
}	
.gap-box .gap-right {
    font-size: 14px;
}
.cta-box.strategy-button {
    padding: 40px 15px;
}
.btn.accent-btn {
    font-size: 15px;
}
.step-subtitle {
    font-size: 16px;
}
.field label {
    font-size: 16px;
    line-height: 30px;
}

.site-header .gradian-cta {
    gap: 8px;
    font-size: 12px;
    letter-spacing: 4%;
    padding: 8px 12px;
}
.hero {
    padding: 40px 15px;
}
.hero h1 {
    font-size: 36px;
    line-height: 40px;
}
.costings h2 {
    font-size: 28px;
    line-height: 24px;
}
.hero p {
    font-size: 18px;
    line-height: 26px;
}
.gradian-cta span {
    width: 20px;
    height: 20px;
}
.gradian-cta span svg{
	width: 10px;
}
	
}
  
  
  