/* ============================================================
   GLOBAL RESET AND VARIABLES
   ============================================================ */

:root {
  --primary: #020066;
  --secondary: #c00063;
  --background: #eff2f9;

  --text-dark: #11133f;
  --text-color: #151533;
  --text-muted: #6f7185;

  --surface: #ffffff;
  --surface-soft: #f7f8fc;

  --border: #e7e8f0;
  --border-dark: #d9dbe7;

  --soft-primary: #eeeeff;
  --soft-secondary: #fff0f7;

  --shadow-soft: 0 18px 45px rgba(2, 0, 102, 0.08);
  --shadow-card: 0 10px 30px rgba(2, 0, 102, 0.055);
  --shadow-hover: 0 20px 42px rgba(2, 0, 102, 0.12);

  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;

  --container-width: 1440px;

  --transition: 220ms ease;
}


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text-color);
  background: var(--surface);

  line-height: 1.6;

  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(192, 0, 99, 0.22);
  outline-offset: 3px;
}

svg {
  display: block;
}

img,
svg {
  max-width: 100%;
}


/* ============================================================
   SHARED CONTAINER STYLES
   ============================================================ */

.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 24px;
}

.section {
  position: relative;
  width: 100%;
  padding: 40px 0;
}

/* ============================================================
   SHARED TYPOGRAPHY
   ============================================================ */

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow,
.panel-accent,
.mini-label {
  display: inline-flex;
  align-items: center;

  color: var(--secondary);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(192, 0, 99, .08);
    color: var(--gbp-secondary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin: 0 auto 8px;
}

.section-heading h1,
.section-heading h2 {
  margin: 17px 0 14px;

  color: var(--primary);

  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;

  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 650px;
  margin: 0 auto;

  color: var(--text-muted);

  font-size: 16px;
}


/* ============================================================
   PROCESS OF QR GENERATOR SECTION
   ============================================================ */

.qr-process-section {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--surface-soft) 100%
    );
}


/* ============================================================
   PROCESS STEP GRID — DESKTOP ONLY
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}


/* ============================================================
   PROCESS STEP CARDS
   ============================================================ */

.process-card {
  position: relative;

  min-width: 0;
  min-height: 240px;

  display: flex;
  flex-direction: column;

  padding: 25px 22px;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-card);

  overflow: hidden;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.process-card::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;

  background: var(--secondary);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform var(--transition);
}

.process-card:hover {
  transform: translateY(-7px);

  border-color: rgba(192, 0, 99, 0.25);

  box-shadow: var(--shadow-hover);
}

.process-card:hover::after {
  transform: scaleX(1);
}


/* ============================================================
   PROCESS CARD HEADER
   ============================================================ */

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 27px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 43px;
  height: 30px;

  color: var(--secondary);

  background: var(--soft-secondary);

  border: 1px solid rgba(192, 0, 99, 0.1);
  border-radius: 999px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}


/* ============================================================
   PROCESS ICON
   ============================================================ */

.process-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  color: var(--primary);

  background: var(--soft-primary);

  border-radius: 15px;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.process-card:hover .process-icon {
  color: #ffffff;
  background: var(--secondary);

  transform: rotate(-4deg);
}

.process-icon svg {
  width: 26px;
  height: 26px;
}


/* ============================================================
   PROCESS CARD CONTENT
   ============================================================ */

.process-card h3 {
  margin: 0 0 10px;

  color: var(--primary);

  font-size: 18px;
  line-height: 1.3;
}

.process-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 13.5px;
  line-height: 1.7;
}


/* ============================================================
   DESKTOP PROCESS CONNECTOR
   ============================================================ */

@media (min-width: 1101px) {
  .process-card:not(:last-child)::before {
    content: "";

    position: absolute;

    top: 39px;
    right: -19px;

    width: 19px;
    height: 1px;

    background: var(--border-dark);

    z-index: 2;
  }
}


/* ============================================================
   FEATURES OF OUR QR GENERATOR SECTION
   ============================================================ */

.qr-features-section {
  background: var(--background);

  border-top: 1px solid var(--border);
}


/* ============================================================
   THREE-ZONE FEATURES LAYOUT
   ============================================================ */

.features-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

/* ============================================================
   LEFT CONTENT PANEL
   ============================================================ */

.content-panel {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;

  padding: 34px 30px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fafaff 100%
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-soft);

  overflow: hidden;
}

.content-panel::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -110px;
  right: -100px;

  border-radius: 50%;

  background: var(--soft-secondary);

  opacity: 0.65;
}

.panel-accent {
  position: relative;

  margin-bottom: 10px;
}

.content-panel h3 {
  position: relative;

  margin: 0 0 16px;

  color: var(--primary);

  font-size: clamp(25px, 2vw, 34px);

  line-height: 1.12;

  letter-spacing: -0.035em;
}

.panel-description {
  position: relative;

  margin: 0 0 27px;

  color: var(--text-muted);

  font-size: 14px;

  line-height: 1.75;
}


/* ============================================================
   BENEFIT LIST
   ============================================================ */

.benefits-list {
  display: grid;

  gap: 14px;

  margin: 0 0 30px;
  padding: 0;

  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--text-dark);

  font-size: 13px;
  line-height: 1.5;
}

.benefit-check {
  flex: 0 0 auto;

  width: 19px;
  height: 19px;

  display: grid;
  place-items: center;

  margin-top: 1px;

  color: var(--secondary);

  background: var(--soft-secondary);

  border-radius: 50%;
}

.benefit-check svg {
  width: 11px;
  height: 11px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.primary-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;

  margin-top: auto;
  padding: 14px 18px;

  color: #ffffff;
  background: var(--primary);

  border-radius: 12px;

  font-size: 13px;
  font-weight: 750;

  box-shadow: 0 10px 25px rgba(2, 0, 102, 0.16);

  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.primary-button:hover {
  background: var(--secondary);

  transform: translateY(-3px);

  box-shadow:
    0 14px 30px rgba(192, 0, 99, 0.2);
}

.primary-button svg {
  transition: transform var(--transition);
}

.primary-button:hover svg {
  transform: translateX(4px);
}

.cta-message {
  min-height: 19px;

  margin-top: 10px;

  color: var(--secondary);

  font-size: 11px;
  font-weight: 700;

  text-align: center;
}


/* ============================================================
   CENTER QR GENERATOR MOCKUP
   ============================================================ */

.mockup-wrapper {
  position: relative;

  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 22px;
}

.qr-app {
  position: relative;

  width: 100%;
  max-width: 570px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 22px;

  box-shadow:
    0 30px 70px rgba(2, 0, 102, 0.12),
    0 5px 18px rgba(2, 0, 102, 0.06);

  overflow: hidden;

  animation: mockupFloat 5s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}


/* ============================================================
   MOCKUP TOP BAR
   ============================================================ */

.app-topbar {
  min-height: 46px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 0 17px;

  background: #fafaff;

  border-bottom: 1px solid var(--border);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d9dae4;
}

.window-dots span:nth-child(2) {
  background: #c5c6d2;
}

.window-dots span:nth-child(3) {
  background: #b1b2c0;
}

.app-top-label {
  color: var(--text-muted);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-left: auto;

  color: var(--secondary);

  font-size: 10px;
  font-weight: 750;
}

.live-status i,
.scan-quality i,
.floating-badge i {
  width: 6px;
  height: 6px;

  display: block;

  border-radius: 50%;

  background: var(--secondary);
}

.live-status i {
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(192, 0, 99, 0.3);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(192, 0, 99, 0);
  }
}


/* ============================================================
   MOCKUP HEADER
   ============================================================ */

.app-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 20px 21px 14px;
}

.app-header h3 {
  margin: 5px 0 0;

  color: var(--primary);

  font-size: 19px;
  line-height: 1.2;
}

.mini-label {
  font-size: 8px;
  letter-spacing: 0.13em;
}

.app-version {
  color: var(--text-muted);

  font-size: 9px;

  padding: 5px 8px;

  border: 1px solid var(--border);
  border-radius: 6px;
}


/* ============================================================
   QR TYPE NAVIGATION
   ============================================================ */

.qr-type-nav {
  display: flex;
  gap: 4px;

  padding: 0 21px;

  overflow-x: auto;

  scrollbar-width: none;
}

.qr-type-nav::-webkit-scrollbar {
  display: none;
}

.qr-type {
  flex: 0 0 auto;

  padding: 8px 9px;

  color: var(--text-muted);

  background: transparent;

  border-bottom: 2px solid transparent;

  font-size: 10px;
  font-weight: 700;

  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.qr-type:hover {
  color: var(--primary);
}

.qr-type.active {
  color: var(--secondary);

  background: var(--soft-secondary);

  border-radius: 7px;

  border-bottom-color: var(--secondary);
}


/* ============================================================
   GENERATOR BODY
   ============================================================ */

.generator-body {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 0.9fr;

  gap: 16px;

  padding: 19px 21px 21px;
}


/* ============================================================
   CONFIGURATION PANEL
   ============================================================ */

.configuration-panel {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 17px;

  padding: 16px;

  background: #fafaff;

  border: 1px solid var(--border);

  border-radius: 14px;
}

.control-label {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 7px;

  color: var(--text-dark);

  font-size: 10px;
  font-weight: 800;
}

.control-label small {
  color: var(--text-muted);

  font-size: 8px;
  font-weight: 600;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;

  height: 37px;

  padding: 0 10px;

  color: var(--text-muted);

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 8px;

  transition: border-color var(--transition);
}

.input-wrapper:focus-within {
  border-color: rgba(192, 0, 99, 0.45);
}

.input-wrapper input {
  width: 100%;

  min-width: 0;

  padding: 0;

  color: var(--text-dark);

  background: transparent;

  border: 0;

  outline: 0;

  font-size: 10px;
}


/* ============================================================
   COLOR CONTROLS
   ============================================================ */

.color-controls {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.color-control {
  display: flex;
  align-items: center;
  gap: 7px;

  padding: 7px 8px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 8px;

  color: var(--text-muted);

  font-size: 8px;
}

.color-control input {
  width: 23px;
  height: 23px;

  padding: 0;

  margin-left: auto;

  border: 0;

  background: transparent;

  cursor: pointer;
}


/* ============================================================
   STYLE SELECTORS
   ============================================================ */

.style-options {
  display: flex;
  gap: 7px;
}

.style-option {
  width: 39px;
  height: 34px;

  display: grid;
  place-items: center;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 8px;

  transition:
    border-color var(--transition),
    background var(--transition);
}

.style-option:hover,
.style-option.active {
  border-color: var(--secondary);

  background: var(--soft-secondary);
}

.style-preview {
  width: 16px;
  height: 16px;

  background: var(--primary);
}

.style-square {
  border-radius: 1px;
}

.style-rounded {
  border-radius: 5px;
}

.style-dots {
  border-radius: 50%;

  box-shadow:
    8px 0 var(--primary),
    0 8px var(--primary),
    8px 8px var(--primary);
  transform: scale(0.55);
}


/* ============================================================
   LOGO SELECTORS
   ============================================================ */

.logo-options {
  display: flex;
  gap: 7px;
}

.logo-option {
  min-width: 34px;
  height: 32px;

  padding: 0 9px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--text-muted);

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 8px;

  font-size: 9px;
  font-weight: 750;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.logo-option:hover,
.logo-option.active {
  color: var(--secondary);

  background: var(--soft-secondary);

  border-color: rgba(192, 0, 99, 0.25);
}


/* ============================================================
   QR PREVIEW PANEL
   ============================================================ */

.qr-preview-panel {
  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: 16px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 14px;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 13px;
}

.preview-header strong {
  display: block;

  margin-top: 3px;

  color: var(--primary);

  font-size: 12px;
}

.scan-quality {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: #3c7b52;

  font-size: 9px;
  font-weight: 800;
}


/* ============================================================
   QR VISUAL
   ============================================================ */

.qr-preview {
  width: 100%;

  aspect-ratio: 1;

  display: grid;
  place-items: center;

  padding: 12px;

  background:
    radial-gradient(
      circle at center,
      rgba(238, 238, 255, 0.8),
      #ffffff 65%
    );

  border: 1px solid var(--border);

  border-radius: 12px;
}

.qr-svg {
  width: min(100%, 185px);
  height: auto;

  overflow: visible;
}

.qr-background {
  fill: #ffffff;
}

.finder-pattern rect,
.qr-modules rect {
  fill: var(--primary);

  transition:
    fill var(--transition),
    rx var(--transition);
}

.finder-pattern .finder-inner,
.finder-pattern .finder-center {
  fill: #ffffff;
}

.finder-pattern .finder-center {
  fill: var(--primary);
}

.qr-center-logo rect {
  fill: #ffffff;

  stroke: var(--primary);
  stroke-width: 2;
}

.qr-center-logo text {
  fill: var(--primary);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  font-size: 21px;
  font-weight: 900;
}


/* ============================================================
   DOWNLOAD BUTTONS
   ============================================================ */

.download-buttons {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 5px;

  margin-top: 10px;
}

.download-button {
  padding: 7px 4px;

  color: var(--primary);

  background: var(--soft-primary);

  border: 1px solid transparent;

  border-radius: 7px;

  font-size: 8px;
  font-weight: 800;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.download-button:hover {
  color: #ffffff;

  background: var(--secondary);

  border-color: var(--secondary);
}

.preview-note {
  margin: 9px 0 0;

  color: var(--text-muted);

  font-size: 7px;

  line-height: 1.4;

  text-align: center;
}


/* ============================================================
   FLOATING STATUS BADGES
   ============================================================ */

.floating-badges {
  position: absolute;

  inset: 0;

  pointer-events: none;

  z-index: 4;
}

.floating-badge {
  position: absolute;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 11px;

  color: var(--text-dark);

  background: rgba(255, 255, 255, 0.97);

  border: 1px solid var(--border);

  border-radius: 9px;

  box-shadow: 0 10px 25px rgba(2, 0, 102, 0.09);

  font-size: 9px;
  font-weight: 750;

  white-space: nowrap;
}

.badge-top {
  top: 8px;
  left: 50%;

  transform: translateX(-50%);
}

.badge-left {
  top: 37%;

  left: -7px;
}

.badge-right {
  top: 54%;

  right: -7px;
}

.badge-bottom {
  right: 11%;
  bottom: 6px;
}


/* =========================================================
   RIGHT FEATURE CARDS
========================================================= */

.feature-grid {
    height: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    grid-template-rows: repeat(4, minmax(0, 1fr));

    gap: 23px;

    box-sizing: border-box;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  position: relative;

  min-width: 0;

  padding: 18px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-card);

  overflow: hidden;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 3px;
  height: 100%;

  background: var(--secondary);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(192, 0, 99, 0.24);

  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  transform: scaleY(1);
}


/* ============================================================
   FEATURE ICON
   ============================================================ */

.feature-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  margin-bottom: 13px;

  color: var(--secondary);

  background: var(--soft-primary);

  border-radius: 10px;

  transition:
    color var(--transition),
    background var(--transition);
}

.feature-card:hover .feature-icon {
  color: #ffffff;
  background: var(--secondary);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}


/* ============================================================
   FEATURE CONTENT
   ============================================================ */

.feature-card h4 {
  margin: 0 0 6px;

  color: var(--primary);

  font-size: 13px;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 10.5px;

  line-height: 1.55;
}


/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */

.toast {
  position: fixed;

  left: 50%;
  bottom: 24px;

  z-index: 100;

  max-width: calc(100% - 32px);

  padding: 11px 16px;

  color: #ffffff;

  background: var(--primary);

  border-radius: 10px;

  box-shadow: 0 15px 35px rgba(2, 0, 102, 0.2);

  font-size: 12px;
  font-weight: 700;

  opacity: 0;

  pointer-events: none;

  transform:
    translate(-50%, 15px);

  transition:
    opacity var(--transition),
    transform var(--transition);
}

.toast.visible {
  opacity: 1;

  transform:
    translate(-50%, 0);
}


/* ============================================================
   HOVER STATES
   ============================================================ */

.qr-app:hover {
  box-shadow:
    0 35px 80px rgba(2, 0, 102, 0.14),
    0 8px 22px rgba(2, 0, 102, 0.08);
}


/* =========================================================
   LEFT COMBINED SHOWCASE
========================================================= */

.feature-showcase {
    width: 100%;
    height: 100%;

    display: grid;

    grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1.4fr);

    gap: 20px;

    padding: 0;

    border-radius: 28px;

    background: #ffffff;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   CONTENT INSIDE LEFT SHOWCASE
========================================================= */

.feature-showcase .content-panel {
    width: 100%;
    height: 100%;

    padding: 35px 20px 30px 35px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   QR MOCKUP INSIDE LEFT SHOWCASE
========================================================= */

.feature-showcase .mockup-wrapper {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   QR APPLICATION
========================================================= */

.feature-showcase .qr-app {
    width: 100%;

    max-width: 500px;

    height: auto;

    max-height: 90%;

    box-sizing: border-box;
}

.content-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-panel h3 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    color: #08085c;
}

.panel-description {
    max-width: 390px;
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.45;
    color: var(--primary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}

.benefit-check {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border: 0;
    border-radius: 25px;
    background: #08085c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.brand-highlight{
    color: var(--secondary);
}

/* ============================================================
   QR CTA CARD
   ============================================================ */

.qr-cta {
    width: 100%;
    min-width: 0;
    max-width: 340px;

    box-sizing: border-box;

    padding: 32px;
    border-radius: 24px;
    background: #080866;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}

.qr-cta h3 {
    color: white;
    font-size: 28px;
    margin: 0 0 12px;
}

.qr-cta p {
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.qr-cta a {
    display: inline-flex;
    margin-top: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--secondary);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
     transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.qr-cta a:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.cta-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.cta-check {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;
    background: #d0006f;
}

.cta-check svg {
    width: 12px;
    height: 12px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-accent-cta {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(192, 0, 99, 0.292);
    color: var(--gbp-secondary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin: 0 auto 8px;
}


/* ============================================================
   SEO SECTION
   ============================================================ */

.seo-section {
    padding: 40px 0;
    background-color: #f8fafc;
    font-family: inherit;
}

.seo-container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.seo-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.seo-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.seo-header .highlight {
    color: var(--secondary);
}

.seo-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================================
   SEO GRID — DESKTOP ONLY
   ============================================================ */

.seo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
}

.seo-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.seo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #d80067;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.seo-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: #1e1b4b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.seo-card:hover .seo-icon {
    background-color: #d80067;
    color: #ffffff;
}
.seo-card:hover .seo-icon svg {
    transform: rotate(360deg);
}
.seo-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}
.seo-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: transform 0.4s ease;
}
.seo-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.seo-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.seo-cta {
    background: #0d0b42;
    color: #ffffff;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.seo-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.seo-cta p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

.seo-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--secondary);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.seo-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    padding: 80px 40px;
    background-color: var(--background);
    font-family: inherit;
}

.faq-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-header .highlight {
    color: var(--secondary);
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: #d80067;
    box-shadow: 0 4px 16px rgba(216, 0, 103, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    gap: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #d80067;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   PROCESS SWIPER — MOBILE WRAPPER
   Hidden on desktop, shown only on mobile
   ============================================================ */

.process-swiper-wrapper {
  display: none;
}

/* ============================================================
   SEO SWIPER — MOBILE WRAPPER
   Hidden on desktop, shown only on mobile
   ============================================================ */

.seo-swiper-wrapper {
  display: none;
}

/* ============================================================
   SWIPER SHARED STYLES (both process and seo)
   ============================================================ */

.process-swiper-wrapper .swiper,
.seo-swiper-wrapper .swiper {
  width: 100%;
  padding-bottom: 40px !important;
}

.process-swiper-wrapper .swiper-slide,
.seo-swiper-wrapper .swiper-slide {
  height: auto;
}

/* Pagination bullets */
.process-swiper-wrapper .swiper-pagination-bullet,
.seo-swiper-wrapper .swiper-pagination-bullet {
  background: var(--border-dark);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: background var(--transition), transform var(--transition);
}

.process-swiper-wrapper .swiper-pagination-bullet-active,
.seo-swiper-wrapper .swiper-pagination-bullet-active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* Ensure cards inside swiper look correct */
.process-swiper-wrapper .process-card {
  min-height: 220px;
  height: 100%;
}

.seo-swiper-wrapper .seo-card {
  height: 100%;
}


/* ============================================================
   TABLET RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 1200px) {

  .features-layout {
    grid-template-columns:
      minmax(250px, 0.9fr)
      minmax(340px, 1.1fr);
  }

  .feature-grid {
    grid-column: 1 / -1;

    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    grid-template-rows: none;
  }

  .process-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .process-card {
    min-height: 260px;
  }

  .process-card:not(:last-child)::before {
    display: none;
  }

  .feature-showcase {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
  }

  .feature-showcase .content-panel {
    padding: 30px 18px 26px 26px;
  }

  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   TABLET / SMALL LAPTOP
   ============================================================ */

@media (max-width: 900px) {

  .section {
    padding: 85px 0;
  }

  .features-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
  }

  .content-panel {
    min-height: 100%;
  }

  .mockup-wrapper {
    padding: 10px 5px;
  }

  .feature-grid {
    grid-column: 1 / -1;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-template-rows: none;
  }

  .floating-badge {
    font-size: 8px;
  }

  .badge-left {
    left: -4px;
  }

  .badge-right {
    right: -4px;
  }

  .process-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  /* Feature showcase stacks to one column */
  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-showcase .mockup-wrapper {
    padding: 0 20px 20px;
  }

  .feature-showcase .content-panel {
    padding: 30px 26px 10px;
  }

  /* QR CTA card becomes full-width */
  .qr-cta {
    max-width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 50px 20px;
  }
}


/* ============================================================
   MOBILE RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 680px) {

  .container {
    width: min(
      calc(100% - 30px),
      var(--container-width)
    );
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 14px;
  }


  /* ============================================================
     PROCESS SECTION — MOBILE
     Hide desktop grid, show swiper
     ============================================================ */

  .process-grid {
    display: none;
  }

  .process-swiper-wrapper {
    display: block;
  }


  /* Feature layout */
  .features-layout {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  /* Content panel */
  .content-panel {
    padding: 28px 23px;
  }

  .content-panel h3 {
    font-size: 28px;
  }


  /* Mockup */
  .mockup-wrapper {
    padding: 0;
  }

  .qr-app {
    border-radius: 18px;
  }

  .generator-body {
    grid-template-columns: 1fr;

    padding: 15px;
  }

  .configuration-panel {
    order: 1;
  }

  .qr-preview-panel {
    order: 2;
  }


  /* Floating badges become normal inline elements */
  .floating-badges {
    position: static;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 7px;

    margin-top: 12px;
  }

  .floating-badge {
    position: static;

    padding: 7px 9px;

    transform: none;

    font-size: 8px;
  }

  .badge-top,
  .badge-left,
  .badge-right,
  .badge-bottom {
    position: static;

    transform: none;
  }


  /* Feature cards */
  .feature-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card h4 {
    font-size: 12px;
  }

  .feature-card p {
    font-size: 10px;
  }

  /* Feature showcase */
  .feature-showcase {
    border-radius: 18px;
  }

  .feature-showcase .content-panel {
    padding: 24px 20px 6px;
  }

  .feature-showcase .content-panel h3 {
    font-size: 26px;
  }

  .content-panel .panel-description {
    max-width: 100%;
  }

  .benefits-list li {
    font-size: 15px;
  }

  /* QR CTA */
  .qr-cta {
    padding: 24px;
    border-radius: 18px;
  }

  .qr-cta h3 {
    font-size: 22px;
  }

  .cta-points li {
    font-size: 13px;
  }

  .qr-cta a {
    width: 100%;
  }


  /* ============================================================
     SEO SECTION — MOBILE
     Hide desktop grid, show swiper
     ============================================================ */

  .seo-header h2 {
    font-size: 1.7rem;
  }

  .seo-section {
    padding: 30px 0;
  }

  .seo-container {
    padding: 0 20px;
  }

  .seo-grid {
    display: none;
  }

  .seo-swiper-wrapper {
    display: block;
    margin-bottom: 40px;
  }

  .seo-cta {
    padding: 24px;
    text-align: center;
    justify-content: center;
  }

  .seo-btn {
    width: 100%;
    justify-content: center;
  }


  /* FAQ section */
  .faq-header h2 {
    font-size: 1.7rem;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 16px 16px 16px;
  }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 430px) {

  .container {
    width: min(
      calc(100% - 22px),
      var(--container-width)
    );
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;

    grid-template-columns: auto 1fr;

    column-gap: 12px;
  }

  .feature-icon {
    grid-row: span 2;

    margin-bottom: 0;
  }

  .feature-card h4 {
    margin-bottom: 3px;
  }

  .app-header {
    padding-inline: 15px;
  }

  .qr-type-nav {
    padding-inline: 15px;
  }

  .generator-body {
    padding: 12px;
  }

  .configuration-panel,
  .qr-preview-panel {
    padding: 13px;
  }

  .download-buttons {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .color-controls {
    grid-template-columns: 1fr;
  }

  .feature-showcase .content-panel h3 {
    font-size: 23px;
  }

  .benefits-list li {
    font-size: 14px;
  }

  .primary-button {
    padding: 12px 18px;
    font-size: 12px;
  }

  .seo-card {
    padding: 20px;
  }

  .faq-section {
    padding: 40px 14px;
  }
}


/* ============================================================
   REDUCED MOTION ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 1201px) {
  .features-layout {
    flex-wrap: nowrap;
  }

  .features-layout > .content-panel {
    flex: 1 1 30%;
    max-width: 30%;
  }

  .features-layout > .feature-grid {
    flex: 1 1 44%;
    max-width: 44%;
  }

  .features-layout > .qr-cta {
    flex: 1 1 26%;
    max-width: 26%;
  }
}