 :root {
   --ink: #101820;
   --muted: #5d6b73;
   --soft: #f5f5f5;
   --line: #e6e6e6;
   --brand: #c11425;
   --accent: #ffc000;
   --dark: #111111;
   --white: #ffffff;
   --radius-lg: 34px;
   --radius-md: 22px;
   --shadow: 0 24px 70px rgba(17, 17, 17, .10);
   --serif: 'Fraunces', serif;
   --sans: 'Inter', system-ui, -apple-system, sans-serif;
 }

body {
   font-family: var(--sans);
   color: var(--ink);
   background: linear-gradient(180deg, var(--soft) 0%, var(--white) 440px);
   overflow-x: clip;
   -webkit-font-smoothing: antialiased;
 }

a {
   color: inherit;
   }

 ul {
   list-style: none;
 }

 button {
   font-family: inherit;
   }

 :focus-visible {
   outline: 3px solid var(--brand);
   outline-offset: 3px;
 }

 .wrap {
   max-width: 1320px;
   margin: 0 auto;
   padding: 0 24px;
 }

 .eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 12.5px;
   font-weight: 700;
   letter-spacing: .14em;
   text-transform: uppercase;
   color: var(--brand);
 }

 .eyebrow::before {
   content: "";
   width: 18px;
   height: 2px;
   background: var(--accent);
   display: inline-block;
 }

 h1,
 h2,
 h3 {
   font-family: var(--serif);
   font-weight: 560;
   line-height: 1.06;
   color: var(--ink);
 }

 h1 {
   font-size: clamp(38px, 5.6vw, 68px);
   font-optical-sizing: auto;
   letter-spacing: -0.01em;
 }

 h2 {
   font-size: clamp(28px, 3.6vw, 42px);
   letter-spacing: -0.01em;
 }

 h3 {
   font-size: 20px;
   font-weight: 560;
 }

 p {
   line-height: 1.6;
   color: var(--muted);
 }

 .section {
   padding: 88px 0;
 }

 .section-tight {
   padding: 64px 0;
 }

 .section-head {
   max-width: 720px;
   margin-bottom: 44px;
 }

 .section-head p {
   margin-top: 14px;
   font-size: 17px;
 }

 @media (max-width:768px) {
   .section {
     padding: 60px 0;
   }

   .section-head {
     margin-bottom: 32px;
   }
 }

 /* Buttons */
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 15px 28px;
   border-radius: 100px;
   font-weight: 600;
   font-size: 15px;
   border: 1px solid transparent;
   transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
   white-space: nowrap;
 }

 .btn-primary {
   background: var(--brand);
   color: var(--white);
   box-shadow: 0 12px 30px rgba(193, 20, 37, .28);
 }

 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 16px 36px rgba(193, 20, 37, .36);
 }

 .btn-secondary {
   background: var(--white);
   color: var(--ink);
   border-color: var(--line);
 }

 .btn-secondary:hover {
   transform: translateY(-2px);
   border-color: var(--ink);
 }

 .btn-ghost-dark {
   background: transparent;
   color: var(--white);
   border-color: rgba(255, 255, 255, .28);
 }

 .btn-ghost-dark:hover {
   border-color: var(--accent);
   color: var(--accent);
 }

 .btn-sm {
   padding: 11px 20px;
   font-size: 13.5px;
 }

 /* HERO */
.hero {
   padding: 56px 0 40px;
 }

 .hero-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 48px;
   align-items: center;
 }

 .hero-copy p.lede {
   font-size: 18px;
   margin-top: 18px;
   max-width: 520px;
 }

 .hero-copy h1 {
   margin-top: 14px;
 }

 .hero-ctas {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 30px;
 }

 .trust-mini {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   margin-top: 34px;
 }

 .trust-mini span {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   font-weight: 600;
   color: var(--ink);
 }

 .trust-mini svg {
   flex: none;
 }

 .hero-visual {
   position: relative;
 }

 .route-card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow);
   padding: 26px 22px 22px;
   position: relative;
   overflow: hidden;
 }

 .route-card .route-labels {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   padding: 0 6px;
   margin-bottom: 6px;
 }

 .route-labels .city {
   font-family: var(--serif);
   font-size: 15px;
   font-weight: 560;
 }

 .route-labels .city small {
   display: block;
   font-family: var(--sans);
   font-weight: 600;
   color: var(--muted);
   font-size: 11px;
   letter-spacing: .06em;
   text-transform: uppercase;
   margin-bottom: 2px;
 }

 .float-app-card {
   position: absolute;
   left: 20px;
   bottom: -26px;
   background: var(--ink);
   color: var(--white);
   border-radius: var(--radius-md);
   padding: 18px 20px;
   box-shadow: 0 20px 44px rgba(16, 24, 32, .34);
   max-width: 250px;
 }

 .float-app-card .fac-top {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 10px;
 }

 .float-app-card .fac-badge {
   width: 30px;
   height: 30px;
   border-radius: 9px;
   background: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
   flex: none;
 }

 .float-app-card strong {
   font-family: var(--serif);
   font-size: 15px;
   font-weight: 560;
   display: block;
 }

 .float-app-card p {
   color: rgba(255, 255, 255, .7);
   font-size: 12.5px;
   margin: 0;
 }

 .fac-tags {
   display: flex;
   gap: 6px;
   margin-top: 12px;
   flex-wrap: wrap;
 }

 .fac-tags span {
   font-size: 10.5px;
   font-weight: 700;
   letter-spacing: .03em;
   background: rgba(255, 255, 255, .1);
   padding: 5px 9px;
   border-radius: 100px;
 }

 @media (min-width:900px) {
   .hero-grid {
     grid-template-columns: 1.05fr .95fr;
     gap: 60px;
   }

   .hero {
     padding: 64px 0 90px;
   }
 }

 /* TRUST STRIP */
 .trust-strip {
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
   background: var(--white);
 }

 .trust-strip .wrap {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1px;
   background: var(--line);
 }

 .trust-strip .ts-item {
   background: var(--white);
   padding: 26px 22px;
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .trust-strip .ts-item svg {
   flex: none;
   color: var(--brand);
 }

 .trust-strip .ts-item span {
   font-size: 14px;
   font-weight: 600;
 }

 @media (min-width:768px) {
   .trust-strip .wrap {
     grid-template-columns: repeat(4, 1fr);
   }
 }

 /* PROCESS / AEO */
 .answer-lede {
   font-size: 17px;
   max-width: 760px;
   margin-bottom: 40px;
 }

 .process-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 18px;
 }

 .p-card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-md);
   padding: 30px 26px;
   position: relative;
 }

 .p-card .p-num {
   font-family: var(--serif);
   font-size: 44px;
   font-weight: 560;
   color: var(--soft);
   -webkit-text-stroke: 1.5px var(--line);
   position: absolute;
   top: 16px;
   right: 22px;
 }

 .p-card h3 {
   margin-bottom: 10px;
   max-width: 80%;
 }

 .p-card p {
   font-size: 14.5px;
 }

 .p-card .p-icon {
   width: 38px;
   height: 38px;
   border-radius: 10px;
   background: var(--soft);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--brand);
   margin-bottom: 16px;
 }

 @media (min-width:768px) {
   .process-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (min-width:1100px) {
   .process-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }

 /* SPLIT sections */
 .split {
   display: grid;
   grid-template-columns: 1fr;
   gap: 40px;
   align-items: center;
 }

 @media (min-width:960px) {
   .split {
     grid-template-columns: 1fr 1fr;
     gap: 64px;
   }
 }

 .split .col p {
   margin-top: 14px;
   font-size: 16px;
 }

 .split .col ul.checks {
   margin-top: 20px;
   display: grid;
   gap: 10px;
 }

 .split .col ul.checks li {
   display: flex;
   gap: 10px;
   font-size: 14.5px;
   color: var(--ink);
   font-weight: 500;
 }

 .link-inline {
   color: var(--brand);
   font-weight: 600;
   border-bottom: 1px solid rgba(193, 20, 37, .35);
 }

 .link-inline:hover {
   border-bottom-color: var(--brand);
 }

 /* App mockup */
 .mock {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow);
   padding: 26px;
   position: relative;
 }

 .mock .mock-bar {
   display: flex;
   gap: 6px;
   margin-bottom: 20px;
 }

 .mock .mock-bar span {
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: var(--line);
 }

 .mock-field {
   margin-bottom: 14px;
 }

 .mock-field label {
   display: block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .05em;
   text-transform: uppercase;
   color: var(--muted);
   margin-bottom: 6px;
 }

 .mock-field .fake-input {
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 13px 14px;
   font-size: 14px;
   color: var(--ink);
   background: var(--soft);
 }

 .mock .mock-cta {
   width: 100%;
   margin-top: 6px;
 }

 /* Visa type cards */
 .visa-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 18px;
 }

 @media (min-width:700px) {
   .visa-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (min-width:1100px) {
   .visa-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

 .v-card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-md);
   padding: 28px 24px;
   transition: transform .2s ease, box-shadow .2s ease;
 }

 .v-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow);
 }

 .v-card.accent {
   border-color: transparent;
   background: var(--ink);
   color: var(--white);
 }

 .v-card.accent p {
   color: rgba(255, 255, 255, .68);
 }

 .v-card.accent .v-icon {
   background: rgba(255, 255, 255, .1);
   color: var(--accent);
 }

 .v-icon {
   width: 42px;
   height: 42px;
   border-radius: 11px;
   background: var(--soft);
   color: var(--brand);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
 }

 .v-card h3 {
   margin-bottom: 8px;
 }

 .v-card p {
   font-size: 14px;
   margin-bottom: 18px;
 }

 .v-card .v-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 700;
   font-size: 13.5px;
   color: var(--brand);
 }

 .v-card.accent .v-link {
   color: var(--accent);
 }

 /* Requirements checklist visual */
 .req-check {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   padding: 34px;
   box-shadow: var(--shadow);
 }

 .req-check li {
   display: flex;
   gap: 14px;
   padding: 14px 0;
   border-bottom: 1px solid var(--line);
   font-size: 15px;
   font-weight: 500;
 }

 .req-check li:last-child {
   border-bottom: none;
 }

 .req-check .tick {
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background: rgba(193, 20, 37, .08);
   color: var(--brand);
   display: flex;
   align-items: center;
   justify-content: center;
   flex: none;
 }

 /* Documents */
 .doc-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
 }

 @media (min-width:768px) {
   .doc-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }

 .doc-card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-md);
   padding: 24px 18px;
   text-align: left;
 }

 .doc-shape {
   width: 100%;
   height: 64px;
   position: relative;
   margin-bottom: 16px;
 }

 .doc-card h3 {
   font-size: 16px;
   margin-bottom: 4px;
 }

 .doc-card p {
   font-size: 13px;
 }

 /* Fees table */
 .fee-table {
   width: 100%;
   border-collapse: separate;
   border-spacing: 0;
   background: var(--white);
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow);
 }

 .fee-table thead th {
   background: var(--ink);
   color: var(--white);
   text-align: left;
   font-size: 12.5px;
   letter-spacing: .05em;
   text-transform: uppercase;
   padding: 16px 20px;
   font-weight: 600;
 }

 .fee-table tbody td {
   padding: 16px 20px;
   border-bottom: 1px solid var(--line);
   font-size: 14.5px;
 }

 .fee-table tbody tr:last-child td {
   border-bottom: none;
 }

 .fee-table tbody tr:hover {
   background: var(--soft);
 }

 .fee-table .price {
   font-weight: 700;
   color: var(--brand);
 }

 .tag-proc {
   display: inline-block;
   padding: 4px 10px;
   border-radius: 100px;
   font-size: 11.5px;
   font-weight: 700;
   background: var(--soft);
   color: var(--ink);
 }

 .table-scroll {
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
 }

 /* Timeline */
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 0;
   max-width: 640px;
 }

 @media (min-width:900px) {
   .timeline {
     flex-direction: row;
     max-width: none;
   }
 }

 .tl-step {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   padding: 20px 0;
   position: relative;
 }

 @media (min-width:900px) {
   .tl-step {
     align-items: center;
     text-align: center;
     padding: 0 12px;
   }
 }

 .tl-dot {
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: var(--brand);
   border: 4px solid rgba(193, 20, 37, .15);
   margin-bottom: 12px;
 }

 .tl-step h3 {
   font-size: 15.5px;
   margin-bottom: 6px;
 }

 .tl-step p {
   font-size: 13px;
 }

 .tl-connector {
   width: 2px;
   height: 28px;
   background: var(--line);
   margin-left: 6px;
 }

 @media (min-width:900px) {
   .tl-connector {
     width: 100%;
     height: 2px;
     margin: 6px 0 0;
     position: absolute;
     top: 6px;
     left: 50%;
   }
 }

 /* Urgent/Express */
 .dual-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 20px;
 }

 @media (min-width:700px) {
   .dual-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 .dual-card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   padding: 34px;
   position: relative;
   overflow: hidden;
 }

 .dual-card.express {
   border: 2px solid var(--brand);
 }

 .dual-card .dc-badge {
   position: absolute;
   top: 24px;
   right: 24px;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: .05em;
   text-transform: uppercase;
   background: var(--accent);
   color: var(--ink);
   padding: 6px 12px;
   border-radius: 100px;
 }

 .dual-card h3 {
   font-size: 24px;
   margin-bottom: 10px;
 }

 .dual-card p {
   margin-bottom: 22px;
 }

 /* Local map / Delhi */
 .local-panel {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow);
   padding: 36px;
 }

 .local-rows {
   display: grid;
   gap: 16px;
   margin-top: 20px;
 }

 .local-row {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   font-size: 14.5px;
 }

 .local-row svg {
   flex: none;
   color: var(--brand);
   margin-top: 2px;
 }

 .local-row strong {
   display: block;
   font-size: 14px;
   margin-bottom: 2px;
 }

 .local-row span {
   color: var(--muted);
 }

 /* NCR map visual */
 .ncr-wrap {
   position: relative;
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow);
   padding: 20px;
 }

 .ncr-chips {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 18px;
 }

 .ncr-chips span {
   background: var(--soft);
   border: 1px solid var(--line);
   padding: 9px 16px;
   border-radius: 100px;
   font-size: 13.5px;
   font-weight: 600;
 }

 /* Benefit cards */
 .benefit-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 18px;
 }

 @media (min-width:700px) {
   .benefit-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (min-width:1100px) {
   .benefit-grid {
     grid-template-columns: repeat(5, 1fr);
   }
 }

 .b-card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-md);
   padding: 26px 22px;
 }

 .b-card .v-icon {
   margin-bottom: 16px;
 }

 .b-card h3 {
   font-size: 16.5px;
   margin-bottom: 6px;
 }

 .b-card p {
   font-size: 13.5px;
 }

 /* Status tracker */
 .status-track {
   display: flex;
   flex-direction: column;
   gap: 0;
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow);
   padding: 8px;
 }

 @media (min-width:900px) {
   .status-track {
     flex-direction: row;
     padding: 34px;
   }
 }

 .st-step {
   flex: 1;
   padding: 22px;
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }

 @media (min-width:900px) {
   .st-step {
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 12px;
     border-right: 1px dashed var(--line);
   }

   .st-step:last-child {
     border-right: none;
   }
 }

 .st-num {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--soft);
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 13px;
   flex: none;
 }

 .st-step.active .st-num {
   background: var(--brand);
   color: var(--white);
   border-color: var(--brand);
 }

 .st-step h3 {
   font-size: 14.5px;
   margin-bottom: 4px;
 }

 .st-step p {
   font-size: 12.5px;
 }

 /* Delay / rejection minimal */
 .notice-panel {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: var(--radius-lg);
   padding: 34px;
   display: flex;
   gap: 20px;
   align-items: flex-start;
 }

 .notice-icon {
   width: 46px;
   height: 46px;
   border-radius: 12px;
   background: rgba(255, 192, 0, .14);
   color: #a67b00;
   display: flex;
   align-items: center;
   justify-content: center;
   flex: none;
 }

 .notice-icon.rej {
   background: rgba(193, 20, 37, .08);
   color: var(--brand);
 }

 /* checklist grid */
 .checklist-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 12px;
 }

 @media (min-width:700px) {
   .checklist-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 .cl-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px 18px;
   font-size: 14.5px;
   font-weight: 500;
 }

 .cl-item .tick {
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: rgba(193, 20, 37, .08);
   color: var(--brand);
   display: flex;
   align-items: center;
   justify-content: center;
   flex: none;
   margin-top: 1px;
 }

 .cl-item small {
   display: block;
   color: var(--muted);
   font-weight: 400;
   font-size: 12px;
   margin-top: 2px;
 }

 /* Local trust */
 .trust-block {
   display: grid;
   grid-template-columns: 1fr;
   gap: 32px;
   align-items: center;
 }

 @media (min-width:960px) {
   .trust-block {
     grid-template-columns: 1fr 1fr;
   }
 }

 .trust-list {
   display: grid;
   gap: 14px;
   margin-top: 18px;
 }

 .trust-list li {
   display: flex;
   gap: 12px;
   font-size: 15px;
   font-weight: 500;
 }

 .trust-list svg {
   color: var(--brand);
   flex: none;
 }

 /* FAQ */
 .faq-list {
   max-width: 820px;
   margin: 0 auto;
 }

 .faq-item {
   border-bottom: 1px solid var(--line);
 }

 .faq-q {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   padding: 22px 4px;
   background: none;
   border: none;
   text-align: left;
   font-size: 16.5px;
   font-weight: 600;
   color: var(--ink);
 }

 .faq-q .plus {
   width: 26px;
   height: 26px;
   border-radius: 50%;
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   flex: none;
   transition: transform .25s ease, background .25s ease;
   position: relative;
 }

 .faq-q .plus::before,
 .faq-q .plus::after {
   content: "";
   position: absolute;
   background: var(--ink);
 }

 .faq-q .plus::before {
   width: 10px;
   height: 1.6px;
 }

 .faq-q .plus::after {
   width: 1.6px;
   height: 10px;
 }

 .faq-item.open .plus {
   transform: rotate(45deg);
   background: var(--brand);
 }

 .faq-item.open .plus::before,
 .faq-item.open .plus::after {
   background: var(--white);
 }

 .faq-a {
   max-height: 0;
   overflow: hidden;
   transition: max-height .28s ease;
 }

 .faq-a-inner {
   padding: 0 30px 22px 4px;
   font-size: 14.5px;
 }

 .faq-item.open .faq-a {
   max-height: 240px;
 }

 /* Final CTA */
 .final-cta {
   background: var(--ink);
   color: var(--white);
   border-radius: var(--radius-lg);
   padding: 64px 40px;
   text-align: center;
   position: relative;
   overflow: hidden;
 }

 .final-cta h2 {
   color: var(--white);
   max-width: 680px;
   margin: 0 auto;
 }

 .final-cta p {
   color: rgba(255, 255, 255, .68);
   max-width: 520px;
   margin: 16px auto 0;
   font-size: 16px;
 }

 .final-cta .hero-ctas {
   justify-content: center;
   margin-top: 32px;
 }

 .final-cta .fc-line {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, var(--brand), var(--accent));
 }

 /* Sticky mobile CTA */

 /* Sticky mobile CTA */
 .sticky-mobile-cta {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 90;
   background: var(--white);
   border-top: 1px solid var(--line);
   padding: 12px 16px;
   box-shadow: 0 -8px 24px rgba(17, 17, 17, .08);
 }

 .sticky-mobile-cta .btn {
   width: 100%;
 }

 @media (min-width:1024px) {
   .sticky-mobile-cta {
     display: none;
   }
 }

 @media (max-width:1023px) {
   body {
     padding-bottom: 78px;
   }
 }

 /* Scroll reveal */
 .reveal {
   opacity: 0;
   transform: translateY(18px);
   transition: opacity .6s ease, transform .6s ease;
 }

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

 @media (prefers-reduced-motion:reduce) {
   .reveal {
     opacity: 1;
     transform: none;
     transition: none;
   }

   html {
     scroll-behavior: auto;
   }
 }

 .badge-yellow {
   color: #8a6400;
   background: rgba(255, 192, 0, .16);
   padding: 3px 10px;
   border-radius: 100px;
   font-size: 11.5px;
   font-weight: 700;
 }