
/* ============================================================
   GLIDE CARE Ã¢â‚¬â€ Multi-Step Warranty Registration
   WordPress Theme Version
   ============================================================ */

@font-face {
  font-family: "BlauerNue";
  src: url(../fonts/Blauer-Nue-Extrabold.otf) format("opentype");
  font-weight: 800;
  font-style: normal;
}

/* ---------- Variables ---------- */
:root {
  --gc-blue: #32BDED;
  --gc-blue-light: #E8E7FF;
  --gc-blue-mid:   #F3F4F6;
  --gc-green:      #006652;
  --gc-gray: #666666;
  --gc-dark:       #191C1E;
  --gc-sand:       #D8CFC4;
  --gc-white:      #FFFFFF;
  --gc-border:     rgba(25,28,30,.13);
  --gc-bg:         #F7F7F8;
  --gc-error:      #D1001F;
  /* --font-display: "BlauerNue", sans-serif; */
  --font-display: "Inter", -apple-system, sans-serif;
  --font-body:    "Inter", -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; background: var(--gc-bg); }
body {font-family: var(--font-body);-webkit-font-smoothing: antialiased;}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* WordPress admin bar offset */
body.admin-bar .gc-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .gc-header { top: 46px; }
}

/* ============================================================
   SCREEN SYSTEM
   ============================================================ */
.gc-screen {
  display: none;
  flex-direction: column;
  min-height: 100vh;
  max-width: 380px;
  margin: 0 auto;
  background: var(--gc-white);
  position: relative;
}
.gc-screen.active { display: flex; }

/* ============================================================
   HEADER
   ============================================================ */
.gc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--gc-white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1.4px solid #F3F4F6;
}
.gc-header .wrap_deut{display: flex;}
.gc-header .wrap_deut .gc-back-btn {
    padding-inline-end: 12px;
}
.gc-header--plain {/* border-bottom: none; */}

.gc-back-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gc-dark);
  border-radius: 50%;
  transition: background .18s;
}
.gc-back-btn:hover { background: transparent; }

.gc-logo { display: flex; align-items: center; gap: 4px; }
.gc-logo-img { height: 22px; }

.gc-avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gc-gray);
}
.gc-avatar-btn.step2-top-icon {
    background: transparent;
}
.gc-step-badge {
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  letter-spacing: .04em;
}

.gc-close-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--gc-dark);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .18s;
}
.gc-close-btn:hover { background: var(--gc-blue-mid); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.gc-progress-bar {height: 6px;background: var(--gc-blue-mid);width: calc(100% - 79px);margin: auto;}
.gc-progress-fill {
  height: 100%;
  background: var(--gc-blue);
  transition: width .5s cubic-bezier(.4,0,.2,1);
  border-radius: 9999px;
}

.gc-step-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0;
}
.gc-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gc-blue);
  text-transform: uppercase;
}
.gc-step-name {font-size: 12px;color: var(--gc-gray);font-weight: 600;}

/* ============================================================
   BODY / CONTENT AREA
   ============================================================ */
.gc-body { padding: 24px 20px 16px; flex: 1; overflow-y: auto; }
.gc-body--pb { padding-bottom: 120px; }

.gc-title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.15;
  margin-bottom: 8px;
}
.gc-subtitle {
  font-size: 14px;
  color: var(--gc-gray);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.gc-form { display: flex; flex-direction: column; gap: 0; }

.gc-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 27px;
  position: relative;
}

.gc-label {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gc-label-optional {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #E67A00;
  text-transform: uppercase;
}
.gc-label-link {
  font-size: 12px;
  font-weight: 500;
  color: #00ACE5;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.gc-input-wrap { position: relative; display: flex; flex-direction: column; }
.gc-input-wrap--grow { flex: 1; }

.gc-input {
  width: 100%;
  padding: 13px 44px 13px 14px;
  border: 1.5px solid var(--gc-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gc-dark);
  background: #F9FAFB;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.gc-input:focus {
  outline: none;
  border-color: var(--gc-blue);
  box-shadow: 0 0 0 3px rgba(25,0,209,.09);
}
.gc-input::placeholder { color: #b0b7be; }
.gc-input.gc-error-state { border-color: var(--gc-error); }

.gc-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b7be;
  pointer-events: none;
  display: flex;
}

.gc-select { padding-right: 40px; cursor: pointer; }
.gc-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gc-gray);
  pointer-events: none;
  display: flex;
}

.gc-mono { font-family: "Courier New", monospace; letter-spacing: .05em; font-size: 13px; }

.gc-error-msg {
  font-size: 11.5px;
  color: var(--gc-error);
  display: none;
  margin-top: 4px;
  padding-left: 2px;
}
.gc-error-msg.visible { display: block; }

/* Phone row */
.gc-phone-row { display: flex; gap: 8px; align-items: flex-start; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Country Selector Ã¢â€â‚¬Ã¢â€â‚¬ */
.gc-country-selector { position: relative; flex-shrink: 0; }

.gc-country-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 12px;
  border: 1.5px solid var(--gc-border);
  border-radius: var(--radius-sm);
  background: var(--gc-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gc-dark);
  cursor: pointer;
  white-space: nowrap;
  min-width: 98px;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
}
.gc-country-trigger:hover { border-color: rgba(25,0,209,.4); }
.gc-country-trigger.open { border-color: var(--gc-blue); box-shadow: 0 0 0 3px rgba(25,0,209,.09); }

.gc-country-flag { font-size: 18px; line-height: 1; }
.gc-country-code { font-size: 13px; font-weight: 700; }
.gc-chevron { color: var(--gc-gray); transition: transform .2s; flex-shrink: 0; }
.gc-country-trigger.open .gc-chevron { transform: rotate(180deg); }

.gc-country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  width: 280px;
  background: var(--gc-white);
  border: 1.5px solid var(--gc-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(25,0,209,.13), 0 2px 8px rgba(0,0,0,.07);
  overflow: hidden;
  animation: dropdownOpen .18s ease both;
}
.gc-country-dropdown.open { display: block; }

@keyframes dropdownOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gc-country-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gc-border);
  color: var(--gc-gray);
}
.gc-country-search {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gc-dark);
  background: transparent;
}
.gc-country-search::placeholder { color: #b0b7be; }

.gc-country-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.gc-country-list::-webkit-scrollbar { width: 4px; }
.gc-country-list::-webkit-scrollbar-thumb { background: rgba(25,0,209,.18); border-radius: 4px; }

.gc-country-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .15s;
  font-size: 13.5px;
  color: var(--gc-dark);
}
.gc-country-list li:hover    { background: var(--gc-blue-mid); }
.gc-country-list li.selected { background: var(--gc-blue-light); font-weight: 600; }

.gc-country-list li .li-flag { font-size: 18px; flex-shrink: 0; }
.gc-country-list li .li-name { flex: 1; }
.gc-country-list li .li-code { font-size: 12px; font-weight: 700; color: var(--gc-blue); margin-left: auto; }

.gc-no-results { padding: 14px; text-align: center; font-size: 13px; color: var(--gc-gray); display: none; }
.gc-no-results.visible { display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.gc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--gc-blue);
  color: var(--gc-white);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  /* margin-top: 8px; */
  transition: background .2s, box-shadow .2s, transform .15s;
}
.gc-btn-primary:hover  { background: #63CEF5; box-shadow: 0 6px 24px rgba(25,0,209,.28); }
.gc-btn-primary:active { transform: scale(.98); }
.gc-btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.gc-btn-activate {margin-top: 20px;font-size: 16px;border-radius: var(--radius-lg);margin-bottom: 15px;}
.gc-btn-primary--flex { flex: 1; }

.gc-btn-secondary {
  padding: 16px 24px;
  background: var(--gc-white);
  color: var(--gc-dark);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--gc-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.gc-btn-secondary:hover { background: var(--gc-bg); }

.gc-form-actions { display: flex; gap: 12px; margin-top: 8px; }

.gc-instant-note {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: #94A3B8;
  margin-top: 24px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.gc-upload-zone {
  border: 1.5px dashed rgba(25,0,209,.3);
  border-radius: var(--radius-md);
  background: var(--gc-blue-mid);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.gc-upload-zone:hover {
  border-color: var(--gc-blue);
  background: rgba(25,0,209,.05);
}
.gc-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.gc-upload-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; }
.gc-upload-title {font-size: 14px;font-weight: 600;color: #111827;}
.gc-upload-hint  { font-size: 12px; color: var(--gc-gray); }
.gc-upload-preview { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gc-green); }

/* ============================================================
   USE CASE GRID (Step 3)
   ============================================================ */
div#form-3 select#s3-source{ margin:20px 0}

div#screen-3 .gc-progress-bar {margin-top:35px}

div#form-3 label.gc-label {
    font-size: 14px;
    color: #495057;
}

div#form-3 a.gc-link-blue {
    font-weight: 700;
    font-size: 14px;
}
.gc-use-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.gc-use-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1.1 / 1;
  border: 2.5px solid transparent;
  transition: border-color .2s;
}
.gc-use-card img {width: 100%;height: 100%;object-fit: cover;}
.gc-use-card--selected { border-color: var(--gc-blue); }

.gc-use-card-label {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: block;
  align-items: flex-end;
  gap: 6px;
  line-height: 1.3;
}

img.choice-icon {
    width: 20px;
    /* position: absolute; */
    /* left: 14px; */
    height: 20px;
    /* bottom: 49px; */
    object-fit: contain;
    margin-bottom: 6px;
}

.gc-use-card.top_long {
    height: 100%;
    width: 100%;
}

.deut-chocies .gc-use-card {
    height: 176px;
}

.gc-use-card-plain {
  width: 100%; height: 100%;
  background: var(--gc-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.gc-use-card-check {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  background: var(--gc-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-use-card--selected::after {
    position: absolute;
    /* This creates the deep blue/purple tinted overlay */
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    /* Optional: Ensure the overlay follows the card's rounded corners */
    border-radius: inherit;
    background: linear-gradient(0deg, #00ACE5 0%, rgba(99, 206, 245, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.gc-use-card--selected .gc-use-card-label {z-index:9  }

.gc-use-card--selected .gc-use-card-check {
    z-index: 99;
}

/* ============================================================
   CHECKBOXES (Step 3)
   ============================================================ */
.gc-checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1.5px solid var(--gc-blue-light);
  border-radius: var(--radius-md);
  background: #F8F9FA;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color .2s;
}
.gc-checkbox-card input[type="checkbox"] { display: none; }

.gc-checkbox-box {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 6px;
  background: var(--gc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background .2s;
}
.gc-checkbox-box--outline { background: var(--gc-white); border: 1.5px solid var(--gc-border); }
.gc-checkbox-box--checked  { background: var(--gc-blue); }

.gc-checkbox-text { display: flex; flex-direction: column; gap: 4px; }
.gc-checkbox-text strong { font-size: 13.5px; color: var(--gc-dark); line-height: 1.4; }
.gc-checkbox-text span   { font-size: 12px; color: var(--gc-gray); line-height: 1.5; }

.gc-checkbox-plain {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 6px;
  font-size: 13.5px;
  color: var(--gc-dark);
  line-height: 1.5;
}
.gc-checkbox-plain input[type="checkbox"] { display: none; }
.gc-link-blue { color: var(--gc-blue); font-weight: 600; text-decoration: underline; }

/* ============================================================
   BOTTOM BANNERS
   ============================================================ */
.gc-benefit-banner, .gc-series-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  margin: 10px 40px 40px;
}

/* Image container */
.gc-benefit-icon, .gc-series-banner img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.gc-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text layout */
.gc-benefit-info, .gc-series-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Tag */
.gc-benefit-tag, .gc-series-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #38BDF8; /* Cyan blue color */
  text-transform: uppercase;
}

/* Title */
.gc-benefit-info strong {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A; /* Dark navy text */
  line-height: 1.2;
}

/* Description */
.gc-benefit-info span {
  font-size: 15px;
  color: var(--gc-blue); /* Muted gray text */
  line-height: 1.4;
}

.gc-benefit-info span:last-child{    color: #6B7280;}

.gc-series-img {width: 62px;height: 62px;/* object-fit: contain; */flex-shrink: 0;border-radius: 12px;border: 1px solid #E5E7EB;}
.gc-series-info { display: flex; flex-direction: column; gap: 2px; }
.gc-series-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gc-blue);
  text-transform: uppercase;
}
.gc-series-info strong { font-size: 14px; color: var(--gc-dark); font-weight: 700; }
.gc-series-info span   { font-size: 12px; color: var(--gc-gray); }
.gc-series-info span:first-of-type {
    color: #1900D1;
}
/* ============================================================
   TAB BAR
   ============================================================ */
.gc-tab-bar {
  display: flex;
  background: var(--gc-white);
  position: sticky;
  bottom: 0;
  z-index: 10;
  border-top: 1.4px solid #F3F4F6;
}
.gc-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 15px 0 19px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gc-gray);
  border-top: 2px solid transparent;
  transition: color .18s;
  text-decoration: none;
}
.gc-tab.active {/* color: var(--gc-blue); *//* border-top-color: var(--gc-blue); */}
.gc-tab.active span {
    color: var(--gc-blue);
    font-weight: 700;
}
/* ============================================================
   SUCCESS SCREEN
   ============================================================ */
.gc-success-body { padding: 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 0; flex: 1; }

.gc-success-icon {
  width: 80px;
  height: 80px;
  background: var(--gc-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0px 8px 20px 0px #999AA766;
}
    #screen-success .gc-success-icon img {
        width: 44px;
        height: 42px;
    }
.gc-success-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 12px;
  text-align: center;
}
.gc-success-sub {font-size: 16px;color: #6C757D;text-align: center;line-height: 1.65;margin-bottom: 24px;}

.gc-reg-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--gc-border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.gc-reg-icon {width: 45px;height: 45px;background: #F8F9FA;border-radius: 10px;display: flex;align-items: center;justify-content: center;flex-shrink: 0;}
.gc-reg-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.gc-reg-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--gc-gray); text-transform: uppercase; }
.gc-reg-id    {font-size: 16px;font-weight: 600;color: var(--gc-dark);/* font-family: "Courier New", monospace; */}
.gc-reg-status {font-size: 12px;font-weight: 700;color: #047857;background: #ECFDF5;padding: 7px 15px;border-radius: 100px;}

.gc-social-row { display: flex; gap: 12px; margin-bottom: 24px; }
.gc-social-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--gc-blue); color: white; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.gc-social-btn:hover { background: #1300a8; }

.gc-before-ride { width: 100%; padding: 20px 18px; background: #f4f4f6; border-radius: var(--radius-md); margin-bottom: 0; }
.gc-before-ride h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--gc-dark); margin-bottom: 8px; }
.gc-before-ride p  { font-size: 13px; color: var(--gc-gray); margin-bottom: 16px; line-height: 1.6; }
.gc-btn-pdf { font-size: 14px; border-radius: var(--radius-sm); padding: 13px 20px; }

.gc-success-bike-bg {width: 100%;position: relative;/* background: #e8e8ea; */border-radius: var(--radius-lg);margin-top: 60px;overflow: hidden;padding-bottom: 20px;}
.gc-bg-bike { width: 100%; height: 180px; object-fit: contain; opacity: .35; mix-blend-mode: multiply; }

.gc-quick-actions {display: flex;gap: 12px;padding: 0 16px;margin-top: 22px;position: relative;}
.gc-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  background: var(--gc-white);
  border: 1.5px solid var(--gc-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--gc-dark);
  transition: box-shadow .2s;
}
.gc-quick-btn:hover { box-shadow: 0 2px 12px rgba(0,0,0,.1); color: var(--gc-dark); }
.gc-return-link { display: block; text-align: center; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--gc-blue); }

/* Container that holds the bike image as a background */
.wrap_bg {
    width: 100%;
    /* Use background-size: contain to ensure the bike doesn't get cut off */
    background-size: 80%;
    /* background-position: center 75%; */ /* Positions bike behind the buttons */
    background-repeat: no-repeat;
    background-color: #f4f4f6; /* The light grey area */
    border-radius: 20px;
    padding-top: 20px; /* Space above the white card */
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 625px;
}

/* 1. The White Floating Card */
.gc-before-ride {
    width: calc(100% - 40px); /* Margin on sides */
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    z-index: 2;
    margin-bottom: -50px; /* This creates the overlap effect */
    border: 1px solid #E9ECEF;
}

.gc-before-ride h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
}

.gc-before-ride p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

/* Blue PDF Button */
.gc-btn-pdf {
    width: 100%;
    background: #63CEF5;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

/* 2. The Grey Bottom Section */
.gc-success-bike-bg {
    width: 100%;
    padding: 80px 20px 30px 20px; /* top padding accounts for the overlap */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Button Grid */
.gc-quick-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 25px;
}

.gc-quick-btn {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column; /* Icon on top of text */
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #002b41;
    text-align: center;
}

/* Return Link */
.gc-return-link {
    font-size: 15px;
    font-weight: 700;
    color: #1900D1;
    text-decoration: none;
}

/* 1. The White Card (Above the background) */
.gc-before-ride {
    position: relative;
    z-index: 10; /* Ensures card stays on top of the grey box */
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin: 32px 15px -67px 15px; /* Pulls the card 40px DOWN over the next div */
    text-align: left;
}

.gc-before-ride h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.gc-before-ride p {
    font-size: 15px;
    color: #6C757D;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* The Blue Button inside the card */
.gc-btn-pdf {
    width: 100%;
    background: #63CEF5;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

/* 2. The Grey Container with Bike Image */
.wrap_bg {
    background-color: #f4f4f6;
    background-repeat: no-repeat;
    background-size: 100%; /* Scale of the scooter image */
    background-position: center 99%; /* Moves scooter behind the small buttons */
    border-radius: 0 0 20px 20px;
    padding: 80px 15px 40px 15px; /* Top padding (80px) clears the overlapping card */
    position: relative;
}

/* Optional: Subtle Overlay to make bike look like a watermark */
.wrap_bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(244, 244, 246, 0.7); /* Lightens the bike image */
    pointer-events: none;
}

/* 3. Small Action Buttons (The Grid) */
.gc-success-bike-bg {
    position: relative; /* Sits above the wrap_bg overlay */
    z-index: 33;
    text-align: center;
}

.gc-quick-actions {
    display: flex;
    gap: 34px;
    margin-bottom: 29px;
}

.gc-quick-btn {
    flex: 1;
    background: #F9FAFB;
    border: 1px solid #D9D9D9;
    border-radius: 15px;
    padding: 23px 7px;
    display: flex;
    flex-direction: column; /* Vertical stack: Icon over text */
    align-items: center;
    gap: 3px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: #002b41;
}

.gc-return-link {
    font-size: 14px;
    font-weight: 700;
    color: #63CEF5;
    text-decoration: none;
    font-family: 'Inter';
}

@media (max-width: 768px) {

#screen-success .gc-success-body {padding: 36px 0px 0;}


#screen-success .gc-reg-card {max-width:450px}

#screen-success .gc-before-ride {max-width:450px}

#screen-success .gc-success-bike-bg {max-width:450px}


}

@media (min-width: 768px) {
  .wrap_bg {
/* 	  position: static; */
	  max-width: 480px;
	  height:40%;
	}
}







/* ============================================================
   SCREEN TRANSITION ANIMATION
   ============================================================ */
@keyframes gcSlideIn   { from { opacity: 0; transform: translateX(24px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes gcSlideBack { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
.gc-screen.slide-in   { animation: gcSlideIn  .28s ease both; }
.gc-screen.slide-back { animation: gcSlideBack .28s ease both; }

/* ============================================================
   RESPONSIVE Ã¢â‚¬â€ TABLET (768px)
   ============================================================ */
@media (min-width: 768px) {
  html, body { height: auto; min-height: 100vh; }

  body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    background: #EEEEF2;
    padding: 48px 24px;
  }

  .gc-screen {
    max-width: 560px;
    width: 100%;
    min-height: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(25,0,209,.12), 0 4px 16px rgba(0,0,0,.07);
  }

  .gc-body       { padding: 32px 40px 24px; }
  .gc-body--pb   { padding-bottom: 40px; }
  .gc-header     { padding: 18px 40px; }
  .gc-step-label {padding: 32px 40px 12px;}
  .gc-benefit-banner, .gc-series-banner {padding: 26px 28px;}
  .gc-tab-bar    { padding: 0 40px; }

  .gc-title    { font-size: 32px; }
  .gc-subtitle { font-size: 15px; }
  .gc-input    { padding: 14px 46px 14px 16px; font-size: 15px; }
  .gc-btn-primary   { padding: 17px 28px; font-size: 16px; }
  .gc-btn-secondary { padding: 17px 28px; }
  .gc-success-body  { padding: 36px 48px; }
}

@media (max-width: 480px) {
  .gc-progress-bar {width: calc(100% - 36px);}

  .gc-step-label {
      padding: 22px 20px 12px;
  }
}
/* ============================================================
   GLIDE CARE â€” REFACTORED LAYOUT SHELL
   The desktop/mobile structure is rendered by PHP. JavaScript
   only changes state/classes; it never creates or moves layout.
   These rules intentionally come last so the existing visual
   system remains the source of styling.
   ============================================================ */

.gc-form-app {
  width: 100%;
  min-height: 100vh;
}

.gc-left-panel,
.gc-rp-topbar {
  display: none;
}

.gc-right-panel {
  width: 100%;
}

@media (min-width: 1024px) {
  :root { --gc-sidebar-width: 42%; }

  html, body { height: auto; min-height: 100vh; }
  body {
    display: block;
    min-height: 100vh;
    padding: 0;
    background: #EEEEF2;
  }

  .gc-form-app {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    width: 100%;
  }

  .gc-left-panel {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--gc-sidebar-width);
    height: 100vh;
    background: var(--gc-blue);
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 52px 48px;
    z-index: 20;
    overflow: hidden;
  }

  .gc-left-panel::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
  }

  .gc-left-panel::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
  }

  .gc-lp-logo,
  .gc-lp-content,
  .gc-lp-trust {
    position: relative;
    z-index: 2;
  }

  .gc-lp-logo { display: flex; align-items: center; gap: 8px; }
  .gc-lp-logo img { height: 26px; filter: brightness(0) invert(1); }

  .gc-lp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .gc-lp-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
  }

  .gc-lp-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .gc-lp-desc {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 40px;
  }

  .gc-lp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
  }

  .gc-lp-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    position: relative;
  }

  .gc-lp-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 46px;
    width: 2px;
    height: calc(100% - 18px);
    background: rgba(255,255,255,.18);
  }

  .gc-lp-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    flex-shrink: 0;
    background: transparent;
    transition: all .3s;
    position: relative;
    z-index: 1;
  }

  .gc-lp-step.active .gc-lp-step-dot {
    background: #fff;
    border-color: #fff;
    color: var(--gc-blue);
  }

  .gc-lp-step.done .gc-lp-step-dot {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
    color: #fff;
  }

  .gc-lp-step-label { display: flex; flex-direction: column; gap: 2px; }
  .gc-lp-step-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.5); transition: color .3s; }
  .gc-lp-step.active .gc-lp-step-name { color: #fff; }
  .gc-lp-step.done .gc-lp-step-name { color: rgba(255,255,255,.7); }
  .gc-lp-step-sub { font-size: 12px; color: rgba(255,255,255,.35); }
  .gc-lp-step.active .gc-lp-step-sub { color: rgba(255,255,255,.6); }

  .gc-lp-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,.45);
  }

  .gc-lp-trust svg { opacity: .5; }

  .gc-right-panel {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-left: var(--gc-sidebar-width);
    width: calc(100% - var(--gc-sidebar-width));
    background: var(--gc-white);
    overflow-y: auto;
  }

  .gc-rp-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    padding: 28px 56px 0;
  }

  .gc-rp-topbar a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gc-gray);
    transition: color .18s;
  }

  .gc-rp-topbar a:hover { color: var(--gc-blue); }

  /* The screen is now content, not the layout shell. */
  .gc-screen {
    width: 100%;
    max-width: 700px;
    min-height: calc(100vh - 54px);
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    background: var(--gc-white);
    flex-direction: column;
  }

  .gc-screen::before { display: none !important; }

  .gc-body {
    width: 100%;
    max-width: 700px;
    padding: 48px 56px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .gc-body--pb { padding-bottom: 48px; }

  .gc-header,
  .gc-progress-bar,
  .gc-step-label,
  .gc-tab-bar,
  .gc-benefit-banner,
  .gc-series-banner {
    display: none;
  }

  .gc-title { font-size: clamp(28px, 2.4vw, 38px); margin-bottom: 10px; }
  .gc-subtitle { font-size: 15px; margin-bottom: 36px; }
  .gc-input { padding: 15px 48px 15px 16px; font-size: 15px; }
  .gc-input-icon { right: 16px; }
  .gc-btn-primary { padding: 17px 32px; font-size: 16px; border-radius: 12px; }
  .gc-btn-secondary { padding: 17px 32px; font-size: 15px; border-radius: 12px; }
  .gc-use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-use-card:last-child { grid-column: 3; }
  .gc-success-body { padding: 48px 56px; align-items: flex-start; }
  .gc-success-icon { margin: 0 0 24px; }
  .gc-success-title { text-align: left; font-size: 36px; }
  .gc-success-sub { text-align: left; }
  .gc-reg-card, .gc-before-ride, .gc-success-bike-bg { max-width: 480px; }
  .gc-country-dropdown { width: 320px; }
}

@media (min-width: 1440px) {
  :root { --gc-sidebar-width: 38%; }
  .gc-left-panel { padding: 52px 72px 60px; }
  .gc-lp-title { font-size: 48px; }
  .gc-body { padding: 56px 80px; max-width: 700px; }
  .gc-screen { max-width: 700px; }
}

/* ============================================================
   GLIDE CARE â€” FIGMA DESKTOP LAYOUT
   Desktop-only visual layer. Mobile rules above remain unchanged.
   ============================================================ */
@media (min-width: 1024px) {
  html,
  body {
    min-height: 100%;
    height: auto;
    background: #fff;
  }

  body {
    display: block;
    padding: 0 !important;
    margin: 0;
  }

  .gc-form-app {
    min-height: 100vh;
    width: 100%;
    background: #fff;
  }

  /* The previous sidebar is intentionally removed from the desktop UI. */
  .gc-left-panel {
    display: none !important;
  }

  .gc-right-panel {
    display: block;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: visible;
  }

  .gc-rp-topbar {
    display: none !important;
  }

  /* Desktop progress header */
  .gc-desktop-stepbar {
    position: relative;
    width: min(100%, 980px);
    height: 58px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eceef1;
  }

  .gc-desktop-stepbar::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -1px;
    height: 2px;
    width: 33.333%;
    background: var(--gc-blue);
    border-radius: 999px;
  }

  #screen-2 .gc-desktop-stepbar::after { width: 66.666%; }
  #screen-3 .gc-desktop-stepbar::after { width: 100%; }

  .gc-desktop-back {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #68727c;
    font-size: 17px;
    line-height: 1;
    border-radius: 50%;
    flex: 0 0 auto;
  }

  .gc-desktop-back:hover {
    color: #191c1e;
    background: #f7f8f9;
  }

  .gc-desktop-steps {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .gc-desktop-step {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #CCCCD3;
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
  }

  .gc-desktop-step b {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 7px;
    font-weight: 700;
    color: #a8afb6;
    background: #f1f3f5;
  }

  .gc-desktop-step.is-active {
    color: #4d5964;
    background: #edfaff;
  }

  .gc-desktop-step.is-active b {
    color: #fff;
    background: var(--gc-blue);
  }

  .gc-desktop-step-line {
    width: 28px;
    height: 1px;
    background: #e8ebee;
  }

  .gc-desktop-step-line.is-complete {
    background: var(--gc-blue);
  }

  /* The mobile header/progress remains untouched and is hidden only on desktop. */
  .gc-header,
  .gc-step-label,
  .gc-progress-bar,
  .gc-tab-bar,
  .gc-benefit-banner,
  .gc-series-banner {
    display: none !important;
  }

  .gc-screen {
    width: 100%;
    max-width: none;
    min-height: calc(100vh - 58px);
    margin: 0;
    padding: 0;
    display: none;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .gc-screen.active {
    display: flex;
    flex-direction: column;
  }

  .gc-desktop-content {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 34px 28px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 205px;
    gap: 30px;
    align-items: start;
  }

  .gc-body {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    flex: none;
    display: block;
  }

  .gc-body--pb {
    padding-bottom: 0;
  }

  .gc-title {
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 5px;
  }

  .gc-subtitle {
    max-width: 610px;
    font-size: 10px;
    line-height: 1.45;
    margin-bottom: 25px;
    color: #8b9299;
  }

  .gc-form {
    width: 100%;
  }

  .gc-field-group {
    gap: 5px;
    margin-bottom: 14px;
  }

  .gc-label {
    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;
    color: #202428;
  }

  .gc-label-optional {
    margin-left: auto;
    font-size: 6px;
    letter-spacing: .05em;
  }

  .gc-label-link {
    font-size: 11px;
    gap: 3px;
  }

  .gc-input {
    min-height: 37px;
    height: 37px;
    padding: 8px 34px 8px 11px;
    border: 1px solid #e4e8ec;
    border-radius: 6px;
    background: #fff;
    font-size: 9px;
    box-shadow: none;
  }

  .gc-input:focus {
    box-shadow: 0 0 0 2px rgba(99,206,245,.14);
  }

  .gc-input::placeholder {
    color: #b4bbc2;
  }

  .gc-input-icon,
  .gc-select-arrow {
    right: 11px;
  }

  .gc-input-icon svg,
  .gc-select-arrow svg {
    width: 13px;
    height: 13px;
  }

  .gc-phone-row {
    gap: 7px;
  }

  .gc-country-trigger {
    min-height: 37px;
    height: 37px;
    padding: 0 8px;
    border: 1px solid #e4e8ec;
    border-radius: 6px;
    font-size: 9px;
    background: #fff;
  }

  .gc-country-code {
    font-size: 8px;
  }

  .gc-country-flag {
    font-size: 11px;
  }

  .gc-btn-primary {
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 700;
  }

  .gc-btn-secondary {
    min-height: 38px;
    padding: 9px 15px;
    border-radius: 7px;
    font-size: 9px;
  }

  .gc-form-actions {
    gap: 8px;
    margin-top: 1px;
  }

  .gc-form-actions .gc-btn-secondary {
    flex: 0 0 78px;
  }

  .gc-btn-primary--flex {
    flex: 1;
  }

  .gc-upload-zone {
    min-height: 91px;
    padding: 17px 12px;
    border-radius: 7px;
    border-color: #dce3e8;
    background: #fafbfc;
  }

  .gc-upload-inner {
    gap: 5px;
  }

  .gc-upload-inner svg {
    width: 19px;
    height: 19px;
  }

  .gc-upload-title {
    font-size: 14px;
  }

  .gc-upload-hint {
    font-size: 12px;
  }

  /* Right-side Figma cards */
  .gc-desktop-aside {
    display: block;
    width: 100%;
    margin-top: 2px;
    border: 1px solid #edf0f2;
    border-radius: 9px;
    background: #fafbfc;
    color: #202428;
    overflow: hidden;
  }

  .gc-desktop-aside--benefit {
    padding: 15px 13px;
    min-height: 108px;
  }

  .gc-aside-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #eefaff;
    color: var(--gc-blue);
    font-size: 10px;
  }

  .gc-aside-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #9ca4ac;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .gc-desktop-aside strong {
    display: block;
    color: #202428;
    font-size: 9px;
    line-height: 1.25;
  }

  .gc-desktop-aside p {
    margin-top: 4px;
    color: #9ca4ac;
    font-size: 6.5px;
    line-height: 1.45;
  }

  .gc-desktop-aside--series {
    background: #fff;
  }

  .gc-aside-series-image {
    height: 129px;
    background: #102839;
    overflow: hidden;
  }

  .gc-aside-series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gc-aside-series-body {
    padding: 11px 12px 12px;
  }

  .gc-aside-eligible {
    display: inline-flex;
    margin-top: 8px;
    color: #32bded;
    font-size: 12px;
    font-weight: 600;
  }
  .gc-aside-eligible img {
    padding-inline-end:5px
  }
  .gc-desktop-aside--journey {
    padding: 13px 12px;
  }

  .gc-journey-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 9px 0;
    border-top: none;
  }

  .gc-journey-item > span {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    display: inline-flex;
    justify-content: center;
    border-radius: 50%;
    background: #f1f3f5;
    color: #9ba3aa;
    font-size: 8px;
    font-weight: 800;
    align-items: center;
    border: 2px solid var(--color-main-colors-300, #63CEF5);
  }

  .gc-journey-item.is-done > span {
    background: #63CEF5;
    color: #fff;
  }

  .gc-journey-item strong {
    font-size: 7px;
    margin: 0;
  }

  .gc-journey-item small {
    display: block;
    margin-top: 2px;
    color: #6B7280;
    font-size: 12px;
    line-height: 1.3;
  }

  /* Step 2: match the Figma two-column purchase row. */
  #screen-2 .gc-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 8px;
  }

  #screen-2 .gc-form > .gc-field-group:nth-child(1),
  #screen-2 .gc-form > .gc-field-group:nth-child(2),
  #screen-2 .gc-form > .gc-field-group:nth-child(5),
  #screen-2 .gc-form > .gc-form-actions {
    grid-column: 1 / -1;
  }

  /* Step 3 */
  #screen-3 .gc-title {
    margin-top: 0;
  }

  #screen-3 .gc-subtitle {
    margin-bottom: 18px;
    color: #6B7280 !important;
    font-size: 15px !important;
  }

  #screen-3 .gc-field-group {
    margin-bottom: 12px;
  }

  #screen-3 .gc-use-case-grid {
    gap: 5px;
    min-height: 132px;
  }

  #screen-3 .gc-use-card {
    border-radius: 7px;
  }

  #screen-3 .deut-chocies {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  #screen-3 .deut-chocies .gc-use-card {
    height: 63px;
  }

  #screen-3 .gc-use-card-label {
    padding: 7px 8px;
    font-size: 16px;
  }

  #screen-3 img.choice-icon {
    width: 11px;
    height: 11px;
    margin-bottom: 2px;
  }

  #screen-3 .gc-use-card-check {
    right: 7px;
    bottom: 7px;
    width: 14px;
    height: 14px;
  }

  #screen-3 .gc-use-card-check img {
    width: 8px;
    height: 8px;
  }

  #screen-3 div#form-3 select#s3-source {
    margin: 10px 0 0;
  }

  #screen-3 .gc-checkbox-card {
    gap: 8px;
    padding: 9px 10px;
    border-radius: 7px;
    margin-bottom: 9px;
  }

  #screen-3 .gc-checkbox-box {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 4px;
    margin-top: 7px;
  }

  #screen-3 .gc-checkbox-box svg {
    width: 9px;
    height: 9px;
  }

  #screen-3 .gc-checkbox-text {
    gap: 2px;
  }

  #screen-3 .gc-checkbox-text strong {
    font-size: 11px;
  }

  #screen-3 .gc-checkbox-text span,
  #screen-3 .gc-checkbox-plain,
  #screen-3 div#form-3 a.gc-link-blue {
    font-size: 13.5px;
  }

  #screen-3 .gc-checkbox-plain {
    gap: 7px;
    margin-bottom: 5px;
  }

  #screen-3 .gc-btn-activate {
    min-height: 37px;
    margin-top: 10px;
    border-radius: 7px;
  }

  #screen-3 .gc-instant-note {
    font-size: 10.5px;
    letter-spacing: 1.1px;
    margin-top: 11px;
  }

  /* Success screen: compact centered Figma-style confirmation. */
  #screen-success {
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 58px);
  }

  #screen-success .gc-success-body {
    width: min(100%, 420px);
    padding: 38px 24px 30px;
    margin: 0 auto;
    align-items: center;
  }

  #screen-success .gc-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 13px;
  }

  #screen-success .gc-success-icon img {
    width: 44px;
    height: 42px;
  }

  #screen-success .gc-success-title {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 6px;
  }

  #screen-success .gc-success-sub {
    max-width: 300px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #6C757D !important;
    font-weight: 400;
    font-family: 'Inter';
  }

  #screen-success .gc-reg-card {
    width: 100%;
    max-width: 450px;
    min-height: 90px;
    padding: 9px 10px;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
    margin-top: 20px;
  }

  #screen-success .gc-reg-icon {
    width: 45px;
    height: 45px;
  }

  #screen-success .gc-reg-label {
    font-size: 10px;
    color: #6C757D;
    font-weight: 700;
    font-family: 'Inter';
  }

  #screen-success .gc-reg-id {
    font-size: 15px;
    font-weight: 700;
  }

  #screen-success .gc-reg-status {
    font-size: 12px;
    padding: 7px 13px;
    font-family: inherit;
    border: 1px solid #D1FAE5;
  }

  #screen-success .gc-social-row {
    margin: 9px 0 13px;
    gap: 7px;
  }

  #screen-success .gc-social-btn {
    width: 44px;
    height: 44px;
  }

  #screen-success .gc-social-btn svg {
    width: 24px;
    height: 24px;
  }

  #screen-success .gc-before-ride {
    width: 100%;
    max-width: 420px;
    margin: 0 0 11px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
    border-top: 1px solid #E9ECEF;
  }

  #screen-success .gc-before-ride h3 {
    font-size: 18px;
    margin-bottom: 4px;
    padding: 21px 0 8px;
  }

  #screen-success .gc-before-ride p {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 15px;
  }

  #screen-success .gc-btn-pdf {
    min-height: 27px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 6px;
    gap: 5px;
  }

  #screen-success .gc-btn-pdf img {
    width: 10px;
    height: 10px;
  }

  #screen-success .wrap_bg {
    width: 100%;
    max-width: 420px;
    height: auto;
    padding: 0;
    background-image: none !important;
    background-color: transparent;
    border-radius: 0;
    position: unset;
  }

  #screen-success .wrap_bg::before {
    display: none;
  }

  #screen-success .gc-success-bike-bg {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  #screen-success .gc-quick-actions {
    gap: 7px;
    margin-bottom: 0;
    width: 100%;
  }

  #screen-success .gc-quick-btn {
    min-height: 42px;
    padding: 14px 11px;
    border-radius: 7px;
    gap: 4px;
    font-size: 12px;
    font-family: 'Inter';
    color: #003842;
    width: 100%;
  }

  #screen-success .gc-quick-btn svg {
    width: 13px;
    height: 13px;
  }

  #screen-success .gc-return-link {
    display: none;
  }
}

@media (min-width: 1280px) {
  .gc-desktop-stepbar {
    width: min(100%, 1120px);
  }

  .gc-desktop-content {
    width: min(100%, 960px);
    grid-template-columns: minmax(0, 660px) 220px;
    gap: 34px;
    padding-top: 38px;
  }

  .gc-title {
    font-size: 24px;
  }

  .gc-subtitle {
    font-size: 11px;
  }
}

/* ============================================================
   DESKTOP-ONLY MARKUP SAFETY
   The new desktop wrappers have zero layout impact on mobile.
   ============================================================ */
@media (max-width: 1023px) {
  .gc-desktop-stepbar {
    display: none !important;
  }

  .gc-desktop-content {
    display: contents;
  }

  .gc-desktop-aside {
    display: none !important;
  }
  
  nav.navbar{display:none !important}
  body{padding-top:0px !important;}
}


/* ============================================================
   GLIDE CARE â€” DESKTOP FIGMA ALIGNMENT / FINAL OVERRIDES
   Desktop only. Nothing below this block is applied to mobile.
   ============================================================ */
@media (min-width: 1024px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    background: #fff !important;
  }

  body.gc-page {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }

  .gc-form-app,
  .gc-right-panel {
    width: 100% !important;
    min-height: 100vh !important;
    margin: 0 !important;
    background: #fff !important;
  }

.gc-screen {
  max-width: 430px;
}

  /* ----------------------------------------------------------
     TOP PROGRESS / STEPPER
     ---------------------------------------------------------- */
  .gc-desktop-stepbar {
    display: flex !important;
    position: relative !important;
    width: min(100% - 72px, 1060px) !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 24px auto !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border-bottom: 6px solid #F3F4F6 !important;
    background: #fff !important;
  }

  .gc-desktop-stepbar::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -5px !important;
    height: 6px !important;
    width: 33.333% !important;
    background: var(--gc-blue) !important;
    border-radius: 0 999px 999px 0 !important;
  }

  #screen-2 .gc-desktop-stepbar::after {
    width: 66.666% !important;
  }

  #screen-3 .gc-desktop-stepbar::after {
    width: 100% !important;
  }

  .gc-desktop-back {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    color: #66717b !important;
    font-size: 15px !important;
    line-height: 1 !important;
    border-radius: 50% !important;
    z-index: 2;
  }

  .gc-desktop-steps {
    position: static !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    height: 100% !important;
    white-space: nowrap !important;
    margin-bottom: 18px;
  }

  .gc-desktop-step {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-height: 18px !important;
    padding: 6px 9px !important;
    border-radius: 999px !important;
    color: #CCCCD3 !important;
    background: transparent !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  .gc-desktop-step b {
    width: 16px !important;
    height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #aeb5bc !important;
    background: #f0f2f4 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
  }

  .gc-desktop-step.is-active {
    color: #32BDED !important;
    background: #EDF6F8 !important;
  }

  .gc-desktop-step.is-active b {
    color: #fff !important;
    background: var(--gc-blue) !important;
  }

  .gc-desktop-step-line {
    width: 24px !important;
    height: 1px !important;
    background: #e5e8eb !important;
  }

  .gc-desktop-step-line.is-complete {
    background: var(--gc-blue) !important;
  }

  /* ----------------------------------------------------------
     SCREEN / MAIN CONTENT
     ---------------------------------------------------------- */
  .gc-screen {
    width: 100% !important;
    max-width: none !important;
    min-height: calc(100vh - 46px) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .gc-screen.active {
    display: flex !important;
    flex-direction: column !important;
  }

  .gc-desktop-content {
    width: min(100% - 72px, 1060px) !important;
    margin: 0 auto !important;
    padding: 30px 0 48px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 220px !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .gc-body {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
    display: block !important;
    overflow: visible !important;
  }

  .gc-title {
    max-width: 800px !important;
    margin: 0 0 5px !important;
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    font-weight: 800 !important;
    color: #1A1A1A !important;
  }

  .gc-subtitle {
    max-width: 650px !important;
    margin: 0 0 30px !important;
    padding: 0 !important;
    height: auto !important;
    background: transparent !important;
    color: #666666 !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  .gc-form {
    width: 100% !important;
    max-width: none !important;
  }

  .gc-field-group {
    width: 100% !important;
    margin-bottom: 18px !important;
    gap: 8px !important;
  }

  .gc-label {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 11px !important;
    color: #1A1A1A !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
  }

  .gc-label-optional {
    margin-left: auto !important;
    color: #f26b00 !important;
    font-size: 8.5px !important;
    letter-spacing: .035em !important;
  }

  .gc-input,
  .gc-country-trigger,
  .gc-select {
    min-height: 48px !important;
    height: 48px !important;
    border: 1px solid #e0e5e9 !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #202428 !important;
    font-size: 13px !important;
    box-shadow: none !important;
  }

  .gc-input {
    width: 100% !important;
    padding: 8px 35px 8px 12px !important;
    
  }

  .gc-input::placeholder {
    color: #999AA7 !important;
    opacity: 1 !important;
    font-size:15px;
  }

  .gc-input-icon {
    right: 11px !important;
  }

  .gc-input-icon svg,
  .gc-select-arrow svg {
    width: 13px !important;
    height: 13px !important;
  }

  .gc-phone-row {
    display: flex !important;
    width: 100% !important;
    gap: 7px !important;
  }

  .gc-country-selector {
    flex: 0 0 100px !important;
    width: 77px !important;
  }

  .gc-country-trigger {
    width: 100% !important;
    padding: 0 9px !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    font-size: 9px !important;
  }

  .gc-country-flag {
    font-size: 17px !important;
  }

  .gc-country-code {
    font-size: 14px !important;
  }

  .gc-input-wrap--grow {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .gc-btn-primary {
    width: 100% !important;
    min-height: 47px !important;
    height: 47px !important;
    margin-top: 3px !important;
    padding: 7px 18px !important;
    border-radius: 7px !important;
    background: var(--gc-blue) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 8px rgba(99,206,245,.18) !important;
  }

  .gc-form-actions {
    display: flex !important;
    width: 100% !important;
    gap: 7px !important;
    margin-top: 4px !important;
  }

  .gc-form-actions .gc-btn-secondary {
    flex: 0 0 73px !important;
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
    gap:2px
  }
  .gc-form-actions .gc-btn-secondary img{
width:16px;
}
  .gc-form-actions .gc-btn-primary--flex {
    flex: 1 1 auto !important;
  }

  .gc-btn-secondary {
    min-height: 47px !important;
    height: 47px !important;
    padding: 8px 12px !important;
    border: 1px solid #e0e5e9 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #313a42 !important;
    font-size: 14px !important;
    margin-top: 3px !important;
    font-weight: 500;
  }

  /* Step 2 desktop form: full-width fields + two-column purchase row. */
  #screen-2 .gc-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 8px !important;
  }

  #screen-2 .gc-form > .gc-field-group:nth-child(1),
  #screen-2 .gc-form > .gc-field-group:nth-child(2),
  #screen-2 .gc-form > .gc-field-group:nth-child(5),
  #screen-2 .gc-form > .gc-form-actions {
    grid-column: 1 / -1 !important;
  }

  /* ----------------------------------------------------------
     RIGHT SIDEBAR CARDS
     ---------------------------------------------------------- */
  .gc-desktop-aside {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 9px !important;
    background: #F9FAFB !important;
    color: #202428 !important;
    overflow: hidden !important;
    border-top: 1px solid #F3F4F6;
  }

  .gc-desktop-aside--benefit {
    min-height: 192px !important;
    padding: 19px 17px !important;
  }

  .gc-aside-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 8px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    color: var(--gc-blue) !important;
  }
  .gc-aside-icon img{
    width: 22px;
}
  .gc-aside-eyebrow {
    display: block !important;
    margin-bottom: 8px !important;
    color: #32BDED !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    font-family: 'Inter';
  }

#screen-3 span.gc-aside-eyebrow {color: #9CA3AF !important}
  .gc-desktop-aside strong {
    display: block !important;
    color: #1A1A1A !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-top: -2px;
    font-family: 'Inter';
  }

  .gc-desktop-aside p {
    margin: 6px 0 0 !important;
    color: #666666 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    font-family: 'Inter';
  }

  /* ----------------------------------------------------------
     STEP 3
     ---------------------------------------------------------- */
  #screen-3 .gc-use-case-grid {
    gap: 5px !important;
    height: 252px;
  }

  #screen-3 .gc-use-card {
    border-radius: 7px !important;
  }

  #screen-3 .deut-chocies {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  #screen-3 .deut-chocies .gc-use-card {
    height: 126px !important;
  }

  #screen-3 .gc-checkbox-card {
    padding: 9px 10px !important;
    margin-bottom: 9px !important;
    border-radius: 7px !important;
  }

  #screen-3 .gc-btn-activate {
    min-height: 47px !important;
    height: 47px !important;
    margin-top: 10px !important;
    border-radius: 7px !important;
  }

  /* ----------------------------------------------------------
     SUCCESS
     ---------------------------------------------------------- */
  #screen-success {
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: calc(100vh - 46px) !important;
  }

  #screen-success .gc-success-body {
    width: min(100% - 48px, 480px) !important;
    padding: 32px 0 30px !important;
    margin: 0 auto !important;
    align-items: center !important;
  }

  #screen-success .gc-success-title,
  #screen-success .gc-success-sub {
    text-align: center !important;
    /* color: #1A1A1A !important; */
  }

  #screen-success .gc-success-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
    font-weight: 800;
    padding: 10px 0 23px;
    font-family: 'Inter';
  }

  /* Mobile-only pieces remain hidden on desktop. */
  .gc-header,
  .gc-step-label,
  .gc-progress-bar,
  .gc-tab-bar,
  .gc-benefit-banner,
  .gc-series-banner {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .gc-desktop-stepbar,
  .gc-desktop-content {
    width: min(100% - 96px, 1120px) !important;
  }

  .gc-desktop-content {
    grid-template-columns: minmax(0, 1fr) 225px !important;
    gap: 38px !important;
    padding-top: 34px !important;
  }
}

/* ============================================================
   DESKTOP STEP 3 BACK BUTTON + DISABLED ACTION STATES
   These rules are desktop-only and do not alter mobile layout.
============================================================ */
@media (min-width: 1024px) {
  .gc-desktop-only {
    display: none !important;
  }

  #screen-3 .gc-desktop-only.gc-step3-back {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    margin-top: 10px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 12px 24px !important;
    border: 1.5px solid #e1e6eb !important;
    border-radius: 9px !important;
    background: #fff !important;
    color: #303942 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
  }

  #screen-3 .gc-desktop-only.gc-step3-back:hover {
    background: #f8fafb !important;
  }

  .gc-btn-primary:disabled {
    opacity: .58 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
  }
}





<img src="<?= esc_url( get_template_directory_uri() ) ?>/assets/images/arrow-left-mob.svg" alt="">




.gc-mob-aside {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 9px !important;
    background: #F9FAFB !important;
    color: #202428 !important;
    overflow: hidden !important;
    border-top: 1px solid #F3F4F6;
    min-height: 192px !important;
    padding: 12px 10px !important;
  }


  .gc-mob-aside .gc-aside-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 8px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    color: var(--gc-blue) !important;
	  display:flex;
	  justify-content:center;
	  align-items:center;
  }
  .gc-mob-aside .gc-aside-icon img{
    width: 22px;
}
  .gc-mob-aside .gc-aside-eyebrow {
    display: block !important;
    margin-bottom: 8px !important;
    color: #32BDED !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    font-family: 'Inter';
  }

  .gc-mob-aside strong {
    display: block !important;
    color: #1A1A1A !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-top: -2px;
    font-family: 'Inter';
  }

  .gc-mob-aside p {
    margin: 6px 0 0 !important;
    color: #666666 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    font-family: 'Inter';
  }

button.gc-btn-secondary img{width: 16px;}

button.gc-btn-secondary.gc-desktop-only.gc-step3-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
