:root {
  --blue: #00A5DF;
  --blue-dark: #0089BA;
  --red: #F93822;
  --red-hover: #D92F1B;
  --red-pressed: #B92615;
  --green: #22C55E;
  --ink: #0C0C0C;
  --muted: #676767;
  --line: #E5E7EB;
  --paper: #FFFFFF;
  --soft: #F7F7F7;
  --soft-blue: rgba(0, 165, 223, .10);
  --yellow: #F93822;
  --coral: #F93822;
  --mint: #22C55E;
  --shadow: 0 18px 50px rgba(12, 12, 12, .10);
  --shadow-sm: 0 10px 28px rgba(12, 12, 12, .07);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1360px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(0, 165, 223, .28);
  outline-offset: 3px;
}
::selection { color: #fff; background: var(--blue); }

.container {
  width: min(calc(100% - 24px), var(--container));
  margin-inline: auto;
}
.section { padding: 118px 0; position: relative; }
.section-anchor { scroll-margin-top: calc(var(--header-h) + 12px); }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
 font-family: "DM Sans", sans-serif;
  line-height: 1.13;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.1rem, 5vw, 5.15rem); font-weight: 800; }
h2 { font-size: clamp(2.35rem, 4.25vw, 4.25rem); font-weight: 800; }
h3 { font-size: 1.55rem; font-weight: 800; }
p { margin: 0; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  font-weight: 700;
  font-size: .84rem;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  font-size: .87rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 10px 24px rgba(249, 56, 34, .22); }
.btn-primary:hover { background: var(--red-hover); box-shadow: 0 14px 28px rgba(249, 56, 34, .28); }
.btn-primary:active { background: var(--red-pressed); transform: translateY(0); }
.btn-outline { color: var(--blue); background: #fff; border-color: rgba(0, 165, 223, .42); }
.btn-outline:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    font-weight: 700;
    font-size: 0.87rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    color: rgb(247, 247, 247);
    padding: 0px 30px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 10px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
    background: linear-gradient(to right, rgb(249, 56, 34),  rgb(0, 165, 223));
}
.btn-cta:hover {transform: translateY(-2px);}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-weight: 700;
  font-size: .91rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.text-link span { font-size: 1.7rem; line-height: 1; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-mark { position: relative; width: 72px; height: 72px; animation: rotate 1.7s linear infinite; }
.preloader-mark span { position: absolute; width: 26px; height: 26px; border-radius: 50%; background: var(--blue); }
.preloader-mark span:nth-child(1) { top: 0; left: 23px; }
.preloader-mark span:nth-child(2) { right: 0; top: 23px; background: var(--yellow); }
.preloader-mark span:nth-child(3) { bottom: 0; left: 23px; background: var(--coral); }
.preloader-mark span:nth-child(4) { left: 0; top: 23px; background: var(--mint); }
@keyframes rotate { to { transform: rotate(360deg); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(229,231,235,.90);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(12,12,12,.07); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: "DM Sans", sans-serif; font-weight: 800; font-size: 1.32rem; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { display: inline-flex; width: 36px; height: 36px; color: var(--blue); }
.brand-mark svg { width: 100%; height: 100%; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2.2vw, 38px); margin-left: auto; }
.nav-link { position: relative; color: #676767; font-weight: 500; transition: color .2s ease; }
.nav-link::after { content: ""; position: absolute; right: -8px; top: 3px; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); opacity: 0; transform: scale(0); transition: .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after { opacity: 1; transform: scale(1); }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: 12px; }
.language-btn { border: 0; background: transparent; font-weight: 600; cursor: pointer; padding: 8px; }
.header-cta { min-height: 48px; padding: 0 25px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 1px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 84px 0 108px;
  background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 72%, #F7F7F7 100%);
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  width: 1100px;
  height: 620px;
  top: -310px;
  left: -230px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  transform: rotate(8deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr); align-items: center; gap: 54px; }
.hero-copy { padding-top: 16px; }
.hero-copy h1 { margin-top: 34px; max-width: 710px; }
.highlight { position: relative; z-index: 1; display: inline-block; }
.highlight::after { content: ""; position: absolute; z-index: -1; left: 0; bottom: .08em; width: 0; height: .17em; background: var(--red); opacity: .28; transition: width 1s .6s cubic-bezier(.2,.8,.2,1); }
body.loaded .highlight::after { width: 100%; }
.hero-copy p { max-width: 610px; margin-top: 32px; font-size: 1.27rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.play-icon { margin-right: 8px; color: var(--blue); font-size: .8rem; }
.video-btn:hover .play-icon { color: #fff; }
.hero-visual { position: relative; min-width: 0; }
.hero-visual img { width: 100%; filter: drop-shadow(0 24px 28px rgba(12,12,12,.04)); }
.illustration-credit { margin-top: 6px; color: var(--muted); text-align: center; font-size: .82rem; }
.floating-star { position: absolute; z-index: 2; color: #00A5DF; font-size: 2.2rem; animation: float 4s ease-in-out infinite; }
.star-one { left: 18%; top: 7%; }
.star-two { right: 10%; top: 28%; animation-delay: -1.6s; color: var(--yellow); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }
.scroll-down { position: absolute; z-index: 2; left: max(24px, calc((100vw - var(--container))/2)); bottom: 32px; display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; }
.scroll-down span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #676767; border-radius: 50%; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.section-heading h2 { margin-top: 28px; }
.section-heading p { max-width: 780px; margin-top: 30px; font-size: 1.2rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin-inline: auto; }
.section-heading.centered .text-link { margin-top: 30px; }

.about-section { min-height: 920px; overflow: hidden; }
.about-collage { position: relative; height: 430px; max-width: 1260px; margin: 60px auto 0; }
.collage-card { position: absolute; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-sm); }
.collage-card img { width: 100%; height: 100%; object-fit: cover; }
.collage-a { left: 2%; top: 58px; width: 260px; height: 195px; }
.collage-b { left: 16%; top: 170px; width: 235px; height: 165px; }
.collage-c { left: 43%; top: 130px; width: 250px; height: 195px; }
.collage-d { right: 5%; top: 62px; width: 290px; height: 205px; }
.collage-shape { position: absolute; z-index: -1; }
.shape-orange { left: 10%; top: 230px; width: 100px; height: 100px; border: 24px solid #F93822; border-radius: 50%; border-right-color: transparent; }
.shape-gradient { left: 48%; top: 260px; width: 90px; height: 130px; border-radius: 50%; background: linear-gradient(145deg, #00A5DF, #F93822); transform: rotate(-25deg); opacity: .8; }
.shape-blue { right: 23%; top: 95px; width: 120px; height: 120px; background: linear-gradient(140deg, #00A5DF, #22C55E); clip-path: polygon(50% 0,100% 100%,0 100%); opacity: .78; }
.wave-pattern { position: absolute; width: 145px; height: 88px; opacity: .75; background: radial-gradient(circle at 15px -2px, transparent 18px, #00A5DF 19px, #00A5DF 22px, transparent 23px) 0 0/42px 22px; }
.wave-left { left: -3%; top: 5px; }
.wave-right { right: -4%; top: 160px; filter: hue-rotate(150deg); }

.services-section { background: linear-gradient(180deg, #FFFFFF, #F7F7F7); }
.services-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; margin-top: 58px; }
.service-card { display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: center; min-height: 255px; padding: 36px 40px; background: #fff; border: 1px solid #E5E7EB; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card h3 { margin-bottom: 16px; }
.service-card p { font-size: 1.03rem; }
.service-art { position: relative; height: 170px; }
.service-art span { position: absolute; display: block; }
.art-branding .blob { left: 8px; top: 10px; width: 130px; height: 120px; border-radius: 60% 40% 55% 45%; background: #00A5DF; transform: rotate(-18deg); }
.art-branding .frame { left: 42px; top: 36px; width: 92px; height: 104px; border: 10px double var(--yellow); background: #fff; box-shadow: 7px 6px 0 #D92F1B; }
.art-branding .dots, .art-web .dots, .art-dev .dots { width: 58px; height: 58px; right: 5px; bottom: 5px; background-image: radial-gradient(var(--coral) 3px, transparent 3px); background-size: 13px 13px; }
.art-web .face { left: 32px; top: 54px; width: 114px; height: 84px; background: var(--coral); border-radius: 45% 45% 50% 50%; }
.art-web .face::before { content: ""; position: absolute; left: 20px; top: -40px; width: 74px; height: 60px; border-radius: 50% 50% 20% 20%; background: var(--yellow); }
.art-web .glasses { left: 8px; top: 35px; width: 160px; height: 55px; border-radius: 20px; background: linear-gradient(90deg, #123 0 38%, transparent 38% 62%, #123 62%); transform: rotate(7deg); }
.art-web .glasses::before, .art-web .glasses::after { content: ""; position: absolute; width: 43px; height: 32px; top: 11px; border: 5px solid #22C55E; border-radius: 50%; background: #fff; }
.art-web .glasses::before { left: 12px; }
.art-web .glasses::after { right: 12px; }
.art-dev .tray { left: 22px; top: 42px; width: 132px; height: 75px; border-radius: 70px 70px 8px 8px; background: #EAF8FD; border-bottom: 8px solid #0C0C0C; }
.art-dev .tray::before { content: ""; position: absolute; width: 20px; height: 20px; top: -16px; left: 58px; border-radius: 50%; background: #0C0C0C; }
.art-dev .hand { left: 68px; top: 108px; width: 80px; height: 52px; border-radius: 50px 12px 12px 50px; background: var(--coral); transform: rotate(14deg); }
.art-marketing .balloon { left: 50px; top: 22px; width: 106px; height: 106px; border-radius: 50%; background: #22C55E; }
.art-marketing .balloon::before { content: "↑"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 2.4rem; }
.art-marketing .balloon::after { content: ""; position: absolute; left: 50%; top: 100%; width: 3px; height: 55px; background: #0C0C0C; }
.art-marketing .cloud { width: 60px; height: 25px; border-radius: 50px; background: #F7F7F7; }
.art-marketing .c1 { left: 4px; top: 55px; }
.art-marketing .c2 { right: 0; top: 78px; }

.why-section { padding-top: 105px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.why-visual img { width: 100%; max-height: 580px; }
.why-copy h2 { margin-top: 28px; }
.why-copy > p { max-width: 620px; margin-top: 30px; font-size: 1.18rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 45px; margin-top: 34px; color: var(--muted); font-size: 1.03rem; }
.check-grid div { display: flex; align-items: center; gap: 12px; }
.check-grid span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--blue); background: var(--soft-blue); border-radius: 50%; font-weight: 800; }

.portfolio-section { background: #FFFFFF; }
.filter-tabs { width: max-content; max-width: 100%; display: flex; margin: 54px auto 52px; border: 1px solid #E5E7EB; border-radius: 10px; overflow: hidden; background: #fff; }
.filter-btn { min-height: 50px; padding: 0 24px; border: 0; border-right: 1px solid #E5E7EB; color: var(--muted); background: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: .22s ease; }
.filter-btn:last-child { border-right: 0; }
.filter-btn.active, .filter-btn:hover { color: #fff; background: var(--blue); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 30px; }
.project-card { overflow: hidden; background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; box-shadow: var(--shadow-sm); transition: opacity .25s ease, transform .25s ease; }
.project-card.is-hidden { display: none; }
.project-image { position: relative; overflow: hidden; aspect-ratio: 1.4; background: var(--soft); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-overlay { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(0,165,223,.88); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: 0; transition: opacity .3s ease; }
.project-card:hover .project-image img { transform: scale(1.07); }
.project-card:hover .project-overlay { opacity: 1; }
.project-info { padding: 25px 28px 28px; }
.project-info h3 { font-size: 1.25rem; }
.project-info p { margin-top: 5px; }

.testimonials-section { overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: .95fr 1.15fr; gap: 90px; align-items: center; }
.testimonial-intro h2 { margin-top: 28px; }
.testimonial-intro > p { margin-top: 30px; max-width: 590px; font-size: 1.14rem; }
.stats-row { display: flex; gap: 60px; margin-top: 36px; }
.stats-row > div { display: flex; align-items: center; gap: 15px; }
.stats-row strong { color: var(--blue); font-family: "DM Sans", sans-serif; font-size: 3.7rem; line-height: 1; letter-spacing: -.05em; }
.stats-row span { color: var(--muted); line-height: 1.5; }
.testimonial-cards { position: relative; min-height: 630px; }
.quote-card { position: absolute; width: min(48%, 330px); min-height: 270px; padding: 38px 32px 28px; border: 1px solid #E5E7EB; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.quote-card p { font-size: 1.02rem; }
.quote-mark { position: absolute; left: 15px; top: 5px; color: #F7F7F7; font-size: 5rem; font-family: "DM Sans", sans-serif; line-height: 1; }
.quote-card > p { position: relative; z-index: 1; }
.quote-a { left: 0; top: 60px; }
.quote-b { right: 0; top: 0; }
.quote-c { left: 0; bottom: 0; }
.quote-d { right: 0; bottom: 40px; }
.person { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.person img { width: 46px; height: 46px; border-radius: 50%; }
.person strong, .person span { display: block; }
.person strong { font-family: "DM Sans", sans-serif; font-size: .98rem; }
.person span { color: var(--muted); font-size: .9rem; }
.trusted-block { margin-top: 120px; padding-top: 50px; border-top: 1px solid var(--line); text-align: center; }
.trusted-block h3 { font-size: 1.42rem; }
.logo-row { display: grid; grid-template-columns: repeat(6,1fr); align-items: center; gap: 30px; margin-top: 45px; color: #A8A8A8; font-family: "DM Sans", sans-serif; font-size: clamp(1.1rem, 2vw, 1.8rem); font-weight: 800; }
.logo-row span { transition: color .25s ease, transform .25s ease; }
.logo-row span:hover { color: var(--ink); transform: translateY(-3px); }

.blog-section { background: #FFFFFF; }
.blog-title-row { position: relative; }
.blog-title-row .text-link { position: absolute; right: 0; bottom: 8px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; margin-top: 55px; }
.blog-card { overflow: hidden; border: 1px solid #E5E7EB; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.blog-card > img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.blog-content { padding: 28px 30px 24px; }
.blog-content h3 { font-size: 1.25rem; line-height: 1.35; }
.blog-content > p { margin-top: 14px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; color: var(--muted); font-size: .85rem; }
.mini-person { display: inline-flex; align-items: center; gap: 8px; }
.mini-person img { width: 30px; height: 30px; border-radius: 50%; }

.newsletter-section { background: linear-gradient(180deg,#fff,#F7F7F7); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.newsletter-visual img { width: 100%; max-height: 540px; }
.newsletter-copy h2 { margin-top: 28px; }
.newsletter-copy > p { max-width: 600px; margin-top: 28px; font-size: 1.15rem; }
.subscribe-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 28px; }
.subscribe-form input { min-width: 0; height: 56px; padding: 0 20px; border: 1px solid #E5E7EB; border-radius: 10px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.subscribe-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,165,223,.12); }
.newsletter-copy small, .contact-card small { display: block; margin-top: 12px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.newsletter-copy small a, .contact-card small a { text-decoration: underline; }

.contact-section { padding-bottom: 130px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.35fr; gap: 60px; align-items: stretch; }
.contact-details { position: relative; min-height: 620px; }
.contact-details h2 { margin-top: 28px; }
.contact-list { display: grid; gap: 28px; padding: 0; margin: 48px 0 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon { display: grid; place-items: center; flex: 0 0 auto; width: 46px; height: 46px; color: var(--blue); background: var(--soft-blue); border-radius: 50%; font-weight: 800; }
.contact-list p { color: var(--muted); line-height: 1.55; }
.contact-list a { display: inline-block; margin-top: 4px; color: var(--blue); font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.contact-art { position: absolute; right: -100px; bottom: -10px; width: 320px; opacity: .96; }
.contact-card { position: relative; z-index: 1; padding: 50px; border: 1px solid #E5E7EB; border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.contact-card h3 { margin-bottom: 30px; font-size: 1.65rem; }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 9px; color: var(--ink); font-weight: 700; }
.field input, .field textarea { width: 100%; border: 1px solid #E5E7EB; border-radius: 10px; background: #fff; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input { height: 54px; padding: 0 18px; }
.field textarea { min-height: 175px; padding: 16px 18px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,165,223,.12); }
.field input.is-invalid, .field textarea.is-invalid, .subscribe-form input.is-invalid { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(249,56,34,.12); }
.form-footer { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 45px; margin-top: 12px; }
.form-footer small { margin-top: 0; }

.site-footer { color: #D1D1D1; background: #0C0C0C; padding: 90px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr .85fr; gap: 70px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: #fff; }
.footer-about p { max-width: 390px; margin-top: 25px; color: #D1D1D1; }
.footer-grid h4 { color: #fff; font-size: .87rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-about) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid > div:not(.footer-about) a { transition: color .2s ease; }
.footer-grid > div:not(.footer-about) a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 80px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }

.back-to-top { position: fixed; z-index: 900; right: 30px; bottom: 30px; display: grid; place-items: center; width: 48px; height: 48px; color: var(--blue); border: 0; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.toast { position: fixed; z-index: 1300; left: 50%; bottom: 28px; min-width: min(92vw, 360px); padding: 15px 20px; color: #fff; text-align: center; border-radius: 10px; background: var(--ink); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 20px); transition: .3s ease; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%,0); }

.video-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: .25s ease; }
.video-modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12,12,12,.76); backdrop-filter: blur(7px); }
.modal-box { position: relative; z-index: 1; width: min(720px, 100%); padding: 54px; border-radius: 20px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.3); transform: translateY(20px) scale(.98); transition: .3s ease; }
.video-modal.is-open .modal-box { transform: translateY(0) scale(1); }
.modal-box h2 { margin-top: 24px; font-size: clamp(2rem,4vw,3.4rem); }
.modal-close { position: absolute; right: 18px; top: 16px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--soft-blue); font-size: 1.7rem; cursor: pointer; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 34px; }
.process-steps span { padding: 17px 12px; color: var(--blue); text-align: center; border-radius: 10px; background: var(--soft-blue); font-weight: 700; }

.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: opacity .8s ease var(--delay,0s), transform .8s cubic-bezier(.2,.7,.2,1) var(--delay,0s); }
.reveal-up { transform: translateY(45px); }
.reveal-left { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }
.reveal-scale { transform: scale(.94); }
.is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  :root { --header-h: 78px; }
  .desktop-nav, .language-btn, .header-cta { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; top: var(--header-h); left: 0; right: 0; display: flex; flex-direction: column; gap: 4px; max-height: 0; padding: 0 24px; overflow: hidden; background: #fff; box-shadow: 0 18px 35px rgba(12,12,12,.10); transition: max-height .35s ease, padding .35s ease; }
  .mobile-menu.is-open { max-height: calc(100vh - var(--header-h)); padding: 18px 24px 28px; }
  .mobile-menu a:not(.btn) { padding: 11px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }
  .mobile-menu .btn { margin-top: 10px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero-copy p { font-size: 1.08rem; }
  .service-card { grid-template-columns: 150px 1fr; padding: 30px; gap: 24px; }
  .why-grid { gap: 40px; }
  .testimonials-grid { gap: 45px; }
  .contact-art { right: -70px; width: 280px; }
}

@media (max-width: 992px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid, .why-grid, .newsletter-grid, .contact-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { max-width: 760px; margin: 25px auto 0; }
  .scroll-down { display: none; }
  .about-section { min-height: 760px; }
  .about-collage { transform: scale(.86); transform-origin: top center; margin-top: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 180px 1fr; }
  .why-visual { max-width: 720px; margin-inline: auto; }
  .portfolio-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonial-intro { max-width: 720px; }
  .testimonial-cards { min-height: 620px; }
  .trusted-block { margin-top: 80px; }
  .logo-row { grid-template-columns: repeat(3,1fr); }
  .newsletter-visual { max-width: 680px; margin-inline: auto; }
  .contact-details { min-height: auto; }
  .contact-art { position: absolute; right: 0; bottom: -30px; width: 260px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 768px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  h1 { font-size: clamp(2.65rem, 11vw, 4.1rem); }
  h2 { font-size: clamp(2.1rem, 9vw, 3.3rem); }
  .section { padding: 76px 0; }
  .hero { padding: 58px 0 78px; }
  .hero-copy h1 { margin-top: 26px; }
  .hero-copy p { margin-top: 22px; }
  .hero-buttons .btn { width: 100%; }
  .about-section { min-height: auto; }
  .about-collage { height: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; transform: none; }
  .collage-card { position: relative; inset: auto; width: auto; height: 180px; }
  .collage-card:nth-child(3) { margin-top: 30px; }
  .collage-shape, .wave-pattern { display: none; }
  .services-title-row { align-items: flex-start; flex-direction: column; }
  .service-card { grid-template-columns: 1fr; text-align: center; }
  .service-art { width: 190px; margin-inline: auto; }
  .check-grid { grid-template-columns: 1fr; gap: 16px; }
  .filter-tabs { width: 100%; overflow-x: auto; justify-content: flex-start; }
  .filter-btn { flex: 0 0 auto; }
  .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .testimonial-cards { min-height: auto; display: grid; gap: 18px; }
  .quote-card { position: relative; inset: auto; width: 100%; min-height: 0; }
  .stats-row { gap: 30px; }
  .stats-row strong { font-size: 3rem; }
  .logo-row { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .blog-title-row .text-link { position: static; margin-top: 28px; }
  .subscribe-form { grid-template-columns: 1fr; }
  .contact-details { padding-bottom: 190px; }
  .contact-art { width: 220px; left: 50%; right: auto; transform: translateX(-50%); }
  .contact-card { padding: 32px 24px; }
  .form-row, .form-footer { grid-template-columns: 1fr; }
  .form-footer { gap: 18px; }
  .form-footer .btn { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 42px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 520px) {
  .brand { font-size: 1.15rem; }
  .brand-mark { width: 32px; height: 32px; }
  .about-collage { grid-template-columns: 1fr; }
  .collage-card, .collage-card:nth-child(3) { height: 210px; margin-top: 0; }
  .service-card { padding: 26px 20px; }
  .stats-row { flex-direction: column; gap: 20px; }
  .newsletter-copy br, .section-heading h2 br, .why-copy h2 br, .testimonial-intro h2 br { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .back-to-top { right: 18px; bottom: 18px; }
  .modal-box { padding: 45px 24px 30px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   BULKIT FANCY TYPOGRAPHY
   Font sizing and spacing adapted to the supplied theme-fancy
   reference while retaining the Bulkit brand colour palette.
   ========================================================= */

body.theme-fancy {
  --container: 1230px;
  --radius-lg: 10px;
  --radius-md: 10px;
  color: var(--ink);
 font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -.0025em;
}

 a.brand.bulkit-brand img {
    max-height: 49px;
}

.theme-fancy .section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.theme-fancy h1,
.theme-fancy h2,
.theme-fancy h3,
.theme-fancy h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.theme-fancy h1 {
  font-size: clamp(3rem, 4.45vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -.0399em;
}

.theme-fancy h2 {
  font-size: clamp(2.35rem, 3.15vw, 3rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}

.theme-fancy h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.theme-fancy h4 {
  line-height: 1.35;
}

.theme-fancy p {
  line-height: 1.625;
}

.theme-fancy .brand {
  font-size: 1.32rem;
  font-weight: 700;
}

.theme-fancy .desktop-nav,
.theme-fancy .mobile-menu {
  font-size: 16px;
}

.theme-fancy .nav-link {
  font-weight: 400;
  letter-spacing: -.01em;
}

.theme-fancy .eyebrow {
  min-height: 31px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .085em;
}

.theme-fancy .btn {
  min-height: 54px;
  padding: 15px 36px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .085em;
}

.theme-fancy .header-cta {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 13px;
}

.theme-fancy .text-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.theme-fancy .hero-copy h1 {
  margin-top: 30px;
}

.theme-fancy .hero-copy p,
.theme-fancy .section-heading p,
.theme-fancy .why-copy > p,
.theme-fancy .testimonial-intro > p,
.theme-fancy .newsletter-copy > p {
  font-size: 20px;
  line-height: 1.625;
  letter-spacing: -.01239em;
}

.theme-fancy .section-heading h2 {
  margin-top: 20px;
}

.theme-fancy .why-copy h2,
.theme-fancy .testimonial-intro h2,
.theme-fancy .newsletter-copy h2 {
  font-size: clamp(2rem, 2.65vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -.0285em;
}

.theme-fancy .service-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -.03em;
}

.theme-fancy .service-card p,
.theme-fancy .check-grid,
.theme-fancy .quote-card p {
  font-size: 18px;
  line-height: 1.625;
}

.theme-fancy .project-info h3,
.theme-fancy .blog-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.02em;
}

.theme-fancy .project-info p,
.theme-fancy .blog-content > p {
  font-size: 16px;
  line-height: 1.625;
}

.theme-fancy .filter-btn {
  min-height: 48px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .059em;
}

.theme-fancy .stats-row strong {
  font-size: 64px;
  font-weight: 700;
}

.theme-fancy .stats-row span {
  font-size: 16px;
}

.theme-fancy .person strong {
  font-size: 16px;
  font-weight: 600;
}

.theme-fancy .person span,
.theme-fancy .blog-meta {
  font-size: 14px;
}

.theme-fancy .trusted-block h3 {
  font-size: 22px;
  font-weight: 700;
}

.theme-fancy .contact-card h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.theme-fancy .field {
  margin-bottom: 25px;
}

.theme-fancy .field label {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.theme-fancy .field input,
.theme-fancy .subscribe-form input {
  height: 52px;
  font-size: 17px;
}

.theme-fancy .field textarea {
  min-height: 160px;
  font-size: 17px;
}

.theme-fancy .newsletter-copy small,
.theme-fancy .contact-card small {
  font-size: 13px;
  line-height: 1.53;
}

.theme-fancy .contact-list p {
  font-size: 16px;
}

.theme-fancy .contact-list a {
  font-size: 13px;
  font-weight: 700;
}

.theme-fancy .site-footer {
  font-size: 16px;
  line-height: 1.7;
}

.theme-fancy .footer-grid h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
}

.theme-fancy .footer-bottom {
  font-size: 14px;
}

@media (max-width: 1366px) {
  .theme-fancy .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .theme-fancy h1 {
    font-size: calc(1.253rem + 2.20vw);
  }
  a.brand img {
    max-height: 53px;
     margin-left: 10px;
  }

  .theme-fancy h2 {
    font-size: calc(1.041rem + 2.29vw);
  }

  .theme-fancy .why-copy h2,
  .theme-fancy .testimonial-intro h2,
  .theme-fancy .newsletter-copy h2 {
    font-size: calc(1.521rem + 1.15vw);
  }
}

@media (max-width: 992px) {
  body.theme-fancy {
    font-size: 17px;
  }

  .theme-fancy .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .theme-fancy .hero-copy p,
  .theme-fancy .section-heading p,
  .theme-fancy .why-copy > p,
  .theme-fancy .testimonial-intro > p,
  .theme-fancy .newsletter-copy > p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  body.theme-fancy {
    font-size: 16px;
  }

  .theme-fancy .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .theme-fancy h1 {
    font-size: clamp(2.55rem, 11vw, 3.55rem);
    line-height: 1.12;
  }

  .theme-fancy h2 {
    font-size: clamp(2.05rem, 8.5vw, 2.75rem);
  }

  .theme-fancy .why-copy h2,
  .theme-fancy .testimonial-intro h2,
  .theme-fancy .newsletter-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.4rem);
  }

  .theme-fancy .hero-copy p,
  .theme-fancy .section-heading p,
  .theme-fancy .why-copy > p,
  .theme-fancy .testimonial-intro > p,
  .theme-fancy .newsletter-copy > p {
    font-size: 17px;
  }

  .theme-fancy .service-card h3 {
    font-size: 24px;
  }

  .theme-fancy .service-card p,
  .theme-fancy .check-grid,
  .theme-fancy .quote-card p {
    font-size: 16px;
  }

  .theme-fancy .field label {
    font-size: 17px;
  }
}

/* =========================================================
   RESPONSIVE LAYOUT PATCH V2
   Robust desktop, laptop, tablet and mobile behaviour.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  min-width: 320px;
  overflow-x: clip;
}

main,
section,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
}

.container,
.header-inner,
.hero-grid,
.why-grid,
.newsletter-grid,
.contact-grid,
.testimonials-grid,
.service-grid,
.portfolio-grid,
.blog-grid,
.footer-grid,
.form-row,
.form-footer {
  min-width: 0;
}

.hero-grid > *,
.why-grid > *,
.newsletter-grid > *,
.contact-grid > *,
.testimonials-grid > *,
.service-grid > *,
.portfolio-grid > *,
.blog-grid > *,
.footer-grid > *,
.form-row > *,
.form-footer > * {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  max-width: 100%;
}

.site-header {
  min-height: var(--header-h);
  height: auto;
}

.header-inner {
  min-height: var(--header-h);
}

.mobile-menu {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
}

.hero-copy,
.hero-visual,
.section-heading,
.why-copy,
.testimonial-intro,
.newsletter-copy,
.contact-details,
.contact-card {
  min-width: 0;
}

.hero-copy h1,
.section-heading h2,
.why-copy h2,
.testimonial-intro h2,
.newsletter-copy h2,
.contact-details h2 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-copy p,
.section-heading p,
.why-copy > p,
.testimonial-intro > p,
.newsletter-copy > p,
.service-card p,
.blog-content p,
.quote-card p,
.contact-list p,
.footer-about p {
  overflow-wrap: anywhere;
}

.filter-tabs {
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.project-card,
.blog-card,
.service-card,
.quote-card,
.contact-card {
  width: 100%;
  min-width: 0;
}

.project-image,
.blog-card > img {
  min-width: 0;
}

/* Laptop and compact desktop */
@media (max-width: 1199px) {
  :root {
    --header-h: 78px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .desktop-nav,
  .language-btn,
  .header-cta {
    display: none !important;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    padding: 0 20px;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(12,12,12,.10);
    transform: translateY(-10px);
    transition: max-height .35s ease, padding .35s ease, opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    padding: 14px 20px 24px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a:not(.btn) {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }

  .mobile-menu .btn {
    width: 100%;
    margin-top: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 30px;
  }

  .service-card {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 30px;
  }

  .why-grid,
  .testimonials-grid {
    gap: 48px;
  }

  .testimonial-cards {
    min-height: 590px;
  }

  .quote-card {
    width: min(48%, 310px);
    padding: 34px 28px 26px;
  }

  .contact-art {
    right: -30px;
    width: 250px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  body.theme-fancy {
    font-size: 17px;
  }

  .theme-fancy .section,
  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 86px;
  }

  .hero-grid,
  .why-grid,
  .newsletter-grid,
  .contact-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .scroll-down {
    display: none;
  }

  .about-section {
    min-height: 0;
  }

  .about-collage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

  .collage-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .collage-card:nth-child(4) {
    margin-top: 28px;
  }

  .collage-shape,
  .wave-pattern {
    display: none;
  }

  .services-title-row {
    align-items: flex-start;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .why-visual,
  .newsletter-visual {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .why-copy,
  .newsletter-copy,
  .testimonial-intro {
    max-width: 760px;
  }

  .portfolio-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-cards {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .quote-card,
  .quote-a,
  .quote-b,
  .quote-c,
  .quote-d {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
  }

  .trusted-block {
    margin-top: 78px;
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-details {
    min-height: 0;
    padding-bottom: 0;
  }

  .contact-art {
    position: relative;
    inset: auto;
    width: min(100%, 330px);
    margin: 36px auto 0;
    transform: none;
  }

  .contact-card {
    margin-top: 10px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

/* Large phones and small tablets */
@media (max-width: 767px) {
  :root {
    --header-h: 70px;
  }

  body.theme-fancy {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-inner {
    gap: 16px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .theme-fancy .section,
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    padding: 52px 0 68px;
  }

  .theme-fancy h1,
  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.4rem);
    line-height: 1.1;
  }

  .theme-fancy h2,
  h2 {
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 1.16;
  }

  .theme-fancy .why-copy h2,
  .theme-fancy .testimonial-intro h2,
  .theme-fancy .newsletter-copy h2,
  .why-copy h2,
  .testimonial-intro h2,
  .newsletter-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.2;
  }

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

  .hero-copy p,
  .theme-fancy .hero-copy p,
  .theme-fancy .section-heading p,
  .theme-fancy .why-copy > p,
  .theme-fancy .testimonial-intro > p,
  .theme-fancy .newsletter-copy > p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-copy br,
  .section-heading h2 br,
  .why-copy h2 br,
  .testimonial-intro h2 br,
  .newsletter-copy h2 br {
    display: none;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 30px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .theme-fancy .btn,
  .btn {
    min-height: 52px;
    padding: 13px 22px;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .about-collage {
    gap: 14px;
  }

  .collage-card:nth-child(4) {
    margin-top: 18px;
  }

  .services-title-row {
    flex-direction: column;
    gap: 26px;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 28px 22px;
    text-align: center;
  }

  .service-art {
    width: min(190px, 100%);
    margin-inline: auto;
  }

  .theme-fancy .service-card h3 {
    font-size: 24px;
  }

  .theme-fancy .service-card p,
  .theme-fancy .check-grid,
  .theme-fancy .quote-card p {
    font-size: 16px;
  }

  .check-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .filter-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 38px auto 40px;
    padding: 8px;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .filter-btn,
  .theme-fancy .filter-btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    font-size: 12px;
  }

  .portfolio-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-info,
  .blog-content {
    padding-right: 22px;
    padding-left: 22px;
  }

  .testimonial-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .stats-row > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .theme-fancy .stats-row strong,
  .stats-row strong {
    font-size: 3rem;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .blog-title-row .text-link {
    position: static;
    margin-top: 26px;
  }

  .subscribe-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .subscribe-form .btn {
    width: 100%;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .form-row,
  .form-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-footer {
    gap: 18px;
  }

  .form-footer .btn {
    width: 100%;
  }

  .theme-fancy .field label {
    margin-bottom: 9px;
    font-size: 16px;
  }

  .theme-fancy .field input,
  .theme-fancy .subscribe-form input {
    height: 52px;
    font-size: 16px;
  }

  .theme-fancy .field textarea {
    min-height: 145px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 58px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Small phones */
@media (max-width: 575px) {
  .container {
    width: min(calc(100% - 16px), var(--container));
  }

  .brand {
    max-width: calc(100vw - 96px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-visual {
    width: 108%;
    max-width: none;
    margin-left: -4%;
  }

  .illustration-credit {
    padding-inline: 16px;
  }

  .about-collage {
    grid-template-columns: minmax(0, 1fr);
  }

  .collage-card,
  .collage-card:nth-child(4) {
    margin-top: 0;
    aspect-ratio: 16 / 10;
  }

  .filter-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 1rem;
  }

  .contact-list li {
    gap: 13px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .modal-box {
    padding: 48px 22px 28px;
  }

  .process-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 12px), var(--container));
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .theme-fancy h1,
  h1 {
    font-size: 2.22rem;
  }

  .theme-fancy h2,
  h2 {
    font-size: 1.9rem;
  }

  .contact-card {
    padding: 26px 18px;
  }
}

@media (orientation: landscape) and (max-height: 560px) and (max-width: 991px) {
  .mobile-menu.is-open {
    max-height: calc(100dvh - var(--header-h));
  }

  .hero {
    padding-top: 44px;
  }
}
/* requird */
/* ===== FORM VALIDATION + PHONE CODE FIX ===== */

.required {
  color: var(--red);
  margin-left: 3px;
}

.phone-input-row {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 10px;
}

.phone-input-row select,
.phone-input-row input {
  width: 100%;
}

.field-help {
  display: block;
  margin-top: 7px;
  color: #676767;
  font-size: 13px;
  line-height: 1.45;
}

.bulkit-brand-form .is-invalid,
.bulkit-brand-form input.is-invalid,
.bulkit-brand-form select.is-invalid,
.bulkit-brand-form textarea.is-invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(249, 56, 34, 0.12) !important;
}

.bulkit-brand-form .validation-message {
  display: block;
  margin-top: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .phone-input-row {
    grid-template-columns: 1fr;
  }
}

/* phone code + phone number same line */
.phone-field .phone-input-row {
  display: grid !important;
  grid-template-columns: 80px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  width: 100% !important;
}

.phone-field .phone-input-row select,
.phone-field .phone-input-row input {
  width: 100% !important;
  margin: 0 !important;
}

.phone-field .field-help {
  display: block;
  margin-top: 8px;
  color: #676767;
  font-size: 13px;
  line-height: 1.45;
}

.required {
  color: var(--red);
  margin-left: 3px;
}

/* keep one line on desktop/tablet */
@media (min-width: 576px) {
  .phone-field .phone-input-row {
    grid-template-columns: 85px minmax(0, 1fr) !important;
  }
}

/* mobile */
@media (max-width: 575px) {
  .phone-field .phone-input-row {
    grid-template-columns: 1fr !important;
  }
}
/* ===== Final responsive collage and testimonial layout ===== */
.about-section { min-height: auto; overflow: hidden; }
.about-collage {
  position: relative;
  height: 450px;
  max-width: 1320px;
  margin: 56px auto 0;
  isolation: isolate;
}
.about-dot-grid {
  position: absolute;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(rgba(0,165,223,.42) 2.7px, transparent 2.7px);
  background-size: 17px 17px;
  opacity: .55;
  z-index: -1;
  animation: decorativeFloat 7s ease-in-out infinite;
}
.about-dot-top { left: 7%; top: 18px; }
.about-dot-bottom {
  right: 4%;
  bottom: 18px;
  background-image: radial-gradient(rgba(249,56,34,.34) 2.7px, transparent 2.7px);
  animation-delay: -2.4s;
}
.collage-card,
.collage-shape,
.wave-pattern { will-change: transform; }
.collage-card {
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(12,12,12,.08);
}
.collage-card img { display:block; width:100%; height:100%; object-fit:cover; }
.collage-a { left: 5%; top: 78px; width: 258px; height: 192px; }
.collage-b { left: 17%; top: 216px; width: 240px; height: 168px; }
.collage-c { left: 42%; top: 182px; width: 286px; height: 214px; }
.collage-d { right: 5%; top: 76px; width: 270px; height: 194px; }
.shape-orange { left: 12%; top: 292px; width: 102px; height: 102px; border-width: 24px; opacity:.84; }
.shape-gradient { left: 48%; top: 330px; width: 88px; height: 126px; }
.shape-blue { right: 18%; top: 142px; width: 124px; height: 110px; opacity:.75; }
.wave-left { left: 0; top: 24px; }
.wave-right { right: 0; top: 174px; }
.float-slow { animation: floatUp 6.8s ease-in-out infinite; }
.float-medium { animation: floatDown 6.1s ease-in-out infinite; }
.float-fast { animation: floatUpSmall 5.3s ease-in-out infinite; }
.float-wave { animation: waveFloat 6s ease-in-out infinite; }
.delay-2 { animation-delay: -2s; }

.testimonials-section { overflow: hidden; background:#fff; }
.testimonials-grid {
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:56px;
  align-items:center;
}
.testimonial-intro { padding-top:0; min-width:0; }
.testimonial-intro h2 { max-width:570px; line-height:1.08; }
.testimonial-intro > p { max-width:580px; margin-top:28px; }
.stats-row { display:flex; gap:52px; margin-top:40px; }
.stats-row > div { min-width:0; }
.stats-row strong { font-size:clamp(3.2rem,5.2vw,4.65rem); }

.testimonial-cards {
  position:relative;
  min-height:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-template-rows:auto auto;
  column-gap:24px;
  row-gap:22px;
  padding:18px 0 22px 44px;
  align-items:start;
}
.testimonial-dot-grid {
  position:absolute;
  left:0;
  top:8px;
  width:138px;
  height:132px;
  background-image:radial-gradient(rgba(148,163,184,.5) 3px, transparent 3px);
  background-size:20px 20px;
  opacity:.52;
  z-index:0;
  animation:decorativeFloat 7.2s ease-in-out infinite;
}
.testimonial-star-shape {
  position:absolute;
  left:31%;
  top:-6px;
  z-index:1;
  color:#f1c95c;
  font-size:2rem;
  line-height:1;
  animation:starFloat 5.8s ease-in-out infinite;
}
.quote-card {
  position:relative;
  inset:auto;
  width:100%;
  min-width:0;
  min-height:248px;
  padding:32px 28px 25px;
  border:1px solid #eceef3;
  border-radius:17px;
  background:#fff;
  box-shadow:0 10px 27px rgba(15,23,42,.06);
  z-index:2;
  transition:box-shadow .25s ease;
}
.quote-card:hover { box-shadow:0 17px 36px rgba(15,23,42,.1); }
.quote-card p { color:var(--muted); font-size:1rem; line-height:1.55; }
.quote-mark { left:15px; top:-1px; color:#edf0f5; font-size:4.9rem; }
.quote-a { grid-column:1; grid-row:1; margin-top:54px; }
.quote-b { grid-column:2; grid-row:1; margin-top:0; }
.quote-c { grid-column:1; grid-row:2; margin-top:0; }
.quote-d { grid-column:2; grid-row:2; margin-top:-34px; }
.person { margin-top:27px; }
.person strong { color:var(--ink); font-size:1rem; }
.person span { margin-top:2px; font-size:.9rem; }
.float-card.a { animation:cardFloatUp 6.5s ease-in-out infinite; }
.float-card.b { animation:cardFloatDown 7.1s ease-in-out infinite; }
.float-card.c { animation:cardFloatDown 6.8s ease-in-out infinite; }
.float-card.d { animation:cardFloatUp 7.4s ease-in-out infinite; }
.trusted-block { margin-top:80px; }

@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
@keyframes floatUpSmall { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes waveFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(5px,-9px)} }
@keyframes decorativeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes starFloat { 0%,100%{transform:translateY(0) scale(1);opacity:1} 50%{transform:translateY(-7px) scale(1.07);opacity:.78} }
@keyframes cardFloatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes cardFloatDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Laptop and tablet */
@media (max-width:1199.98px) {
  .about-collage {
    height:auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    max-width:900px;
  }
  .about-collage .collage-card {
    position:relative;
    inset:auto;
    width:100%;
    height:auto;
    aspect-ratio:4 / 3;
  }
  .about-collage .collage-shape,
  .about-collage .wave-pattern,
  .about-collage .about-dot-grid { display:none; }

  .testimonials-grid {
    grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
    gap:38px;
  }
  .testimonial-cards {
    column-gap:18px;
    row-gap:18px;
    padding-left:22px;
  }
  .quote-card { min-height:238px; padding:29px 24px 23px; }
  .quote-a { margin-top:38px; }
  .quote-d { margin-top:-22px; }
  .testimonial-dot-grid { width:112px; height:108px; }
}

/* Tablet */
@media (max-width:991.98px) {
  .testimonials-grid {
    grid-template-columns:minmax(0,1fr);
    gap:32px;
  }
  .testimonial-intro { max-width:760px; }
  .testimonial-cards {
    max-width:760px;
    width:100%;
    margin-inline:auto;
    padding:34px 0 8px 28px;
    column-gap:18px;
    row-gap:18px;
  }
  .quote-a,
  .quote-b,
  .quote-c,
  .quote-d { margin-top:0; }
  .testimonial-dot-grid { left:0; top:0; }
  .testimonial-star-shape { left:46%; top:2px; }
  .trusted-block { margin-top:60px; }
}

/* Mobile */
@media (max-width:767.98px) {
  .about-collage { grid-template-columns:minmax(0,1fr); gap:14px; }
  .about-collage .collage-card { aspect-ratio:16 / 10; }

  .stats-row {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }
  .stats-row > div { align-items:flex-start; flex-direction:column; gap:8px; }
  .testimonial-cards {
    grid-template-columns:minmax(0,1fr);
    padding:34px 0 0;
    gap:16px;
  }
  .quote-a,
  .quote-b,
  .quote-c,
  .quote-d { grid-column:1; grid-row:auto; margin:0; }
  .quote-card { min-height:0; padding:29px 23px 23px; }
  .testimonial-dot-grid { width:104px; height:86px; opacity:.42; }
  .testimonial-star-shape { left:auto; right:12%; top:0; font-size:1.65rem; }
  .float-card.a,
  .float-card.b,
  .float-card.c,
  .float-card.d { animation-duration:8s; }
  .trusted-block { margin-top:50px; }
}

@media (max-width:520px) {
  .stats-row { grid-template-columns:minmax(0,1fr); }
  .stats-row > div { flex-direction:row; align-items:center; }
  .testimonial-cards { padding-top:28px; }
}

@media (prefers-reduced-motion:reduce) {
  .float-slow,.float-medium,.float-fast,.float-wave,
  .float-card.a,.float-card.b,.float-card.c,.float-card.d,
  .about-dot-grid,.testimonial-dot-grid,.testimonial-star-shape {
    animation:none !important;
  }
}

/* ===== Bulkit For Brands content page ===== */
.bulkit-brands-page {
  --blue: #00A5DF;
  --coral: #F93822;
  --ink: #0C0C0C;
  --muted: #676767;
  --soft: #F7F7F7;
  --line: #E5E7EB;
}
.bulkit-brand { gap: 10px; color: var(--ink); font-weight: 800; letter-spacing: -.03em; }
.bulkit-logo-mark { display:grid; place-items:center; width:38px; height:38px; border-radius:10px; color:#fff; background:linear-gradient(135deg,var(--blue),#087ba5); font-size:1.05rem; font-weight:800; box-shadow:0 8px 18px rgba(0,165,223,.22); }
.brands-hero .hero-copy h1 { max-width: 760px; }
.brands-hero .hero-copy > p { max-width: 700px; }
.hero-subcopy { margin-top: 14px !important; font-size: 1.02rem !important; }
.catalogue-visual { position:relative; min-height:520px; display:grid; place-items:center; }
.catalogue-screen { position:relative; z-index:2; width:min(100%,560px); padding:20px; border:1px solid var(--line); border-radius:26px; background:#fff; box-shadow:0 28px 70px rgba(12,12,12,.12); transform:rotate(-2deg); }
.screen-top { display:flex; gap:7px; margin-bottom:28px; }
.screen-top span { width:10px; height:10px; border-radius:50%; background:#d8dde4; }
.screen-top span:first-child { background:var(--coral); }
.screen-top span:nth-child(2) { background:#f2c94c; }
.screen-top span:nth-child(3) { background:#22C55E; }
.screen-title { margin-bottom:22px; color:var(--ink); font-size:clamp(1.35rem,3vw,2.4rem); font-weight:800; letter-spacing:-.04em; }
.catalogue-products { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.product-tile { min-height:120px; padding:18px; border-radius:16px; background:var(--soft); }
.product-tile span { display:block; width:52px; height:52px; margin-bottom:15px; border-radius:14px; background:linear-gradient(135deg,var(--blue),#b9e9f7); }
.product-tile:nth-child(2) span { background:linear-gradient(135deg,var(--coral),#ffb2a8); }
.product-tile:nth-child(3) span { background:linear-gradient(135deg,#22C55E,#a8efc1); }
.product-tile:nth-child(4) span { background:linear-gradient(135deg,#0C0C0C,#7d7d7d); }
.catalogue-orbit { position:absolute; z-index:3; display:grid; place-items:center; width:76px; height:76px; border-radius:50%; color:#fff; background:var(--coral); font-size:.85rem; font-weight:800; box-shadow:0 15px 35px rgba(249,56,34,.22); animation:floatYSlow 6s ease-in-out infinite; }
.orbit-one { left:1%; top:16%; }
.orbit-two { right:2%; top:26%; background:var(--blue); animation-delay:-1.8s; }
.orbit-three { left:13%; bottom:6%; background:var(--ink); animation-delay:-3.1s; }
.brand-benefit-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.brand-benefit-grid .service-card { grid-template-columns:76px 1fr; min-height:220px; }
.benefit-number { display:grid; place-items:center; width:64px; height:64px; border-radius:18px; color:var(--blue); background:rgba(0,165,223,.1); font-weight:800; }
.stage-section { background:#fff; }
.stage-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; margin-top:56px; }
.stage-card { padding:48px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); }
.stage-card:nth-child(2) { background:var(--ink); color:#fff; }
.stage-label { display:inline-flex; padding:8px 13px; border-radius:999px; color:var(--blue); background:rgba(0,165,223,.1); font-size:.8rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.stage-card:nth-child(2) .stage-label { color:#fff; background:rgba(255,255,255,.12); }
.stage-card h3 { margin:24px 0; font-size:clamp(1.45rem,2.4vw,2rem); }
.brand-list { display:grid; gap:14px; padding:0; list-style:none; }
.brand-list li { position:relative; padding-left:28px; color:var(--muted); font-weight: 600; }
.stage-card:nth-child(2) .brand-list li { color:#d8d8d8; }
.brand-list li::before { content:'✓'; position:absolute; left:0; color:var(--blue); font-weight:800; }
.catalogue-section { background:linear-gradient(180deg,#fff,var(--soft)); }
.catalogue-grid { display:grid; grid-template-columns:.9fr 1.1fr; align-items:center; gap:80px; }
.catalogue-copy h2 { margin-top:28px; }
.catalogue-copy p { margin-top:24px; font-size:1.08rem; }
.catalogue-copy strong { display:inline-block; margin-top:26px; color:var(--coral); font-size:1.1rem; }
.catalogue-art { position:relative; min-height:520px; }
.master-card { position:absolute; border:1px solid var(--line); background:#fff; box-shadow:0 24px 55px rgba(12,12,12,.09); }
.main-card { z-index:2; left:15%; top:68px; width:70%; padding:44px; border-radius:24px; transform:rotate(-3deg); }
.master-kicker { color:var(--blue); font-size:.8rem; font-weight:800; letter-spacing:.12em; }
.main-card h3 { margin:18px 0 14px; font-size:clamp(1.8rem,3vw,2.7rem); }
.master-lines { display:grid; gap:11px; margin-top:30px; }
.master-lines span { height:10px; border-radius:10px; background:#e9edf1; }
.master-lines span:nth-child(2) { width:82%; }
.master-lines span:nth-child(3) { width:58%; }
.small-card { z-index:3; display:grid; place-items:center; width:140px; height:90px; border-radius:18px; color:var(--ink); font-weight:800; animation:floatYMedium 6s ease-in-out infinite; }
.card-retail { right:2%; top:28px; }
.card-distributor { left:0; bottom:60px; animation-delay:-2s; }
.card-consumer { right:5%; bottom:18px; animation-delay:-3.2s; }
.catalogue-dots { position:absolute; left:4%; top:18%; width:130px; height:130px; background-image:radial-gradient(rgba(0,165,223,.45) 3px,transparent 3px); background-size:18px 18px; }
.journey-section { background:var(--ink); color:#fff; }
.journey-section .eyebrow { color:#fff; background:rgba(255,255,255,.1); }
.journey-flow { display:flex; align-items:stretch; justify-content:center; gap:14px; margin-top:54px; }
.journey-flow > i { align-self:center; color:var(--blue); font-style:normal; font-size:1.6rem; }
.journey-step { display:flex; flex-direction:column; justify-content:center; min-width:150px; min-height:95px; padding:20px; border:1px solid rgba(255,255,255,.14); border-radius:16px; background:rgba(255,255,255,.05); text-align:center; }
.journey-step span { color:var(--blue); font-size:.8rem; font-weight:800; }
.journey-step strong { margin-top:12px; font-size:.95rem; line-height:1.35; }
.why-sell-section .why-copy p + p { margin-top:16px; }
.growth-section { background:linear-gradient(180deg,var(--soft),#fff); }
.growth-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:18px; margin-top:56px; }
.growth-item { min-height:160px; padding:24px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow-sm); transition:.28s ease; }
.growth-item:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.growth-item span { color:var(--blue); font-size:.8rem; font-weight:800; }
.growth-item strong { display:block; margin-top:34px; line-height:1.35; }
.why-bulkit-section .testimonial-intro p + p { margin-top:14px; }
.benefit-cards .quote-card { min-height:210px; }
.benefit-cards .quote-card h3 { margin:12px 0 12px; font-size:1.35rem; }
.quote-icon { color:var(--blue); font-weight:800; }
.faq-section { background:#fff; }
.faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:70px; align-items:start; }
.faq-heading h2 { margin-top:28px; }
.faq-heading p { margin-top:22px; font-size:1.08rem; }
.faq-list { display:grid; gap:14px; }
.faq-list details { border:1px solid var(--line); border-radius:14px; background:#fff; overflow:hidden; }
.faq-list summary { position:relative; padding:22px 54px 22px 24px; cursor:pointer; color:var(--ink); font-weight:700; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:24px; top:50%; transform:translateY(-50%); color:var(--blue); font-size:1.5rem; }
.faq-list details[open] summary::after { content:'–'; }
.faq-list details p { padding:0 24px 24px; }
.brand-cta-section { background:linear-gradient(180deg,#fff,var(--soft)); }
.brand-cta-section .contact-details { min-height:0; }
.brand-cta-section .contact-details > p { max-width:560px; margin-top:24px; font-size:1.08rem; }
.cta-points { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.cta-points span { padding:10px 14px; border-radius:999px; color:var(--blue); background:rgba(0,165,223,.1); font-weight:700; font-size:.9rem; }

@media (max-width:1199.98px) {
  .brand-benefit-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .growth-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .journey-flow { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); }
  .journey-flow > i { display:none; }
}
@media (max-width:991.98px) {
  .catalogue-visual { min-height:430px; }
  .stage-grid, .catalogue-grid, .faq-grid { grid-template-columns:1fr; }
  .catalogue-grid { gap:38px; }
  .catalogue-art { min-height:480px; }
  .growth-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:767.98px) {
  .brands-hero .hero-copy h1 { font-size:clamp(2.2rem,11vw,3.6rem); }
  .catalogue-visual { min-height:360px; }
  .catalogue-screen { padding:14px; border-radius:18px; }
  .catalogue-products { gap:8px; }
  .product-tile { min-height:95px; padding:12px; }
  .catalogue-orbit { width:58px; height:58px; font-size:.68rem; }
  .brand-benefit-grid { grid-template-columns:1fr; }
  .brand-benefit-grid .service-card { grid-template-columns:58px 1fr; min-height:0; }
  .benefit-number { width:50px; height:50px; border-radius:14px; }
  .stage-card { padding:30px 24px; }
  .main-card { left:7%; width:86%; padding:30px 24px; }
  .small-card { width:112px; height:72px; font-size:.78rem; }
  .catalogue-art { min-height:420px; }
  .journey-flow, .growth-grid { grid-template-columns:1fr; }
  .journey-step { min-height:95px; }
  .growth-item { min-height:120px; }
  .growth-item strong { margin-top:20px; }
  .faq-grid { gap:36px; }
  .form-row { grid-template-columns:1fr; }
}

/* ===== Bulkit logo and connected page navigation ===== */
.bulkit-logo-image {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 7px 18px rgba(12,12,12,.16);
}
.footer-brand .bulkit-logo-image { width: 44px; height: 44px; }
.desktop-nav .page-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .22s ease;
}
.desktop-nav .page-nav:hover,
.desktop-nav .page-nav.active { color: var(--ink); }
.desktop-nav .page-nav.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg,var(--coral),var(--blue));
}

/* ===== Growth overview page ===== */
.solutions-hero .hero-grid { align-items: center; }
.solutions-hero .hero-copy h1 { max-width: 780px; }
.vector-hero { width: 100%; height: auto; max-height: 590px; object-fit: contain; }
.growth-pillars-section { background: linear-gradient(180deg,#fff,var(--soft)); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 26px;
  margin-top: 58px;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pillar-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 13/9;
  object-fit: contain;
  border-radius: 16px;
}
.pillar-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,165,223,.09);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.pillar-card h3 { margin-top: 18px; font-size: clamp(1.35rem,2vw,1.8rem); line-height: 1.2; }
.pillar-card > p { margin-top: 16px; }
.mini-solutions { display: grid; gap: 10px; margin-top: 24px; }
.mini-solutions a {
  display: block;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  transition: border-color .22s ease, transform .22s ease;
}
.mini-solutions a:hover { border-color: var(--blue); transform: translateX(4px); }
.mini-solutions strong,
.mini-solutions span { display: block; }
.mini-solutions strong { color: var(--ink); font-size: .98rem; }
.mini-solutions span { margin-top: 5px; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.split-content-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  align-items: center;
  gap: 72px;
}
.split-vector img { display: block; width: 100%; height: auto; max-height: 610px; object-fit: contain; }
.split-copy h2 { margin-top: 26px; }
.split-copy p { margin-top: 20px; font-size: 1.06rem; }
.split-copy .text-link { margin-top: 28px; }
.why-choose-growth { background: #fff; }
.compact-benefits { grid-template-columns: repeat(3,minmax(0,1fr)); }
.compact-benefits .service-card { min-height: 190px; }

/* ===== Individual growth solutions page ===== */
.solution-menu-section { background: radial-gradient(circle at 10% 12%, rgba(0,165,223,.14), transparent 31%),
    radial-gradient(circle at 90% 86%, rgba(249,56,34,.10), transparent 30%),
    linear-gradient(145deg, #FFFFFF 0%, #F7FBFD 52%, #FFFFFF 100%); }
.solution-nav-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
  margin-top: 54px;
}
.solution-nav-card {
  display: flex; 
  grid-template-columns: 92px 44px 1fr;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.solution-nav-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(0,165,223,.45); }
.solution-nav-card img { width: 92px; height: 72px; object-fit: contain; border-radius: 12px; }
.solution-nav-card span { color: var(--blue); font-size: 1.2rem; font-weight: 800; }
.solution-nav-card strong { min-width: 0; color: var(--ink); line-height: 1.3; }
.solution-detail-section { background: linear-gradient(180deg,#fff,var(--soft)); }
.solution-detail-section:nth-of-type(even) { background: #fff; }
.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: 72px;
  align-items: start;
}
.detail-reverse .solution-detail-visual { order: 2; }
.detail-reverse .solution-detail-copy { order: 1; }
.solution-detail-visual {
  position: sticky;
  top: 120px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(12,12,12,.08);
}
.solution-detail-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}
.solution-detail-copy h2 { margin-top: 24px; }
.solution-detail-copy > p { margin-top: 24px; font-size: 1.08rem; }
.solution-note {
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.solution-note strong { color: var(--ink); }
.solution-note p { margin-top: 7px; }
.detail-lists {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
  margin-top: 28px;
}
.detail-lists > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.detail-lists h3 { font-size: 1.12rem; }
.detail-lists ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.detail-lists li { position: relative; padding-left: 24px; color: var(--muted); line-height: 1.5; }
.detail-lists li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.why-choose-inline {
  margin-top: 24px;
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
}
.why-choose-inline p { margin-top: 8px; color: #d6d6d6; }
.continue-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 26px;
}
.continue-links b { width: 100%; color: var(--ink); }
.continue-links span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,165,223,.1);
  font-size: .84rem;
  font-weight: 700;
}

/* ===== Responsive fixes for all Bulkit pages ===== */
@media (max-width: 1240px) {
  .desktop-nav { gap: 22px; }
  .desktop-nav .page-nav,
  .desktop-nav .nav-link { font-size: .84rem; }
  .pillar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pillar-card:last-child { grid-column: 1 / -1; max-width: 650px; justify-self: center; }
  .solution-nav-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 1199.98px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .compact-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .compact-benefits article:last-child { grid-column: 1 / -1; }
  .split-content-grid,
  .solution-detail-grid { gap: 48px; }
}
@media (max-width: 991.98px) {
  .solutions-hero .hero-grid,
  .split-content-grid,
  .solution-detail-grid { grid-template-columns: 1fr; }
  .solutions-hero .hero-copy { max-width: 760px; }
  .solutions-hero .hero-visual { max-width: 680px; width: 100%; margin: 8px auto 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card:last-child { grid-column: auto; max-width: none; }
  .compact-benefits { grid-template-columns: 1fr; }
  .compact-benefits article:last-child { grid-column: auto; }
  .solution-detail-visual,
  .detail-reverse .solution-detail-visual,
  .detail-reverse .solution-detail-copy { position: static; order: initial; }
  .solution-detail-visual { max-width: 620px; width: 100%; margin: 0 auto; }
  .solution-detail-copy { max-width: 760px; }
}
@media (max-width: 767.98px) {
  .bulkit-brand > span { font-size: 1.05rem; }
  .bulkit-logo-image { width: 38px; height: 38px; flex-basis: 38px; }
  .solutions-hero .hero-copy h1 { font-size: clamp(2.25rem,11vw,3.7rem); }
  .vector-hero { max-height: 430px; }
  .pillar-card { padding: 18px; }
  .solution-nav-grid { grid-template-columns: 1fr; }
  .solution-nav-card { grid-template-columns: 76px 34px 1fr; padding: 14px; }
  .solution-nav-card img { width: 76px; height: 62px; }
  .detail-lists { grid-template-columns: 1fr; }
  .solution-note,
  .detail-lists > div,
  .why-choose-inline { padding: 18px; }
  .continue-links { align-items: flex-start; }
}
@media (max-width: 480px) {
  .solution-nav-card { grid-template-columns: 64px 1fr; }
  .solution-nav-card img { width: 64px; height: 54px; grid-row: span 2; }
  .solution-nav-card span { align-self: end; }
  .solution-nav-card strong { grid-column: 2; }
  .pillar-card h3 { font-size: 1.4rem; }
}

/* Journey section colour update: softer Bulkit palette */
.journey-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(0,165,223,.12), transparent 31%),
    radial-gradient(circle at 88% 78%, rgba(249,56,34,.08), transparent 30%),
    linear-gradient(135deg, #F7F7F7 0%, #FFFFFF 52%, #EEF8FC 100%);
}
.journey-section::before,
.journey-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.journey-section::before {
  width: 280px;
  height: 280px;
  left: -120px;
  top: -120px;
  border: 1px solid rgba(0,165,223,.18);
}
.journey-section::after {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  border: 1px solid rgba(249,56,34,.15);
}
.journey-section .container {
  position: relative;
  z-index: 1;
}
.journey-section .eyebrow {
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(12,12,12,.05);
}
.journey-flow {
  gap: 16px;
}
.journey-flow > i {
  color: var(--blue);
  font-size: 1.7rem;
}
.journey-step {
  position: relative;
  min-width: 150px;
  min-height: 65px;
  color: var(--ink);
  border: 1px solid #E5E7EB;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(12,12,12,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.journey-step::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--blue);
}
.journey-step:nth-of-type(even)::before {
  background: var(--red);
}
.journey-step:hover {
  transform: translateY(-6px);
  border-color: rgba(0,165,223,.35);
  box-shadow: 0 18px 38px rgba(12,12,12,.1);
}
.journey-step span {
  color: var(--blue);
}
.journey-step:nth-of-type(even) span {
  color: var(--red);
}
.journey-step strong {
  color: var(--ink);
}

@media (max-width: 767.98px) {
  .journey-section::before,
  .journey-section::after {
    display: none;
  }
  .journey-flow {
    gap: 14px;
  }
  .journey-step {
    min-height: 118px;
  }
}

/* Stage cards colour refinement: remove #0C0C0C panel background */
.stage-card:nth-child(2) {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-color: rgba(0,165,223,.24);
  background:
    radial-gradient(circle at 92% 12%, rgba(0,165,223,.15), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(249,56,34,.07), transparent 28%),
    linear-gradient(145deg, #FFFFFF 0%, #F5FBFD 55%, #EAF8FD 100%);
  box-shadow: 0 16px 38px rgba(12,12,12,.07);
}
.stage-card:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--blue), var(--coral));
}
.stage-card:nth-child(2) .stage-label {
  color: var(--blue);
  background: rgba(0,165,223,.1);
  border: 1px solid rgba(0,165,223,.12);
}
.stage-card:nth-child(2) h3 {
  color: var(--ink);
}
.stage-card:nth-child(2) .brand-list li {
  color: var(--muted);
}
.stage-card:nth-child(2) .brand-list li::before {
  color: var(--blue);
}
.stage-card:nth-child(2):hover {
  border-color: rgba(0,165,223,.38);
  box-shadow: 0 20px 44px rgba(12,12,12,.1);
}

@media (max-width: 767.98px) {
  .stage-card:nth-child(2)::before {
    top: 24px;
    bottom: 24px;
  }
}



/* ---------------------------------------------------------
   PAGE 1: FOR BRANDS — modular catalogue card language
   --------------------------------------------------------- */
.for-brands-page .brand-benefit-grid {
  gap: 22px;
  margin-top: 38px;
}

.for-brands-page .brand-benefit-grid .service-card {
  position: relative;
  grid-template-columns: 64px minmax(0,1fr);
  min-height: 126px;
  padding: 30px;
  border-radius: var(--card-radius);
  overflow: hidden;
   align-items: center !important;

}

.for-brands-page .brand-benefit-grid .service-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -38px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(0,165,223,.07);
  transition: transform .35s ease, background .35s ease;
}

.for-brands-page .brand-benefit-grid .service-card:nth-child(even)::after {
  background: rgba(249,56,34,.07);
}

.for-brands-page .brand-benefit-grid .service-card:hover::after {
  transform: scale(1.35);
}

.for-brands-page .benefit-number {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0,165,223,.18);
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(0,165,223,.13), rgba(0,165,223,.035));
  font-size: 14px;
  font-weight: 800;
}

.for-brands-page .brand-benefit-grid .service-card:nth-child(even) .benefit-number {
  color: var(--red);
  border-color: rgba(249,56,34,.18);
  background: linear-gradient(145deg, rgba(249,56,34,.12), rgba(249,56,34,.025));
}

.for-brands-page .brand-benefit-grid h3 {
  margin-bottom: 0px;
  font-size: 21px;
}

.for-brands-page .stage-grid {
  gap: 24px;
  margin-top: 36px;
}

.for-brands-page .stage-card {
  position: relative;
  padding: 38px;
  border-radius: 22px;
  overflow: hidden;
}

.for-brands-page .stage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 4px;
  border-radius: 0 8px 8px 0;
  background: var(--blue);
}

.for-brands-page .stage-card:nth-child(2)::before {
  background: var(--red);
}

.for-brands-page .stage-card h3 {
  margin: 0;
  font-size: clamp(1.55rem,2.4vw,2rem);
}

.for-brands-page .stage-card > p {
  margin-top: 10px;
  color: var(--subtitle-color);
  font-size: 17px;
  font-weight: 600;
}

.for-brands-page .brand-list {
  margin-top: 24px;
}

.for-brands-page .growth-grid {
  gap: 16px;
  margin-top: 38px;
}

.for-brands-page .growth-item {
  position: relative;
  min-height: 142px;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.for-brands-page .growth-item::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 58px;
  height: 58px;
  border: 10px solid rgba(0,165,223,.08);
  border-radius: 50%;
}

.for-brands-page .growth-item:nth-child(even)::after {
  border-color: rgba(249,56,34,.08);
}

.for-brands-page .growth-item span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.for-brands-page .growth-item:nth-child(even) span { color: var(--red); }

.for-brands-page .growth-item strong {
  margin-top: 24px;
  color: var(--title-color);
  font-size: 17px;
  font-weight: 700;
}

.for-brands-page .benefit-cards .quote-card {
  min-height: 195px;
  padding: 28px;
  border-radius: 18px;
}

.for-brands-page .benefit-cards .quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue);
  background: rgba(0,165,223,.1);
  font-size: 12px;
  font-weight: 800;
}

.for-brands-page .benefit-cards .quote-card:nth-of-type(even) .quote-icon {
  color: var(--red);
  background: rgba(249,56,34,.09);
}

.for-brands-page .faq-list details {
  border-radius: 14px;
  box-shadow: none;
}

.for-brands-page .faq-list details:hover {
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   PAGE 2: GROWTH OVERVIEW — editorial / media cards
   --------------------------------------------------------- */
.growth-overview-page .journey-flow {
  margin-top: 38px;
}

.growth-overview-page .journey-step {
  position: relative;
  min-height: 132px;
  padding: 22px 18px;
  border-radius: 18px;
  overflow: hidden;
}

.growth-overview-page .journey-step::before {
  height: 4px;
  left: 16px;
  right: 16px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.growth-overview-page .journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

.growth-overview-page .journey-step:nth-of-type(even) span { background: var(--red); }

.growth-overview-page .journey-step strong {
  margin-top: 15px;
  color: var(--title-color);
  font-size: 15px;
  font-weight: 700;
}

.growth-overview-page .pillar-grid {
  gap: 24px;
  margin-top: 38px;
}

.growth-overview-page .pillar-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  overflow: hidden;
}

.growth-overview-page .pillar-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--blue);
}

.growth-overview-page .pillar-card:nth-child(2)::before { background: var(--red); }
.growth-overview-page .pillar-card:nth-child(3)::before { background: linear-gradient(90deg,var(--blue),var(--red)); }

.growth-overview-page .pillar-card > img {
  aspect-ratio: 13/8;
  padding: 18px;
  background: linear-gradient(145deg,#F7F7F7,#EEF8FC);
}

.growth-overview-page .pillar-label {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 800;
}

.growth-overview-page .pillar-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.growth-overview-page .pillar-card > p {
  margin-top: 12px;
}

.growth-overview-page .mini-solutions {
  gap: 9px;
  margin-top: 20px;
}

.growth-overview-page .mini-solutions a {
  position: relative;
  padding: 15px 16px 15px 20px;
  border-radius: 12px;
  box-shadow: none;
}

.growth-overview-page .mini-solutions a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 4px;
  background: var(--blue);
}

.growth-overview-page .mini-solutions a:nth-child(even)::before { background: var(--red); }

.growth-overview-page .mini-solutions a:hover {
  transform: translateX(5px);
}

.growth-overview-page .compact-benefits {
  gap: 22px;
  margin-top: 38px;
}

.growth-overview-page .compact-benefits .service-card {
  min-height: 170px;
  padding: 28px;
  border-radius: 18px;
}

/* ---------------------------------------------------------
   PAGE 3: INDIVIDUAL SOLUTIONS — technical / information cards
   --------------------------------------------------------- */
.individual-solutions-page .solution-nav-grid,
.growth-overview-page .solution-nav-grid {
  gap: 18px;
  margin-top: 38px;
}

.individual-solutions-page .solution-nav-card,
.growth-overview-page .solution-nav-card {
  position: relative;
  grid-template-columns: 82px 40px minmax(0,1fr);
  min-height: 116px;
  padding: 16px;
  border-radius: 18px;
  overflow: hidden;
}

.individual-solutions-page .solution-nav-card::after,
.growth-overview-page .solution-nav-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 11px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  opacity: .55;
  transition: transform .25s ease, opacity .25s ease;
}

.individual-solutions-page .solution-nav-card:nth-child(even)::after,
.growth-overview-page .solution-nav-card:nth-child(even)::after { color: var(--red); }

.individual-solutions-page .solution-nav-card:hover::after,
.growth-overview-page .solution-nav-card:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

.individual-solutions-page .solution-nav-card img,
.growth-overview-page .solution-nav-card img {
  width: 82px;
  height: 68px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(145deg,#F7F7F7,#EEF8FC);
}

.individual-solutions-page .solution-nav-card span,
.growth-overview-page .solution-nav-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(0,165,223,.1);
  font-size: 11px;
  font-weight: 800;
}

.individual-solutions-page .solution-nav-card:nth-child(even) span,
.growth-overview-page .solution-nav-card:nth-child(even) span {
  color: var(--red);
  background: rgba(249,56,34,.09);
}

.individual-solutions-page .solution-nav-card strong,
.growth-overview-page .solution-nav-card strong {
  padding-right: 24px;
  font-size: 16px;
  font-weight: 700;
}

/* Reset solution-menu-section cards on growth-overview page to match index.html base style */
.growth-overview-page .solution-menu-section .solution-nav-grid {
  gap: 20px;
  margin-top: 54px;
}
.growth-overview-page .solution-menu-section .solution-nav-card {
  display: flex;
  grid-template-columns: none;
  min-height: 0;
  padding: 18px;
  overflow: visible;
}
.growth-overview-page .solution-menu-section .solution-nav-card::after {
  content: none;
}
.growth-overview-page .solution-menu-section .solution-nav-card span {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
}
.growth-overview-page .solution-menu-section .solution-nav-card:nth-child(even) span {
  color: var(--blue);
  background: none;
}
.growth-overview-page .solution-menu-section .solution-nav-card strong {
  padding-right: 0;
  font-size: inherit;
}

.individual-solutions-page .solution-detail-section,
.growth-overview-page .solution-detail-section {
  background: #fff;
}

.individual-solutions-page .solution-detail-section:nth-of-type(even),
.growth-overview-page .solution-detail-section:nth-of-type(even) {
  background: linear-gradient(180deg,#F7F7F7,#fff);
}

.individual-solutions-page .solution-detail-copy > p,
.growth-overview-page .solution-detail-copy > p {
  margin-top: 18px;
  color: var(--body-color);
  font-size: 17px;
  line-height: 1.72;
}

.individual-solutions-page .solution-note,
.growth-overview-page .solution-note {
  position: relative;
  margin-top: 16px;
  padding: 20px 20px 20px 24px;
  border-left: 0;
  border-radius: 14px;
  
}

.individual-solutions-page .solution-note::before,
.growth-overview-page .solution-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: var(--blue);
}

.individual-solutions-page .solution-note:nth-of-type(even)::before,
.growth-overview-page .solution-note:nth-of-type(even)::before { background: var(--red); }

.individual-solutions-page .solution-note strong,
.growth-overview-page .solution-note strong {
  color: var(--title-color);
  font-size: 15px;
  font-weight: 700;
}

.individual-solutions-page .detail-lists,
.growth-overview-page .detail-lists {
  gap: 16px;
  margin-top: 20px;
}

.individual-solutions-page .detail-lists > div,
.growth-overview-page .detail-lists > div {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
}

.individual-solutions-page .detail-lists > div:first-child::after,
.growth-overview-page .detail-lists > div:first-child::after,
.individual-solutions-page .detail-lists > div:last-child::after,
.growth-overview-page .detail-lists > div:last-child::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,165,223,.07);
}

.individual-solutions-page .detail-lists > div:last-child::after,
.growth-overview-page .detail-lists > div:last-child::after {
  background: rgba(249,56,34,.065);
}

.individual-solutions-page .detail-lists h3,
.growth-overview-page .detail-lists h3 {
  font-size: 17px;
  font-weight: 700;
}

/* Remove the old dark card treatment */
body.theme-fancy .why-choose-inline {
  position: relative;
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(0,165,223,.18);
  border-radius: 16px;
  color: var(--title-color);
  background: linear-gradient(135deg, rgba(0,165,223,.08), rgba(249,56,34,.045));
  box-shadow: 0 10px 24px rgba(12,12,12,.05);
}

body.theme-fancy .why-choose-inline strong {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 700;
}

body.theme-fancy .why-choose-inline p {
  margin-top: 7px;
  color: var(--body-color);
}

body.theme-fancy .contact-card {
  border-radius: 20px;
}

body.theme-fancy .contact-card:hover {
  transform: translateY(-4px);
}

/* Keep grids closer to the 60px section rhythm */
body.theme-fancy :is(
  .service-grid,
  .pillar-grid,
  .solution-nav-grid,
  .stage-grid,
  .growth-grid,
  .journey-flow
) {
  margin-top: 38px;
}

/* Responsive card refinements */
@media (max-width: 1199.98px) {
  body.theme-fancy .section,
  body.theme-fancy section.section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .for-brands-page .brand-benefit-grid .service-card {
    min-height: 126px;
  }
}

@media (max-width: 991.98px) {
  body.theme-fancy .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .for-brands-page .brand-benefit-grid,
  .growth-overview-page .pillar-grid,
  .individual-solutions-page .solution-nav-grid,
  .growth-overview-page .solution-nav-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 767.98px) {
  body.theme-fancy .section,
  body.theme-fancy section.section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  body.theme-fancy h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  body.theme-fancy h2 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  body.theme-fancy .section-heading > p:first-of-type:not(:only-of-type) {
    font-size: 17px;
  }

  body.theme-fancy .section-heading > p:only-of-type,
  body.theme-fancy .hero-copy .hero-subcopy,
  .individual-solutions-page .solution-detail-copy > p,
  .growth-overview-page .solution-detail-copy > p {
    font-size: 15px !important;
  }

  .for-brands-page .brand-benefit-grid,
  .growth-overview-page .pillar-grid,
  .individual-solutions-page .solution-nav-grid,
  .growth-overview-page .solution-nav-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .for-brands-page .brand-benefit-grid .service-card {
    grid-template-columns: 54px minmax(0,1fr);
    min-height: 0;
    padding: 24px 20px;
    text-align: left;
  }

  .for-brands-page .benefit-number {
    width: 48px;
    height: 48px;
  }

  .for-brands-page .stage-card {
    padding: 30px 24px;
  }

  .growth-overview-page .journey-step {
    min-height: 112px;
  }

  .individual-solutions-page .solution-nav-card,
  .growth-overview-page .solution-nav-card {
    grid-template-columns: 70px 34px minmax(0,1fr);
    min-height: 104px;
  }

  .individual-solutions-page .solution-nav-card img,
  .growth-overview-page .solution-nav-card img {
    width: 70px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .individual-solutions-page .solution-nav-card,
  .growth-overview-page .solution-nav-card {
    grid-template-columns: 58px minmax(0,1fr);
  }

  .individual-solutions-page .solution-nav-card img,
  .growth-overview-page .solution-nav-card img {
    width: 58px;
    height: 52px;
    grid-row: span 2;
  }

  .individual-solutions-page .solution-nav-card span,
  .growth-overview-page .solution-nav-card span {
    display: none;
  }

  .individual-solutions-page .solution-nav-card strong,
  .growth-overview-page .solution-nav-card strong {
    grid-column: 2;
  }
}

/* ===== Functional SMTP contact forms ===== */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.contact-form .is-loading::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpinner .7s linear infinite;
}
@keyframes formSpinner { to { transform: rotate(360deg); } }

/* ---------------------------------------------------------
   FOR BRANDS HOME PAGE — upgraded card system + hover states
   --------------------------------------------------------- */
.for-brands-page .brand-benefit-grid {
  gap: 28px;
  margin-top: 44px;
}

.for-brands-page .brand-benefit-grid .service-card,
.for-brands-page .stage-card,
.for-brands-page .growth-item {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,253,0.98)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.20), rgba(249,56,34,.15)) border-box;
  box-shadow: 0 14px 38px rgba(12, 12, 12, .06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.for-brands-page .brand-benefit-grid .service-card::before,
.for-brands-page .stage-card::after,
.for-brands-page .growth-item::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(0,165,223,.09), rgba(249,56,34,.08));
  opacity: 0;
  transition: height .35s ease, opacity .35s ease;
  pointer-events: none;
}

.for-brands-page .brand-benefit-grid .service-card::after,
.for-brands-page .stage-card .hover-orb,
.for-brands-page .growth-item::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,165,223,.14) 0%, rgba(0,165,223,0) 72%);
  transform: scale(.8);
  opacity: .55;
  transition: transform .35s ease, opacity .35s ease, background .35s ease;
  pointer-events: none;
}

.for-brands-page .brand-benefit-grid .service-card:nth-child(even)::after,
.for-brands-page .growth-item:nth-child(even)::after {
  background: radial-gradient(circle, rgba(249,56,34,.14) 0%, rgba(249,56,34,0) 72%);
}

.for-brands-page .brand-benefit-grid .service-card:hover,
.for-brands-page .stage-card:hover,
.for-brands-page .growth-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(12, 12, 12, .11);
}

.for-brands-page .brand-benefit-grid .service-card:hover::before,
.for-brands-page .stage-card:hover::after,
.for-brands-page .growth-item:hover::before {
  height: 100%;
  opacity: 1;
}

.for-brands-page .brand-benefit-grid .service-card:hover::after,
.for-brands-page .stage-card:hover .hover-orb,
.for-brands-page .growth-item:hover::after {
  transform: scale(1.12);
  opacity: .9;
}

.for-brands-page .brand-benefit-grid .service-card {
  grid-template-columns: 72px minmax(0,1fr);
  min-height: 126px;
  padding: 22px 23px;
  border-radius: 22px;
}

.for-brands-page .brand-benefit-grid .service-card .benefit-number {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(0,165,223,.16);
  background: linear-gradient(180deg, rgba(0,165,223,.13), rgba(0,165,223,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  transition: transform .3s ease, box-shadow .3s ease;
}

.for-brands-page .brand-benefit-grid .service-card:nth-child(even) .benefit-number {
  border-color: rgba(249,56,34,.16);
  background: linear-gradient(180deg, rgba(249,56,34,.12), rgba(249,56,34,.04));
}

.for-brands-page .brand-benefit-grid .service-card:hover .benefit-number {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0,165,223,.12);
}

.for-brands-page .brand-benefit-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.18;
}

.for-brands-page .brand-benefit-grid p {
  max-width: 28ch;
  color: #5f646c;
  font-size: 1.02rem;
  line-height: 1.62;
}

.for-brands-page .stage-grid {
  gap: 30px;
  margin-top: 44px;
}

.for-brands-page .stage-card {
  padding: 44px 46px;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(12, 12, 12, .06);
}

.for-brands-page .stage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 5px;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, var(--blue), #66d0f3);
}

.for-brands-page .stage-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(247,252,255,.98), rgba(236,246,252,.98)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.28), rgba(249,56,34,.18)) border-box;
}

.for-brands-page .stage-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--red), #ff846f);
}

.for-brands-page .stage-card h3 {
  margin: 4px 0 14px;
  font-size: clamp(2rem, 3vw, 2.45rem);
  letter-spacing: -.04em;
}

.for-brands-page .stage-card > p {
  margin-top: 0;
  margin-bottom: 24px;
  color: #646b73;
  font-size: 1.08rem;
  font-weight: 500;
}

.for-brands-page .brand-list {
  margin-top: 0;
  display: grid;
  gap: 14px;
}

.for-brands-page .brand-list li {
  padding-left: 28px;
  color: #5f646c;
  font-size: 1.06rem;
  font-weight: 600;
}

.for-brands-page .brand-list li::before {
  top: 1px;
  color: var(--blue);
  font-size: 18px;
}

.for-brands-page .growth-grid {
  gap: 20px;
  margin-top: 44px;
}

.for-brands-page .growth-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 24px 24px 26px;
  border-radius: 20px;
}

.for-brands-page .growth-item::before {
  inset: auto 0 0 0;
  height: 0;
}

.for-brands-page .growth-item::after {
  right: -16px;
  top: -16px;
  width: 74px;
  height: 74px;
  border: none;
}

.for-brands-page .growth-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0,165,223,.11);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.for-brands-page .growth-item:nth-child(even) span {
  color: var(--red);
  background: rgba(249,56,34,.10);
}

.for-brands-page .growth-item:hover span {
  transform: scale(1.08);
}

.for-brands-page .growth-item strong {
  display: block;
  margin-top: 24px;
  font-size: 1.18rem;
  line-height: 1.33;
}

.for-brands-page .growth-item:hover strong,
.for-brands-page .brand-benefit-grid .service-card:hover h3,
.for-brands-page .stage-card:hover h3 {
  color: var(--ink);
}

.for-brands-page .growth-item::marker { display:none; }

/* fine-tune home page responsiveness */
@media (max-width: 1199.98px) {
  .for-brands-page .growth-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .for-brands-page .brand-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .for-brands-page .brand-benefit-grid .service-card {
    min-height: 126px;
  }

  .for-brands-page .stage-card {
    padding: 34px 30px;
  }

  .for-brands-page .stage-card h3 {
    font-size: clamp(1.7rem, 5vw, 2.1rem);
  }

  .for-brands-page .growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .for-brands-page .brand-benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .for-brands-page .brand-benefit-grid .service-card {
    grid-template-columns: 58px 1fr;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .for-brands-page .brand-benefit-grid .service-card h3 {
    font-size: 1.45rem;
  }

  .for-brands-page .brand-benefit-grid .service-card p {
    font-size: .98rem;
    max-width: none;
  }

  .for-brands-page .stage-grid,
  .for-brands-page .growth-grid {
    grid-template-columns: 1fr;
  }

  .for-brands-page .stage-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .for-brands-page .stage-card::before {
    top: 22px;
    bottom: 22px;
  }

  .for-brands-page .stage-card h3 {
    font-size: 1.9rem;
  }

  .for-brands-page .stage-card > p {
    font-size: 1rem;
  }

  .for-brands-page .brand-list li {
    font-size: 1rem;
  }

  .for-brands-page .growth-item {
    min-height: 132px;
    padding: 20px;
    border-radius: 18px;
  }

  .for-brands-page .growth-item strong {
    margin-top: 18px;
    font-size: 1.05rem;
  }
}


.bulkit-onboarding-section {
  background: #f8fbff;
}

.bulkit-onboarding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.bulkit-onboarding-card,
.journey-side-card {
  background: #ffffff;
  border: 1px solid #e5ecf5;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(11, 31, 70, 0.08);
}

.bulkit-onboarding-card {
  padding: 34px;
}

.onboarding-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.onboarding-top h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  color: #061b49;
  font-weight: 800;
}

.onboarding-top p {
  margin: 0;
  color: #536078;
  max-width: 560px;
}

.step-badge {
  height: fit-content;
  padding: 9px 14px;
  border-radius: 12px;
  background: #eef4ff;
  color: #1f63e9;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.question-block {
  padding: 22px 0;
  /*border-bottom: 1px solid #edf1f7;*/
}

.question-block h4 {
  margin: 0 0 7px;
  color: #061b49;
  font-size: 16px;
}

.question-block p {
  margin: 0 0 16px;
  color: #667085;
}

.journey-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.journey-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  min-height: 330px;
  border: 2px solid #e4e8ef;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.25s ease;
  background: #fff;
}

.journey-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.journey-choice.active {
  border-color: #2563eb;
  background: #f8fbff;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.12);
}

.radio-dot {
  width: 22px;
  height: 22px;
  border: 2px solid #cfd8e6;
  border-radius: 50%;
}

.journey-choice.active .radio-dot {
  border: 7px solid #2563eb;
}

.choice-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #ecf4ff;
  display: grid;
  place-items: center;
  font-size: 32px;
}

.choice-icon.red {
  background: #fff0f0;
}

.journey-choice strong {
  font-size: 24px;
  line-height: 1.1;
  color: #061b49;
}

.journey-choice small {
  color: #667085;
  line-height: 1.5;
}

.journey-choice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-choice li {
  margin-bottom: 8px;
  color: #26344d;
  font-size: 14px;
}

.journey-choice li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.journey-choice:nth-child(2) li::before {
  background: #ef4444;
}

.journey-choice em {
  margin-top: auto;
  padding: 14px;
  border-radius: 12px;
  background: #eef4ff;
  color: #2563eb;
  text-align: center;
  font-style: normal;
  font-weight: 700;
}

.red-text {
  background: #fff0f0 !important;
  color: #ef4444 !important;
}

.radio-line {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.radio-line label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #26344d;
  cursor: pointer;
}

.radio-line input {
  width: 20px;
  height: 20px;
}

.bulkit-brand-form select,
.bulkit-brand-form input,
.bulkit-brand-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dfe6f1;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: #061b49;
}

.bulkit-brand-form textarea {
  resize: vertical;
}

.lead-fields {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #dce7f5;
  border-radius: 18px;
  background: #fbfdff;
}

.lead-fields h4 {
  margin: 0 0 18px;
  color: #061b49;
  font-size: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #061b49;
  font-weight: 700;
  font-size: 14px;
}

label.service-check {
    margin-bottom: 0px !important;
}
.field small {
  display: block;
  margin-top: 7px;
  color: #667085;
}

.portal-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: #ecfdf3;
  border: 1px solid #b7efce;
  color: #075e2c;
}

.portal-box strong {
  display: block;
  margin-bottom: 6px;
}

.portal-box p {
  margin: 0 0 8px;
}

.portal-box a {
  color: #05603a;
  font-weight: 700;
  word-break: break-word;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}

.form-actions .btn {
  min-width: 210px;
  justify-content: center;
}

.form-actions .btn span {
  font-size: 28px;
  line-height: 1;
}

.form-actions small {
  color: #667085;
  max-width: 330px;
}

.journey-side-card {
  padding: 30px;
  position: sticky;
  top: 110px;
}

.journey-side-card h3 {
  margin: 0 0 8px;
  color: #061b49;
  font-size: 24px;
}

.journey-side-card > p {
  margin: 0 0 24px;
  color: #667085;
}

.journey-steps {
  display: grid;
  gap: 18px;
}

.journey-steps div {
  display: grid;
  grid-template-columns: 34px 58px 1fr;
  column-gap: 14px;
  align-items: center;
}

.journey-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #058847;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.journey-steps i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e9f8ef;
  font-style: normal;
  font-size: 25px;
}

.journey-steps strong {
  color: #061b49;
  font-size: 15px;
}

.journey-steps small {
  grid-column: 3;
  color: #667085;
  font-size: 13px;
}

.verified-box {
  margin-top: 28px;
  padding: 18px;
  border-radius: 16px;
  background: #e9f8ef;
  color: #05603a;
  font-weight: 800;
}

@media (max-width: 991px) {
  .bulkit-onboarding-grid {
    grid-template-columns: 1fr;
  }

  .journey-side-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .bulkit-onboarding-card,
  .journey-side-card {
    padding: 22px;
    border-radius: 18px;
  }

  .onboarding-top {
    flex-direction: column;
  }

  .journey-choice-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .btn {
    width: 100%;
  }
}
/* =========================================================
   PREMIUM HOME HERO + DISTINCT CARD SYSTEM V7
   ========================================================= */
.for-brands-page .brands-hero {
  padding: 30px 0 30px;
  background:
    radial-gradient(circle at 9% 18%, rgba(0,165,223,.12), transparent 32%),
    radial-gradient(circle at 92% 72%, rgba(249,56,34,.09), transparent 31%),
    linear-gradient(145deg, #FFFFFF 0%, #F7FBFD 48%, #FFFFFF 100%);
}

.for-brands-page .brands-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  /*background: linear-gradient(90deg, var(--red), var(--blue), var(--red));*/
  background-size: 220% 100%;
  animation: heroAccentMove 8s linear infinite;
}

.for-brands-page .brands-hero .hero-grid {
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: clamp(48px, 6vw, 94px);
  align-items: center;
}

.for-brands-page .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(0,165,223,.18);
  border-radius: 999px;
  color: #414750;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(12,12,12,.05);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.for-brands-page .hero-kicker > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}

.for-brands-page .brands-hero .hero-copy h1 {
  margin-top: 26px;
  max-width: 760px;
  font-size: clamp(2.55rem, 4.25vw, 4.55rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.for-brands-page .brands-hero .hero-copy > p:not(.hero-subcopy) {
  max-width: 650px;
  margin-top: 28px;
  color: #373d45;
  font-size: clamp(1.16rem, 1.65vw, 1.4rem);
  font-weight: 550;
  line-height: 1.52;
}

.for-brands-page .brands-hero .hero-subcopy {
  max-width: 670px;
  margin-top: 14px !important;
  color: #686e76;
  font-size: 1rem !important;
  line-height: 1.68;
}

.for-brands-page .hero-proof {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.for-brands-page .hero-proof > div {
  position: relative;
  min-width: 0;
  padding: 16px 16px 15px;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 25px rgba(12,12,12,.045);
  backdrop-filter: blur(9px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.for-brands-page .hero-proof > div:hover {
  transform: translateY(-4px);
  border-color: rgba(0,165,223,.28);
  box-shadow: 0 15px 34px rgba(12,12,12,.08);
}

.for-brands-page .hero-proof strong,
.for-brands-page .hero-proof span {
  display: block;
}

.for-brands-page .hero-proof strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.15;
}

.for-brands-page .hero-proof span {
  margin-top: 5px;
  color: #747a81;
  font-size: .76rem;
  font-weight: 550;
  line-height: 1.4;
}

.for-brands-page .premium-catalogue-visual {
  min-height: 560px;
  isolation: isolate;
}

.for-brands-page .visual-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(4px);
  animation: visualGlowFloat 7s ease-in-out infinite;
}

.for-brands-page .visual-glow-blue {
  width: 310px;
  height: 310px;
  left: 5%;
  top: 8%;
  background: radial-gradient(circle, rgba(0,165,223,.20), transparent 68%);
}

.for-brands-page .visual-glow-red {
  width: 260px;
  height: 260px;
  right: 2%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(249,56,34,.14), transparent 68%);
  animation-delay: -2.5s;
}

.for-brands-page .catalogue-screen {
  width: min(100%, 580px);
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(247,250,252,.97)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.38), rgba(249,56,34,.25), rgba(0,165,223,.20)) border-box;
  box-shadow: 0 32px 85px rgba(12,12,12,.14);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg) rotate(-1deg);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease;
}

.for-brands-page .premium-catalogue-visual:hover .catalogue-screen {
  transform: perspective(1100px) rotateY(0) rotateX(0) rotate(0) translateY(-8px);
  box-shadow: 0 42px 95px rgba(12,12,12,.18);
}

.for-brands-page .catalogue-products {
  gap: 15px;
}

.for-brands-page .product-tile {
  position: relative;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  background: linear-gradient(145deg,#fff,#f4f7f9);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.for-brands-page .product-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(0,165,223,.25);
  box-shadow: 0 14px 26px rgba(12,12,12,.08);
}

.for-brands-page .catalogue-status {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 999px;
  color: #3d444c;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 32px rgba(12,12,12,.10);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  animation: statusFloat 5.8s ease-in-out infinite;
}

.for-brands-page .catalogue-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}

.for-brands-page .status-one { right: 2%; top: 14%; }
.for-brands-page .status-two { left: 4%; bottom: 12%; animation-delay: -2.1s; }

@keyframes heroAccentMove { to { background-position: 220% 0; } }
@keyframes visualGlowFloat { 50% { transform: translateY(-18px) scale(1.06); } }
@keyframes statusFloat { 50% { transform: translateY(-9px); } }

/* Home page section typography hierarchy */
.for-brands-page .section-heading h2 {
  /* max-width: 890px; */
  margin-inline: auto;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.for-brands-page .section-heading .section-subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  color: #3d434b;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 650;
  line-height: 1.5;
}

.for-brands-page .section-heading .section-subtitle ~ p {
  max-width: 900px;
  margin-top: 16px;
  color: #71767d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

/* Each home-page card family has a visibly different language */
.for-brands-page .brand-benefit-grid .service-card {
  align-items: flex-start;
  background:
    linear-gradient(155deg, rgba(255,255,255,.99), rgba(246,250,252,.98)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.22), rgba(229,231,235,.7), rgba(249,56,34,.18)) border-box;
  background-size: 100% 100%, 240% 240%;
  background-position: 0 0, 100% 0;
}

.for-brands-page .brand-benefit-grid .service-card:hover {
  background-position: 0 0, 0 100%;
}

.for-brands-page .brand-benefit-grid .service-card:nth-child(3n+2) {
  border-radius: 18px;
}

.for-brands-page .brand-benefit-grid .service-card:nth-child(3n) {
  border-radius: 18px;
}

.for-brands-page .stage-card {
  background:
    linear-gradient(165deg,#fff,#f9fbfc) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.25), rgba(249,56,34,.14)) border-box;
  background-size: 100% 100%, 220% 220%;
}

.for-brands-page .stage-card:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(0,165,223,.13), transparent 34%),
    linear-gradient(160deg,#fafdff,#edf8fd) padding-box,
    linear-gradient(135deg, rgba(249,56,34,.26), rgba(0,165,223,.35)) border-box;
}

.for-brands-page .growth-item {
  border-radius: 16px;
  background:
    linear-gradient(180deg,#fff,#fbfcfd) padding-box,
    linear-gradient(90deg, rgba(0,165,223,.18), rgba(229,231,235,.9), rgba(249,56,34,.16)) border-box;
  background-size: 100% 100%, 250% 100%;
  background-position: 0 0, 100% 0;
}

.for-brands-page .growth-item:hover {
  background-position: 0 0, 0 0;
}

.for-brands-page .benefit-cards .quote-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(229,231,235,.88);
  box-shadow: 0 16px 38px rgba(12,12,12,.06);
  backdrop-filter: blur(12px);
}

.for-brands-page .benefit-cards .quote-card:nth-of-type(even) {
  background: linear-gradient(145deg, rgba(247,252,255,.95), rgba(255,255,255,.92));
}

/* Advanced reusable hover layer injected by JS */
.premium-interactive-card {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
}

.premium-interactive-card > *:not(.card-hover-glow):not(.card-border-sweep) {
  position: relative;
  z-index: 2;
}

.card-hover-glow {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 180px at var(--glow-x,50%) var(--glow-y,50%), rgba(0,165,223,.14), rgba(249,56,34,.05) 42%, transparent 72%);
  transition: opacity .3s ease;
}

.card-border-sweep {
  position: absolute;
  z-index: 3;
  inset: -1px;
  padding: 1.5px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 18%, var(--blue) 38%, var(--red) 54%, transparent 76%);
  background-size: 260% 260%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .28s ease;
}

.premium-interactive-card:hover .card-hover-glow { opacity: 1; }
.premium-interactive-card:hover .card-border-sweep {
  opacity: 1;
  animation: borderSweep 1.7s linear infinite;
}

@keyframes borderSweep {
  from { background-position: 160% 50%; }
  to { background-position: -80% 50%; }
}

/* More distinctive page-2 / page-3 card families */
.growth-overview-page .pillar-card {
  border-radius: 26px;
  background: linear-gradient(155deg,#fff,#f7fafc);
}

.growth-overview-page .pillar-card:nth-child(2) {
  border-radius: 44px 20px 44px 20px;
}

.growth-overview-page .pillar-card:nth-child(3) {
  border-radius: 20px 44px 20px 44px;
}

.growth-overview-page .mini-solutions a {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg,#f8fafb,#fff);
}

.individual-solutions-page .solution-nav-card {
  border-radius: 20px;
  background: linear-gradient(145deg,#fff,#f6fafc);
}

.individual-solutions-page .detail-lists > div:nth-child(1) {
  border-top: 4px solid var(--blue);
}

.individual-solutions-page .detail-lists > div:nth-child(2) {
  border-top: 4px solid var(--red);
}

.individual-solutions-page .solution-note {
  border-left-width: 0;
  border-top: 3px solid var(--blue);
  border-radius: 16px;
}

.individual-solutions-page .solution-note + .solution-note {
  border-top-color: var(--red);
}

@media (max-width: 1199.98px) {
  .for-brands-page .brands-hero .hero-grid {
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 36px;
  }

  .for-brands-page .brands-hero .hero-copy h1 {
    font-size: clamp(2.55rem, 4.25vw, 4.55rem);
  }
}

@media (max-width: 991.98px) {
  .for-brands-page .brands-hero {
    padding: 60px 0 60px;
  }

  .for-brands-page .brands-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .for-brands-page .brands-hero .hero-copy {
    text-align: center;
  }

  .for-brands-page .hero-kicker,
  .for-brands-page .hero-proof {
    margin-inline: auto;
  }

  .for-brands-page .premium-catalogue-visual {
    min-height: 480px;
  }

  .for-brands-page .status-one { right: 6%; }
  .for-brands-page .status-two { left: 7%; }
}

@media (max-width: 767.98px) {
  .for-brands-page .brands-hero {
    padding: 30px 0 30px;
  }

  .for-brands-page .hero-kicker {
    justify-content: center;
    font-size: 10px;
  }

  .for-brands-page .brands-hero .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .for-brands-page .hero-proof {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .for-brands-page .hero-proof > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    text-align: left;
  }

  .for-brands-page .hero-proof span { margin-top: 0; }

  .for-brands-page .premium-catalogue-visual {
    min-height: 390px;
  }

  .for-brands-page .catalogue-screen {
    padding: 15px;
    border-radius: 20px;
    transform: none;
  }

  .for-brands-page .catalogue-status {
    display: none;
  }

  .for-brands-page .section-heading h2 {
    font-size:clamp(2rem, 3.4vw, 3.4rem);
  }

  .for-brands-page .brand-benefit-grid .service-card:nth-child(n) {
    border-radius: 18px;
  }

  .card-border-sweep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .for-brands-page .brands-hero::before,
  .for-brands-page .visual-glow,
  .for-brands-page .catalogue-status,
  .premium-interactive-card:hover .card-border-sweep {
    animation: none !important;
  }
}

/* =========================================================
   FINAL MOBILE RESPONSIVE + NAVIGATION FIX
   Keep this block at the very end of style_4.css so it wins
   over the older overlapping responsive declarations above.
   ========================================================= */

/* Header and logo baseline */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  min-height: var(--header-h);
  overflow: visible;
}

.header-inner {
  position: relative;
  min-height: var(--header-h);
  height: auto;
}

a.brand.bulkit-brand {
  min-width: 0;
  flex: 0 1 auto;
}

a.brand.bulkit-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 48px;
  margin: 0;
  object-fit: contain;
}

/* Stable hamburger icon. Older rules changed it to inline-flex
   without defining a column direction, which distorted the bars. */
.menu-toggle {
  position: relative;
  display: none;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(12, 12, 12, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(12, 12, 12, .06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transform-origin: center;
  transition: top .25s ease, transform .25s ease, opacity .18s ease, background .25s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(.35);
}

.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Use an absolute dropdown inside the sticky header. This avoids
   position:fixed issues caused by backdrop-filter containing blocks. */
.mobile-menu {
  display: none;
}

@media (max-width: 1199.98px) {
  :root { --header-h: 76px; }

  .desktop-nav,
  .header-cta,
  .language-btn {
    display: none !important;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-block !important;
  }

  .mobile-menu {
    position: absolute;
    z-index: 1100;
    top: 100%;
    right: 0;
    left: 0;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-h));
    padding: 10px 20px 22px;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, .985);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(12, 12, 12, .13);
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 52px;
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.3;
  }

  .mobile-menu .btn {
    width: 100%;
    margin-top: 16px;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* Prevent every grid/flex child from forcing horizontal overflow */
:is(
  .hero-grid,
  .service-grid,
  .stage-grid,
  .solution-nav-grid,
  .solution-detail-grid,
  .detail-lists,
  .journey-flow,
  .faq-grid,
  .contact-grid,
  .form-row,
  .footer-grid,
  .split-content-grid
) > * {
  min-width: 0;
}

:is(h1, h2, h3, h4, p, a, strong, span, li, label) {
  overflow-wrap: break-word;
}

/* Tablet layout */
@media (max-width: 991.98px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero-grid,
  .stage-grid,
  .solution-detail-grid,
  .split-content-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .detail-reverse .solution-detail-visual,
  .detail-reverse .solution-detail-copy {
    order: initial;
  }

  .solution-detail-visual {
    position: static;
    top: auto;
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .solution-detail-copy {
    width: 100%;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    max-width: 760px;
    margin-inline: auto;
  }

  .for-brands-page .brands-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .for-brands-page .premium-catalogue-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .contact-details {
    min-height: 0;
    padding-bottom: 0;
  }
}

/* Phones */
@media (max-width: 767.98px) {
  :root { --header-h: 68px; }

  html {
    scroll-padding-top: calc(var(--header-h) + 12px);
  }

  body {
    min-width: 320px;
    font-size: 16px;
    overflow-x: hidden;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  a.brand.bulkit-brand img {
    max-width: min(160px, calc(100vw - 92px));
    max-height: 40px;
  }

  .menu-toggle {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .menu-toggle span:nth-child(1) { top: 13px; }
  .menu-toggle span:nth-child(2) { top: 20px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) { top: 20px; }

  .mobile-menu {
    padding: 8px 14px 20px;
  }

  body.theme-fancy .section,
  body.theme-fancy section.section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  body.theme-fancy .hero,
  .for-brands-page .brands-hero {
    min-height: auto;
    padding-top: 42px !important;
    padding-bottom: 48px !important;
  }

  body.theme-fancy h1,
  .for-brands-page .brands-hero .hero-copy h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  body.theme-fancy h2,
  .for-brands-page .section-heading h2 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.16;
  }

  body.theme-fancy h3 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
  }

  .hero-copy {
    padding-top: 0;
    text-align: center;
  }

  .hero-copy h1 {
    margin-top: 0;
  }

  .hero-copy p,
  body.theme-fancy .hero-copy > p:first-of-type,
  body.theme-fancy .hero-copy .hero-subcopy {
    margin-top: 18px !important;
    font-size: 16px !important;
    line-height: 1.62;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 26px;
  }

  .hero-buttons .btn,
  .form-footer .btn {
    width: 100%;
  }

  .hero-visual,
  .for-brands-page .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    margin: 30px auto 0 !important;
    transform: none;
  }

  .for-brands-page .premium-catalogue-visual,
  .catalogue-visual {
    min-height: 0;
    padding: 10px 0;
  }

  .for-brands-page .catalogue-screen,
  .catalogue-screen {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
    transform: none !important;
    display:none !important;
  }

  .screen-top {
    margin-bottom: 18px;
  }

  .catalogue-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .for-brands-page .product-tile,
  .product-tile {
    min-height: 96px;
    padding: 12px;
    border-radius: 13px;
  }

  .product-tile span {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .product-tile b {
    font-size: 13px;
  }

  .for-brands-page .catalogue-status,
  .catalogue-status,
  .visual-glow {
    display: none;
  }

  .service-grid,
  .for-brands-page .brand-benefit-grid,
  .stage-grid,
  .solution-nav-grid,
  .detail-lists,
  .journey-flow,
  .form-row,
  .form-footer {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .for-brands-page .brand-benefit-grid {
    gap: 14px;
  }

  .for-brands-page .brand-benefit-grid .service-card {
    grid-template-columns: 50px minmax(0, 1fr) !important;
    gap: 14px;
    min-height: 0;
    padding: 20px 18px;
    border-radius: 16px !important;
    text-align: left;
  }

  .for-brands-page .brand-benefit-grid .service-card .benefit-number,
  .for-brands-page .benefit-number {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .for-brands-page .brand-benefit-grid .service-card strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .for-brands-page .stage-card {
    padding: 26px 22px;
  }

  .for-brands-page .stage-card h3 {
    font-size: 1.7rem;
  }

  .for-brands-page .brand-list li {
    font-size: 15px;
  }

  .solution-nav-card,
  .growth-overview-page .solution-menu-section .solution-nav-card {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px;
    min-height: 82px;
    padding: 16px;
    align-items: center;
  }

  .solution-nav-card > span:first-child,
  .growth-overview-page .solution-menu-section .solution-nav-card > span:first-child {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--blue);
    background: rgba(0, 165, 223, .10);
    font-size: 12px;
  }

  .solution-nav-card strong {
    font-size: 15px !important;
    line-height: 1.35;
  }

  .solution-detail-grid {
    gap: 28px;
  }

  .solution-detail-visual,
  .solution-detail-visual img {
    border-radius: 16px;
  }

  .solution-note,
  .detail-lists > div {
    padding: 18px;
  }

  .detail-lists {
    gap: 14px;
  }

  .journey-flow {
    display: grid !important;
    gap: 12px;
  }

  .journey-flow > i {
    display: none !important;
  }

  .journey-step,
  .growth-overview-page .journey-step {
    min-width: 0;
    min-height: 88px;
    width: 100%;
    padding: 18px;
  }

  .faq-grid {
    gap: 30px;
  }

  .faq-heading br {
    display: none;
  }

  .faq-list summary {
    padding: 18px 48px 18px 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list details p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .contact-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .contact-card h3 {
    margin-bottom: 22px;
  }

  .field {
    margin-bottom: 17px;
  }

  .field label,
  .theme-fancy .field label {
    margin-bottom: 7px;
    font-size: 15px;
  }

  .field input,
  .theme-fancy .field input {
    height: 50px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .field textarea,
  .theme-fancy .field textarea {
    min-height: 130px;
    padding: 13px 14px;
    font-size: 16px;
  }

  .form-footer {
    gap: 14px;
  }

  .cta-points {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-points span {
    width: 100%;
    border-radius: 12px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 20px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 42px;
  }

}

/* Hover transforms feel broken on touch screens */
@media (hover: none) and (max-width: 767.98px) {
  body.theme-fancy :is(
    .service-card,
    .stage-card,
    .growth-item,
    .quote-card,
    .pillar-card,
    .solution-nav-card,
    .journey-step,
    .detail-lists > div,
    .solution-note,
    .faq-list details,
    .contact-card,
    .mini-solutions a
  ):hover {
    transform: none;
  }
}

@media (max-width: 479.98px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  a.brand.bulkit-brand img {
    max-width: min(145px, calc(100vw - 86px));
    max-height: 37px;
  }

  .catalogue-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-about {
    grid-column: auto;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1199.98px) {
  .mobile-menu {
    max-height: calc(100dvh - var(--header-h));
  }
}

/* On compact desktop, tablet and mobile, horizontal entrance animations can
   increase the document scroll width before reveal. Use vertical motion. */
@media (max-width: 1320px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
  }

  .reveal-left.is-revealed,
  .reveal-right.is-revealed {
    transform: none;
  }
}


/* =========================================================
   FINAL BULKIT ONBOARDING FORM FIXES
   - Theme matched UI
   - Correct radio button sizing
   - Responsive layout
   - Improved right side journey card
   ========================================================= */
.bulkit-onboarding-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(0,165,223,.10), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(249,56,34,.08), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFD 48%, #FFFFFF 100%) !important;
}

.bulkit-onboarding-section .container {
  width: min(calc(100% - 32px), 1210px);
}

.bulkit-onboarding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 28px;
  align-items: start;
}

.bulkit-onboarding-card,
.journey-side-card {
  border: 1px solid transparent !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.22), rgba(229,231,235,.7), rgba(249,56,34,.18)) border-box !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 46px rgba(12,12,12,.07) !important;
}

.bulkit-onboarding-card {
  padding: clamp(22px, 3vw, 34px);
}

.onboarding-top {
  align-items: flex-start;
  margin-bottom: 24px;
}

.onboarding-top h2 {
  color: var(--ink) !important;
  font-size: clamp(32px, 4.2vw, 52px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.055em;
}

.onboarding-top p {
  max-width: 620px;
  color: #5f646c !important;
  font-size: 16px !important;
  line-height: 1.62 !important;
}

.step-badge {
  border: 1px solid rgba(0,165,223,.12);
  background: rgba(0,165,223,.08) !important;
  color: var(--blue) !important;
  box-shadow: 0 8px 20px rgba(0,165,223,.08);
}

.question-block {
  padding: 20px 0;
  /*border-bottom: 1px solid rgba(229,231,235,.82) !important;*/
}

.question-block h4 {
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
}

.question-block p {
  color: #676767 !important;
  font-size: 14px !important;
}

.journey-choice-grid {
  gap: 18px;
}

.journey-choice {
  min-height: 300px;
  padding: 20px;
  border: 1px solid transparent !important;
  border-radius: 20px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #E5E7EB, #E5E7EB) border-box !important;
  box-shadow: 0 10px 28px rgba(12,12,12,.045);
}

.journey-choice:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(12,12,12,.08);
}

.journey-choice.active {
  background:
    linear-gradient(180deg, rgba(247,252,255,.98), rgba(255,255,255,.98)) padding-box,
    linear-gradient(135deg, var(--blue), var(--red)) border-box !important;
  box-shadow: 0 18px 38px rgba(0,165,223,.12) !important;
}

.radio-dot {
  position: relative;
  flex: 0 0 auto;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #D8DFE9 !important;
  background: #fff;
}

.journey-choice.active .radio-dot {
  border: 2px solid var(--blue) !important;
}

.journey-choice.active .radio-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.choice-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  font-size: 24px !important;
  background: rgba(0,165,223,.10) !important;
}

.choice-icon.red {
  background: rgba(249,56,34,.10) !important;
}

.journey-choice strong {
  color: var(--ink) !important;
  font-size: clamp(20px, 2vw, 24px) !important;
}

.journey-choice small,
.journey-choice li {
  color: #596270 !important;
  font-size: 13px !important;
}

.journey-choice em {
  background: rgba(0,165,223,.08) !important;
  color: var(--blue) !important;
  border: 1px solid rgba(0,165,223,.10);
}

.journey-choice .red-text {
  background: rgba(249,56,34,.08) !important;
  color: var(--red) !important;
  border-color: rgba(249,56,34,.10);
}

/* Fix radio buttons that were stretched by global form input styles */
.bulkit-brand-form .radio-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bulkit-brand-form .radio-line label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #fff;
  color: #303741 !important;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.bulkit-brand-form .radio-line label:hover {
  border-color: rgba(0,165,223,.35);
  box-shadow: 0 8px 20px rgba(12,12,12,.055);
}

.bulkit-brand-form .radio-line input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  flex: 0 0 18px;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #CBD5E1 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: none !important;
}

.bulkit-brand-form .radio-line input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform .15s ease;
}

.bulkit-brand-form .radio-line input[type="radio"]:checked {
  border-color: var(--blue) !important;
}

.bulkit-brand-form .radio-line input[type="radio"]:checked::before {
  transform: scale(1);
}

.bulkit-brand-form select,
.bulkit-brand-form input:not([type="radio"]),
.bulkit-brand-form textarea {
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px !important;
  color: var(--ink) !important;
  background-color: #fff !important;
  box-shadow: 0 1px 0 rgba(12,12,12,.02);
}

.bulkit-brand-form select:focus,
.bulkit-brand-form input:not([type="radio"]):focus,
.bulkit-brand-form textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(0,165,223,.12) !important;
}

.lead-fields[hidden],
.portal-box[hidden] {
  display: none !important;
}

.lead-fields:not([hidden]),
.portal-box:not([hidden]) {
  display: block !important;
  animation: bulkitFadeUp .28s ease both;
}

.lead-fields {
  border: 1px solid transparent !important;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.20), rgba(249,56,34,.14)) border-box !important;
  box-shadow: 0 12px 28px rgba(12,12,12,.045);
}

.lead-fields h4 {
  color: var(--ink) !important;
  font-weight: 800;
}

.portal-box {
  border: 1px solid rgba(34,197,94,.24) !important;
  background: linear-gradient(135deg, rgba(34,197,94,.11), rgba(0,165,223,.06)) !important;
  color: #075e2c !important;
  box-shadow: 0 14px 30px rgba(34,197,94,.08);
}

.portal-box a {
  display: inline-flex;
  margin-top: 6px;
  color: #047857 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bulkit-brand-form .is-invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(249,56,34,.12) !important;
}

.form-actions {
  flex-wrap: wrap;
}

.form-actions .btn {
  gap: 10px;
  min-width: 210px;
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.form-actions .btn:hover {
  background: var(--red-hover) !important;
  border-color: var(--red-hover) !important;
}

.form-actions .btn:disabled {
  opacity: .7;
  cursor: wait;
  transform: none !important;
}

/* Right journey card */
.journey-side-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  overflow: hidden;
}

.journey-side-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.journey-side-card h3 {
  color: var(--ink) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -.03em;
}

.journey-side-card > p {
  color: #676767 !important;
  font-size: 14px !important;
  line-height: 1.6;
}

.journey-steps {
  position: relative;
  gap: 10px;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: 76px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0,165,223,.35), rgba(249,56,34,.28));
}

.journey-steps div {
  position: relative;
  grid-template-columns: 32px 46px minmax(0, 1fr) !important;
  column-gap: 12px;
  min-height: 64px;
  padding: 7px 0;
}

.journey-steps span {
  position: relative;
  z-index: 1;
  width: 30px !important;
  height: 30px !important;
  background: #008F5A !important;
  box-shadow: 0 0 0 5px rgba(0,143,90,.10);
}

.journey-steps i {
  width: 46px !important;
  height: 46px !important;
  border: 1px solid rgba(0,165,223,.10);
  border-radius: 14px !important;
  background: linear-gradient(145deg, rgba(0,165,223,.09), rgba(34,197,94,.08)) !important;
  font-size: 20px !important;
}

.journey-steps strong {
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.28;
}

.journey-steps small {
  grid-column: 3 !important;
  color: #68717d !important;
  font-size: 12px !important;
  line-height: 1.45;
}

.verified-box {
  position: relative;
  margin-top: 22px;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(34,197,94,.20);
  background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(0,165,223,.06)) !important;
  color: #075e2c !important;
  font-size: 14px;
  line-height: 1.45;
}

/*.verified-box::before {*/
/*  content: "✓";*/
/*  position: absolute;*/
/*  left: 16px;*/
/*  top: 16px;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  border-radius: 50%;*/
/*  background: #008F5A;*/
/*  color: #fff;*/
/*  font-size: 12px;*/
/*}*/

@keyframes bulkitFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .bulkit-onboarding-grid {
    grid-template-columns: 1fr;
  }

  .journey-side-card {
    position: static;
  }

  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-steps div {
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: #fff;
  }
}

@media (max-width: 767.98px) {
  .bulkit-onboarding-section .container {
    width: min(calc(100% - 20px), 1210px);
  }

  .bulkit-onboarding-card,
  .journey-side-card {
    border-radius: 20px !important;
  }

  .bulkit-onboarding-card {
    padding: 18px;
  }

  .onboarding-top {
    gap: 12px;
  }

  .onboarding-top h2 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  .step-badge {
    width: max-content;
  }

  .journey-choice-grid,
  .form-row,
  .journey-steps {
    grid-template-columns: 1fr !important;
  }

  .journey-choice {
    min-height: 0;
    padding: 18px;
  }

  .journey-choice ul {
    display: grid;
    gap: 4px;
  }

  .question-block {
    padding: 18px 0;
  }

  .bulkit-brand-form .radio-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bulkit-brand-form .radio-line label {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .lead-fields {
    padding: 18px;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-actions .btn,
  .form-actions small {
    width: 100%;
    max-width: none;
  }

  .journey-side-card {
    padding: 20px;
  }

  .journey-steps div {
    grid-template-columns: 32px 44px minmax(0, 1fr) !important;
  }
}

@media (max-width: 420px) {
  .bulkit-onboarding-section .container {
    width: min(calc(100% - 14px), 1210px);
  }

  .bulkit-onboarding-card {
    padding: 15px;
  }

  .choice-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .journey-choice strong {
    font-size: 20px !important;
  }
}


/* =========================================================
   FINAL BULKIT PROCESS + FORM UI FIX
   Add at the bottom. Scoped selectors override older styles.
   ========================================================= */

/* ---------- Process section: clean premium two-column journey ---------- */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 165, 223, .10), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(249, 56, 34, .08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,165,223,.35), rgba(249,56,34,.28), transparent);
}

.process-section .section-heading {
  max-width: 880px;
  margin: 0 auto;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(0,165,223,.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,165,223,.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-section .section-heading h2 {
  margin-top: 16px;
  color: #0c0c0c;
}

.process-section .section-heading p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #676767;
  font-size: 16px;
  line-height: 1.7;
}

.process-section .journey-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin: 42px 0 0 !important;
}

.process-section .journey-block {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 34px;
  border: 1px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,253,.98)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.35), rgba(229,231,235,.9), rgba(249,56,34,.18)) border-box;
  box-shadow: 0 18px 46px rgba(12,12,12,.075);
}

.process-section .journey-block::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,165,223,.16), transparent 70%);
  pointer-events: none;
}

.process-section .journey-block-selling::after {
  background: radial-gradient(circle, rgba(249,56,34,.13), transparent 70%);
}

.process-section .journey-block-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}

.process-section .journey-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgb(152 152 152 / 10%);
  color: var(--ink);
  font-size: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.process-section .journey-block-selling .journey-icon {
  background: rgb(152 152 152 / 10%) !important
  color: var(--ink);
}

.process-section .journey-block-head small {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-section .journey-block-selling .journey-block-head small {
  color: var(--red);
}

.process-section .journey-block h3 {
  margin: 0 !important;
  color: #061b49;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.process-section .journey-step {
  position: relative !important;
  z-index: 2;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 0 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  transform: none !important;
}

.process-section .journey-step:last-child {
  padding-bottom: 0 !important;
}

.process-section .journey-step::before {
  display: none !important;
  content: none !important;
}

.process-section .journey-step:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  left: 23px !important;
  top: 52px !important;
  width: 2px !important;
  height: calc(100% - 50px) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(0,165,223,.35), rgba(0,165,223,.06)) !important;
}

.process-section .journey-block-selling .journey-step:not(:last-child)::after {
  background: linear-gradient(180deg, rgba(249,56,34,.32), rgba(249,56,34,.06)) !important;
}

.process-section .journey-step:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.process-section .step-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0089BA);
  box-shadow: 0 10px 22px rgba(0,165,223,.22);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.process-section .journey-block-selling .step-number {
  background: linear-gradient(135deg, var(--red), #D92F1B);
  box-shadow: 0 10px 22px rgba(249,56,34,.18);
}

.process-section .step-content {
  min-width: 0;
  padding: 2px 0 0;
}

.process-section .step-content h4 {
  margin: 0 !important;
  color: #061b49;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.process-section .step-content p {
  margin: 7px 0 0 !important;
  color: #667085;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* ---------- Form and journey UI final polish ---------- */
.bulkit-onboarding-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(0,165,223,.08), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.bulkit-onboarding-grid {
  grid-template-columns: minmax(0, 1fr) 390px !important;
  gap: 30px !important;
}

.bulkit-onboarding-card,
.journey-side-card {
  border: 1px solid rgba(229,236,245,.95);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(11,31,70,.08);
}

.bulkit-onboarding-card {
  padding: clamp(22px, 3vw, 36px) !important;
}

.onboarding-top h2 {
  color: #061b49;
}

.question-block {
  padding: 24px 0 !important;
}

.question-block h3,
.question-block h4 {
  color: #0c0c0c !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: -.02em !important;
}

.journey-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.journey-choice {
  position: relative !important;
  min-height: 0 !important;
  padding: 26px 22px 22px !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 20px !important;
  background:
    linear-gradient(180deg, #fff, #fbfdff) padding-box,
    linear-gradient(135deg, #dfe7f2, #dfe7f2) border-box !important;
  box-shadow: 0 10px 24px rgba(11,31,70,.045) !important;
}

.journey-choice::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  border: 2px solid #bdd1e6;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff;
}

.journey-choice.active {
  border-color: transparent !important;
  background:
    linear-gradient(180deg, #f8fbff, #ffffff) padding-box,
    linear-gradient(135deg, var(--blue), var(--red)) border-box !important;
  box-shadow: 0 16px 36px rgba(0,165,223,.12) !important;
}

.journey-choice.active::before {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 5px #fff;
}

.journey-choice strong {
  color: #061b49 !important;
  font-size: clamp(20px, 2vw, 25px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
}

.journey-choice small {
  color: #637083 !important;
  font-size: 14px !important;
}

.journey-choice ul {
  display: grid;
  gap: 9px;
  margin: 6px 0 0 !important;
}

.journey-choice li {
  margin: 0 !important;
  color: #24324a !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.bulkit-brand-form .radio-line {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
}

.bulkit-brand-form .radio-line label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  color: #061b49 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.bulkit-brand-form .radio-line input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 2px solid #bdd1e6 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: 0 !important;
  flex: 0 0 18px !important;
}

.bulkit-brand-form .radio-line input[type="radio"]:checked {
  border-color: var(--blue) !important;
  background: radial-gradient(circle at center, var(--blue) 0 38%, transparent 42%) !important;
}

.bulkit-brand-form select,
.bulkit-brand-form input:not([type="radio"]),
.bulkit-brand-form textarea {
  min-height: 54px !important;
  border: 1px solid #dbe6f3 !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: #061b49 !important;
}

.lead-fields[hidden],
.portal-box[hidden] {
  display: none !important;
}

.lead-fields:not([hidden]),
.portal-box:not([hidden]) {
  display: block !important;
}

.lead-fields {
  margin-top: 24px !important;
  padding: 24px !important;
  border: 1px solid rgba(0,165,223,.18) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #ffffff, #f7fbff) !important;
}

.portal-box {
  border: 1px solid rgba(34,197,94,.24) !important;
  background: linear-gradient(180deg, #ecfdf3, #f7fffb) !important;
}

.bulkit-brand-form .is-invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(249, 56, 34, .12) !important;
}

.form-actions {
  align-items: center !important;
}

.form-actions .btn {
  min-width: 220px;
  border-radius: 12px;
}

/* ---------- Right side journey card: remove numbers and fix alignment ---------- */
.journey-side-card {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 34px !important;
  overflow: hidden;
  border-radius: 26px !important;
}

.journey-side-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,165,223,.13), transparent 70%);
  pointer-events: none;
}

.journey-side-card h3 {
  position: relative;
  z-index: 2;
  color: #0c0c0c !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  line-height: 1.16 !important;
}

.journey-side-card > p {
  position: relative;
  z-index: 2;
  margin-top: 12px !important;
  color: #676767 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.journey-side-card .journey-steps {
  position: relative;
  z-index: 2;
  gap: 22px !important;
  margin-top: 28px;
}

.journey-side-card .journey-steps div {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  column-gap: 16px !important;
  row-gap: 4px !important;
  align-items: center !important;
}

.journey-side-card .journey-steps span {
  display: none !important;
}

.journey-side-card .journey-steps i {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  display: grid !important;
  place-items: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 17px !important;
  background: #e9f8ef !important;
  font-style: normal !important;
  font-size: 24px !important;
}

.journey-side-card .journey-steps strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  color: #061b49 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.journey-side-card .journey-steps small {
  grid-column: 2 !important;
  grid-row: 2 !important;
  color: #667085 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.verified-box {
  position: relative;
  z-index: 2;
}

/* ---------- Overall section responsiveness ---------- */
@media (max-width: 1100px) {
  .bulkit-onboarding-grid {
    grid-template-columns: 1fr !important;
  }

  .journey-side-card {
    position: static !important;
  }
}

@media (max-width: 991.98px) {
  .process-section .journey-wrapper {
    grid-template-columns: 1fr !important;
  }

  .process-section .journey-block {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .process-section .journey-wrapper {
    gap: 18px !important;
    margin-top: 30px !important;
  }

  .process-section .journey-block {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .process-section .journey-block-head {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }

  .process-section .journey-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 24px;
  }

  .process-section .journey-step {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding-bottom: 24px !important;
  }

  .process-section .step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
  }

  .process-section .journey-step:not(:last-child)::after {
    left: 20px !important;
    top: 46px !important;
  }

  .process-section .step-content h4 {
    font-size: 16px !important;
  }

  .process-section .step-content p {
    font-size: 14px !important;
  }

  .journey-choice-grid {
    grid-template-columns: 1fr !important;
  }

  .bulkit-brand-form .radio-line {
    gap: 18px !important;
  }

  .form-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .form-actions .btn {
    width: 100% !important;
  }

  .journey-side-card .journey-steps div {
    grid-template-columns: 52px minmax(0, 1fr) !important;
  }

  .journey-side-card .journey-steps i {
    width: 52px !important;
    height: 52px !important;
    font-size: 22px !important;
  }
}

@media (max-width: 480px) {
  .process-section .journey-block {
    padding: 22px 16px;
  }

  .bulkit-onboarding-card,
  .journey-side-card {
    padding: 20px 16px !important;
  }

  .lead-fields {
    padding: 18px !important;
  }
}


/* =========================================================
   FINAL QUICK QUESTIONS UI FIX - 20260710
   Fixes:
   1) A Few Quick Questions card visual layout
   2) Remove visible card radio buttons on desktop and mobile
   3) Prevent hidden text inside journey choice cards on mobile
   4) Stronger responsive layout for form and right journey card
   Keep this block at the very bottom of style_6.css.
   ========================================================= */

/* Main section polish */
.bulkit-onboarding-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 165, 223, .11), transparent 31%),
    radial-gradient(circle at 92% 82%, rgba(249, 56, 34, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #ffffff 100%) !important;
}

.bulkit-onboarding-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,165,223,.34), rgba(249,56,34,.24), transparent);
  pointer-events: none;
}

.bulkit-onboarding-section .container,
.bulkit-onboarding-grid {
  position: relative;
  z-index: 1;
}

.bulkit-onboarding-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
  gap: 30px !important;
  align-items: start !important;
}

.bulkit-onboarding-card {
  position: relative !important;
  overflow: visible !important;
  padding: clamp(22px, 3vw, 38px) !important;
  border: 1px solid transparent !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(250,253,255,.99)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.25), rgba(229,231,235,.85), rgba(249,56,34,.16)) border-box !important;
  box-shadow: 0 22px 60px rgba(11,31,70,.09) !important;
}

.bulkit-onboarding-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,165,223,.11), transparent 70%);
  pointer-events: none;
}

.bulkit-onboarding-card > * {
  position: relative;
  z-index: 2;
}

.onboarding-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 26px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid rgba(229,236,245,.92) !important;
}

.onboarding-top h2 {
  margin: 0 !important;
  color: #061b49 !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -.052em !important;
}

.onboarding-top p {
  max-width: 680px !important;
  margin-top: 8px !important;
  color: #5d6674 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.bulkit-brand-form .question-block {
  padding: 10px 0 !important;
 
}

.bulkit-brand-form .question-block:first-of-type {
  padding-top: 0 !important;
}

.bulkit-brand-form .question-block h3,
.bulkit-brand-form .question-block h4 {
  margin: 0 0 8px !important;
  color: #0c0c0c !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: -.02em !important;
}

.bulkit-brand-form .question-block p {
  margin: 0 0 18px !important;
  color: #667085 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Journey choice cards: no visible radio dot */
.journey-choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.journey-choice {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
  padding: 26px 22px 22px !important;
  border: 1px solid transparent !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, #ffffff, #fbfdff) padding-box,
    linear-gradient(135deg, #dfe7f2, #e8eef6) border-box !important;
  box-shadow: 0 12px 28px rgba(11,31,70,.05) !important;
  cursor: pointer !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

/* hide actual and pseudo card radio */
.journey-choice > input[type="radio"],
.journey-choice .radio-dot,
.journey-choice::before,
.journey-choice::after {
  display: none !important;
  content: none !important;
}

.journey-choice:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 42px rgba(11,31,70,.09) !important;
}

.journey-choice.active {
  background:
    linear-gradient(180deg, #f8fbff, #ffffff) padding-box,
    linear-gradient(135deg, var(--blue), var(--red)) border-box !important;
  box-shadow: 0 18px 42px rgba(0,165,223,.13) !important;
}

.journey-choice.active::after {
  content: "Selected" !important;
  display: inline-flex !important;
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 26px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), #0089BA) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
}

.journey-choice strong {
  display: block !important;
  max-width: calc(100% - 86px) !important;
  margin: 0 !important;
  color: #061b49 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
}

.journey-choice small {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  margin: 0 !important;
  color: #607086 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.journey-choice ul {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  gap: 10px !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.journey-choice li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin: 0 !important;
  color: #22324d !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.42 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.journey-choice li::before {
  content: "✓" !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  margin: 1px 0 0 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: var(--blue) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.journey-choice:nth-child(2) li::before {
  background: var(--red) !important;
}

/* Radio groups below cards */
.bulkit-brand-form .radio-line {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.bulkit-brand-form .radio-line label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 44px !important;
  padding: 10px 15px !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #061b49 !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.bulkit-brand-form .radio-line input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-grid !important;
  place-content: center !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #bdd1e6 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}

.bulkit-brand-form .radio-line input[type="radio"]:checked {
  border-color: var(--blue) !important;
  background: radial-gradient(circle at center, var(--blue) 0 38%, transparent 42%) !important;
}

/* Form inputs polish */
.bulkit-brand-form select,
.bulkit-brand-form input:not([type="radio"]),
.bulkit-brand-form textarea {
  width: 100% !important;
  min-height: 54px !important;
  border: 1px solid #dbe6f3 !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #061b49 !important;
  font-size: 15px !important;
}

.lead-fields {
  margin-top: 24px !important;
  padding: 24px !important;
  border: 1px solid rgba(0,165,223,.18) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #ffffff, #f7fbff) !important;
  box-shadow: 0 12px 30px rgba(11,31,70,.045) !important;
}

.lead-fields[hidden],
.portal-box[hidden] {
  display: none !important;
}

.lead-fields:not([hidden]),
.portal-box:not([hidden]) {
  display: block !important;
}

.form-actions {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  padding-top: 24px !important;
}

.form-actions .btn {
  min-width: 220px !important;
  border-radius: 12px !important;
}

.form-actions small {
  color: #667085 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* Right journey card match theme */
.journey-side-card {
  position: sticky !important;
  top: calc(var(--header-h) + 22px) !important;
  padding: 32px !important;
  border-radius: 28px !important;
}

.journey-side-card .journey-steps span,
.journey-side-card .journey-steps::before {
  display: none !important;
}

.journey-side-card .journey-steps {
  display: grid !important;
  gap: 20px !important;
  margin-top: 26px !important;
}

.journey-side-card .journey-steps div {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 4px 15px !important;
  align-items: center !important;
  min-height: auto !important;
  padding: 0 !important;
}

.journey-side-card .journey-steps i {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
}

.journey-side-card .journey-steps strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  color: #061b49 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.journey-side-card .journey-steps small {
  grid-column: 2 !important;
  grid-row: 2 !important;
  color: #667085 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .bulkit-onboarding-grid {
    grid-template-columns: 1fr !important;
  }
  .journey-side-card {
    position: static !important;
  }
}

@media (max-width: 767.98px) {
  .bulkit-onboarding-section .container {
    width: min(calc(100% - 24px), 1210px) !important;
  }

  .bulkit-onboarding-card,
  .journey-side-card {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .onboarding-top {
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
  }

  .onboarding-top h2 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  .journey-choice-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .journey-choice {
    padding: 22px 18px !important;
    border-radius: 18px !important;
    overflow: visible !important;
  }

  .journey-choice.active::after {
    position: static !important;
    order: -1 !important;
    width: max-content !important;
    margin-bottom: 2px !important;
  }

  .journey-choice strong {
    max-width: 100% !important;
    font-size: 22px !important;
  }

  .journey-choice small,
  .journey-choice li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .journey-choice ul {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .bulkit-brand-form .radio-line {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .bulkit-brand-form .radio-line label {
    width: 100% !important;
    border-radius: 14px !important;
  }

  .form-row,
  .form-actions {
    grid-template-columns: 1fr !important;
  }

  .form-actions {
    display: grid !important;
    gap: 14px !important;
  }

  .form-actions .btn,
  .form-actions small {
    width: 100% !important;
    max-width: none !important;
  }

  .journey-side-card .journey-steps div {
    grid-template-columns: 50px minmax(0, 1fr) !important;
  }

  .journey-side-card .journey-steps i {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 420px) {
  .bulkit-onboarding-section .container {
    width: min(calc(100% - 16px), 1210px) !important;
  }

  .bulkit-onboarding-card,
  .journey-side-card {
    padding: 18px 15px !important;
  }
}

/* =========================================================
   QUICK QUESTIONS ALTERNATIVE UI FINAL
   Cleaner full-width form + horizontal brand journey strip
   Keep this block at the very end.
   ========================================================= */

.bulkit-onboarding-section {
  overflow: hidden !important;
  background:
    radial-gradient(circle at 5% 12%, rgba(0,165,223,.11), transparent 30%),
    radial-gradient(circle at 94% 20%, rgba(249,56,34,.07), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
}

.bulkit-onboarding-section .bulkit-onboarding-grid {
  width: min(100%, 1120px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 24px !important;
  margin-inline: auto !important;
  align-items: start !important;
}

.bulkit-onboarding-card {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(24px, 4vw, 44px) !important;
  border: 1px solid rgba(0,165,223,.16) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(249,252,255,.96)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.22), rgba(249,56,34,.13)) border-box !important;
  box-shadow: 0 24px 70px rgba(11, 31, 70, .08) !important;
}

.bulkit-onboarding-card::after {
  right: -130px !important;
  top: -130px !important;
  width: 320px !important;
  height: 320px !important;
  background: radial-gradient(circle, rgba(0,165,223,.09), transparent 68%) !important;
}

.onboarding-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 0 0 26px !important;
  margin: 0 0 28px !important;
  border-bottom: 1px solid rgba(218, 229, 241, .95) !important;
}

.onboarding-top h2 {
  max-width: 760px !important;
  margin: 0 !important;
  color: #061b49 !important;
  font-size: clamp(34px, 5vw, 58px) !important;
  font-weight: 800 !important;
  line-height: .98 !important;
  letter-spacing: -.06em !important;
}

.onboarding-top p {
  max-width: 690px !important;
  margin: 10px 0 0 !important;
  color: #5c6678 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.bulkit-brand-form .question-block {
  padding: 15px 0 !important;
 
}

.bulkit-brand-form .question-block:first-of-type {
  padding-top: 0 !important;
}

.bulkit-brand-form .question-block h3,
.bulkit-brand-form .question-block h4 {
  margin: 0 0 7px !important;
  color: #07183f !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.bulkit-brand-form .question-block p {
  margin: 0 0 18px !important;
  color: #667085 !important;
  font-size: 14px !important;
}

/* compact route cards, no radio and no selected badge */
.journey-choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.journey-choice {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  min-height: auto !important;
  height: auto !important;
  padding: 24px !important;
  overflow: visible !important;
  border: 1px solid #dce7f4 !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(11,31,70,.045) !important;
  cursor: pointer !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease !important;
}

.journey-choice::after,
.journey-choice::before,
.journey-choice > input[type="radio"],
.journey-choice .radio-dot {
  display: none !important;
  content: none !important;
}

.journey-choice:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0,165,223,.34) !important;
  box-shadow: 0 16px 42px rgba(11,31,70,.08) !important;
}

.journey-choice.active {
  border-color: transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--blue), var(--red)) border-box !important;
  box-shadow: 0 18px 42px rgba(0,165,223,.13) !important;
}

.journey-choice.active::after {
  display: none !important;
  content: none !important;
}

.journey-choice.active::before {
  content: "✓" !important;
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  display: grid !important;
  place-items: center !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--red)) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  box-shadow: 0 8px 18px rgba(0,165,223,.22) !important;
}

.journey-choice strong {
  max-width: calc(100% - 42px) !important;
  margin: 0 !important;
  color: #061b49 !important;
  font-size: clamp(22px, 2.1vw, 28px) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: -.04em !important;
}

.journey-choice small {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  color: #62718a !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.journey-choice ul {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  gap: 9px !important;
  margin: 7px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.journey-choice li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin: 0 !important;
  color: #22324d !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
}

.journey-choice li::before {
  content: "" !important;
  flex: 0 0 8px !important;
  width: 8px !important;
  height: 8px !important;
  margin-top: 7px !important;
  border-radius: 50% !important;
  background: var(--blue) !important;
}

.journey-choice:nth-child(2) li::before {
  background: var(--red) !important;
}

/* clean segmented radio pills */
.bulkit-brand-form .radio-line {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
}

.bulkit-brand-form .radio-line label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 44px !important;
  padding: 10px 16px !important;
  border: 1px solid #dce7f4 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #061b49 !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease !important;
}

.bulkit-brand-form .radio-line label:has(input[type="radio"]:checked) {
  border-color: rgba(0,165,223,.45) !important;
  background: rgba(0,165,223,.08) !important;
  box-shadow: 0 8px 22px rgba(0,165,223,.09) !important;
}

.bulkit-brand-form .radio-line input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #b8cce3 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: none !important;
}

.bulkit-brand-form .radio-line input[type="radio"]:checked {
  border-color: var(--blue) !important;
  background: radial-gradient(circle at center, var(--blue) 0 38%, transparent 42%) !important;
}

.bulkit-brand-form select,
.bulkit-brand-form input:not([type="radio"]),
.bulkit-brand-form textarea {
  width: 100% !important;
  min-height: 54px !important;
  border: 1px solid #dce7f4 !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  color: #061b49 !important;
  font-size: 15px !important;
}

.portal-box {
  border: 1px solid rgba(5, 150, 105, .22) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #edfff6, #ffffff) !important;
  box-shadow: 0 14px 34px rgba(5,150,105,.08) !important;
}

.lead-fields {
  border-radius: 22px !important;
  background: linear-gradient(180deg, #ffffff, #f7fbff) !important;
}

/* full-width horizontal journey instead of right sidebar */
.journey-side-card {
  position: static !important;
  width: 100% !important;
  padding: clamp(22px, 3vw, 30px) !important;
  border: 1px solid rgba(0,165,223,.14) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,252,255,.96)) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.22), rgba(249,56,34,.12)) border-box !important;
  box-shadow: 0 18px 50px rgba(11,31,70,.07) !important;
}

.journey-side-card h3 {
  color: #061b49 !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -.04em !important;
}

.journey-side-card > p {
  margin-top: 8px !important;
  color: #667085 !important;
  font-size: 15px !important;
}

.journey-side-card .journey-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

.journey-side-card .journey-steps span,
.journey-side-card .journey-steps::before {
  display: none !important;
}

.journey-side-card .journey-steps div {
  display: grid !important;
  grid-template-columns: 50px minmax(0, 1fr) !important;
  gap: 4px 12px !important;
  align-items: center !important;
  min-height: 92px !important;
  padding: 16px !important;
  border: 1px solid #dce7f4 !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 26px rgba(11,31,70,.045) !important;
}

.journey-side-card .journey-steps i {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid rgba(0,165,223,.12) !important;
  border-radius: 15px !important;
  background: #eafaf2 !important;
  font-size: 22px !important;
}

.journey-side-card .journey-steps strong {
  grid-column: 2 !important;
  color: #061b49 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.journey-side-card .journey-steps small {
  grid-column: 2 !important;
  color: #667085 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.verified-box {
  margin-top: 16px !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(5,150,105,.16) !important;
  border-radius: 18px !important;
  background: #ecfdf3 !important;
  color: #05603a !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.form-actions {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  padding-top: 24px !important;
}

.form-actions .btn {
  min-width: 220px !important;
  border-radius: 13px !important;
}

.form-actions small {
  max-width: 420px !important;
  color: #667085 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

@media (max-width: 991.98px) {
  .bulkit-onboarding-section .bulkit-onboarding-grid {
    width: 100% !important;
  }

  .journey-side-card .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  .bulkit-onboarding-section .container {
    width: min(calc(100% - 24px), 1120px) !important;
  }

  .bulkit-onboarding-card,
  .journey-side-card {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .onboarding-top {
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
  }

  .onboarding-top h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  .onboarding-top p {
    font-size: 15px !important;
  }

  .journey-choice-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .journey-choice {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  .journey-choice strong {
    max-width: calc(100% - 40px) !important;
    font-size: 24px !important;
  }

  .journey-choice small,
  .journey-choice ul,
  .journey-choice li {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .journey-choice small,
  .journey-choice ul {
    display: grid !important;
  }

  .bulkit-brand-form .radio-line {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .bulkit-brand-form .radio-line label {
    width: 100% !important;
    justify-content: flex-start !important;
    border-radius: 14px !important;
  }

  .form-actions {
    display: grid !important;
    gap: 14px !important;
  }

  .form-actions .btn,
  .form-actions small {
    width: 100% !important;
    max-width: none !important;
  }

  .journey-side-card .journey-steps {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .journey-side-card .journey-steps div {
    min-height: auto !important;
    padding: 14px !important;
  }
}

@media (max-width: 420px) {
  .bulkit-onboarding-section .container {
    width: min(calc(100% - 16px), 1120px) !important;
  }

  .bulkit-onboarding-card,
  .journey-side-card {
    padding: 18px 15px !important;
  }
}

/* =========================================================
   FINAL REQUEST: QUICK QUESTIONS + BRAND JOURNEY TWO COLUMN
   Desktop = form + journey in one row/two columns.
   Mobile = stacked, all card feature text visible.
   Keep at very end of style_6.css.
   ========================================================= */

@media (min-width: 992px) {
  .bulkit-onboarding-section .bulkit-onboarding-grid {
    width: min(100%, 1210px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    gap: 32px !important;
    align-items: start !important;
    margin-inline: auto !important;
  }

  .bulkit-onboarding-card {
    min-width: 0 !important;
  }

  .journey-side-card {
    position: sticky !important;
    top: calc(var(--header-h, 88px) + 24px) !important;
    min-width: 0 !important;
    height: fit-content !important;
    padding: 30px 28px !important;
    border-radius: 26px !important;
  }

  .journey-side-card .journey-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 24px !important;
  }

  .journey-side-card .journey-steps div {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 4px 14px !important;
    align-items: center !important;
    min-height: auto !important;
    padding: 14px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(218, 229, 241, .9) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .journey-side-card .journey-steps div:last-child {
    border-bottom: 0 !important;
  }

  .journey-side-card .journey-steps i {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 16px !important;
    background: #eafaf2 !important;
  }

  .journey-side-card .journey-steps strong {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .journey-side-card .journey-steps small {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin-top: 2px !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }
}

/* Better route-card proportions on desktop/tablet */
@media (min-width: 768px) {
  .journey-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .journey-choice {
    min-height: 250px !important;
    align-content: start !important;
  }
}

/* Always keep route feature content visible, especially on mobile */
.journey-choice small,
.journey-choice ul,
.journey-choice li {
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.journey-choice ul {
  display: grid !important;
}

.journey-choice li {
  display: flex !important;
}

/* Hide native radio/button indicators from the two main route cards */
.journey-choice > input[type="radio"],
.journey-choice .radio-dot {
  display: none !important;
}

/* Mobile: stack form and journey, keep both feature lists readable */
@media (max-width: 991.98px) {
  .bulkit-onboarding-section .bulkit-onboarding-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 1120px) !important;
    gap: 22px !important;
  }

  .journey-side-card {
    position: static !important;
    width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  .journey-choice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .journey-choice {
    display: grid !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 20px 18px !important;
  }

  .journey-choice strong {
    max-width: calc(100% - 42px) !important;
    font-size: 23px !important;
    line-height: 1.1 !important;
  }

  .journey-choice small {
    display: block !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .journey-choice ul {
    display: grid !important;
    gap: 8px !important;
    margin-top: 6px !important;
  }

  .journey-choice li {
    display: flex !important;
    align-items: flex-start !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .journey-side-card .journey-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* ===== Brand Benefits Process Text Fix ===== */

.bo-flow-step span {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}

.bo-flow-step h3 {
  margin-bottom: 8px !important;
}

.bo-flow-step p {
  margin: 0 !important;
  line-height: 1.65 !important;
}

@media (max-width: 575px) {
  .bo-flow-step span {
    font-size: 13px !important;
  }
}
/* ===== Multiple Services Selection ===== */

.required {
  color: var(--red);
  margin-left: 3px;
}

.services-choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.service-check {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.25s ease;
}

.service-check input {
  display: none;
}

.service-check span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 165, 223, 0.12);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.service-check strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.service-check:has(input:checked) {
  border-color: var(--blue);
  background: rgba(0, 165, 223, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 165, 223, 0.10);
}

.service-check:has(input:checked) span {
  background: var(--blue);
  color: #ffffff;
}

.services-error {
  display: none;
  margin-top: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.services-choice-group.is-invalid {
  padding: 8px;
  border: 1px solid var(--red);
  border-radius: 16px;
  box-shadow: 0 0 0 4px rgba(249, 56, 34, 0.12);
}

.services-choice-group.is-invalid + .services-error {
  display: block;
}

@media (max-width: 575px) {
  .services-choice-group {
    grid-template-columns: 1fr;
  }
}


/* ===== Solution Inquiry Button ===== */

.solution-inquiry-action {
  margin-top: 30px;
  text-align:center;
}

.solution-inquiry-action .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.solution-inquiry-action .btn span {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 575px) {
  .solution-inquiry-action {
    margin-top: 24px;
  }

  .solution-inquiry-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   WHAT BULKIT OFFERS YOUR BRAND SECTION
   ========================================================= */

.bo-process-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 165, 223, 0.10), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(249, 56, 34, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  padding-top: clamp(70px, 7vw, 110px);
  padding-bottom: clamp(70px, 7vw, 110px);
}

.bo-section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.bo-section-intro {
  position: sticky;
  top: 110px;
}

.bo-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 165, 223, 0.18);
  border-radius: 999px;
  background: rgba(0, 165, 223, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.bo-section-intro h2 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.bo-section-intro p {
  max-width: 460px;
  margin: 24px 0 0;
  color: #596270;
  font-size: 17px;
  line-height: 1.72;
}

/* Flow wrapper */
.bo-flow {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 165, 223, 0.24), rgba(229, 231, 235, 0.85), rgba(249, 56, 34, 0.2)) border-box;
  box-shadow: 0 24px 70px rgba(12, 12, 12, 0.08);
}

/* Each benefit row */
.bo-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #eef2f6;
  transition: 0.25s ease;
}

.bo-flow-step:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(0, 165, 223, 0.055), rgba(249, 56, 34, 0.035));
  box-shadow: 0 18px 42px rgba(12, 12, 12, 0.08);
}

/* Number */
.bo-flow-step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #067db4);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 165, 223, 0.22);
}



/* Text */
.bo-flow-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.bo-flow-step p {
  margin: 9px 0 0;
  color: #596270;
  font-size: 15px;
  line-height: 1.65;
}

/* Tablet */
@media (max-width: 1100px) {
  .bo-section-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bo-section-intro {
    position: static;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .bo-section-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .bo-label {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .bo-process-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .bo-section-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .bo-section-intro p {
    max-width: 100%;
    font-size: 15px;
  }

  .bo-flow {
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .bo-flow-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .bo-flow-step > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 13px;
  }

  .bo-flow-step h3 {
    font-size: 18px;
  }

  .bo-flow-step p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .bo-flow-step {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bo-flow-step > span {
    margin-bottom: 4px;
  }
}

/* =========================================================
   BULKIT BRAND ONBOARDING PAGE ADD-ON CSS
   Add after your main style_6.css
   ========================================================= */

.brand-onboarding-page {
  --bo-navy: #061B49;
  --bo-bg: #F7FBFD;
  --bo-card: #FFFFFF;
  --bo-muted: #596270;
  --bo-line: #E5E7EB;
}

.brand-onboarding-page .site-header {
  box-shadow: 0 4px 26px rgba(12, 12, 12, .04);
}

.bo-kicker,
.bo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(0,165,223,.16);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,165,223,.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.bo-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(0,165,223,.14), transparent 31%),
    radial-gradient(circle at 90% 86%, rgba(249,56,34,.10), transparent 30%),
    linear-gradient(145deg, #FFFFFF 0%, #F7FBFD 52%, #FFFFFF 100%);
}

.bo-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
 
  background-size: 240% 100%;
  animation: boAccentMove 8s linear infinite;
}

.bo-hero-grid {
  display: grid;

  align-items: center;
}

.bo-hero-copy h1 {
  max-width: 100%;
  margin-top: 24px;
  color: var(--ink);
  font-size:  clamp(2.55rem, 4.25vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.bo-hero-copy p {
  max-width: 100%;
  margin-top: 24px;
  color: #3d434b;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 550;
  line-height: 1.62;
}

.bo-hero-actions,
.bo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.bo-ready-card,
.bo-table-card,
.bo-requirement-card,
.bo-time-card,
.bo-cta-card,
.bo-flow {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(0,165,223,.24), rgba(229,231,235,.70), rgba(249,56,34,.18)) border-box;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(12, 12, 12, .07);
}

.bo-ready-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.bo-ready-card::before,
.bo-cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.bo-ready-top span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #047857;
  background: rgba(34,197,94,.12);
  font-size: 12px;
  font-weight: 800;
}

.bo-ready-top strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.bo-ready-card ul,
.bo-final-checklist ul,
.bo-requirement-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.bo-ready-card li,
.bo-final-checklist li {
  position: relative;
  padding-left: 30px;
  color: #47515f;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.bo-ready-card li::before,
.bo-final-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.bo-ready-card a,
.bo-flow-step a,
.bo-mail-text a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bo-section-grid {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.bo-section-grid.reverse {
  grid-template-columns: minmax(280px, .44fr) minmax(0, 1fr);
}

.bo-section-intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.bo-section-intro h2,
.bo-cta-copy h2 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.048em;
}

.bo-section-intro p,
.bo-cta-copy p,
.bo-expect-note {
  margin-top: 18px;
  color: var(--bo-muted);
  font-size: 16px;
  line-height: 1.72;
}

.bo-flow {
  padding: 8px;
}

.bo-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.bo-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 51px;
  top: 78px;
  bottom: -10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0,165,223,.42), rgba(249,56,34,.22));
}

.bo-flow-step:hover {
  background: linear-gradient(135deg, rgba(0,165,223,.06), rgba(249,56,34,.04));
  box-shadow: inset 0 0 0 1px rgba(229,231,235,.8);
  transform: translateY(-3px);
}

.bo-flow-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(0,165,223,.18);
  font-weight: 800;
}

.bo-flow-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.bo-flow-step p {
  margin-top: 8px;
  color: #5c6674;
  font-size: 15px;
  line-height: 1.7;
}

.bo-requirement-grid,
.bo-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.bo-requirement-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
}

.bo-requirement-card::before,
.bo-time-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--blue);
}

.bo-requirement-card:nth-child(2)::before,
.bo-time-card:nth-child(2)::before { background: var(--red); }
.bo-requirement-card:nth-child(3)::before,
.bo-time-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue), var(--red)); }

.bo-requirement-card h3 {
  font-size: 24px;
  color: var(--ink);
}

.bo-requirement-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #EEF2F6;
  color: #354052;
  font-size: 15px;
  font-weight: 650;
}

.bo-requirement-card li b,
.bo-required {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #047857;
  background: rgba(34,197,94,.12);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.bo-requirement-card li em,
.bo-optional {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,165,223,.10);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.bo-requirement-card p {
  margin-top: 20px;
  color: #68717d;
  font-size: 15px;
  line-height: 1.68;
}

.bo-table-section,
.bo-turnaround-section {
  background: linear-gradient(180deg, #FFFFFF, #F7FBFD);
}

.bo-table-card {
  padding: clamp(14px, 2vw, 22px);
  overflow: hidden;
}

.bo-responsive-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bo-responsive-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border-spacing: 0;
}

.bo-responsive-table th,
.bo-responsive-table td {
  padding: 17px 18px;
  border-bottom: 1px solid #EEF2F6;
  text-align: left;
  vertical-align: top;
}

.bo-responsive-table th {
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.bo-responsive-table th:first-child { border-radius: 14px 0 0 14px; }
.bo-responsive-table th:last-child { border-radius: 0 14px 14px 0; }

.bo-responsive-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.bo-responsive-table td {
  color: #5c6674;
  font-size: 15px;
  line-height: 1.6;
}

.bo-table-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0,165,223,.13);
  border-radius: 16px;
  color: #596270;
  background: rgba(0,165,223,.06);
  font-size: 14px;
  line-height: 1.62;
}

.bo-time-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.bo-time-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.bo-time-card span {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.bo-time-card:nth-child(2) span { color: var(--red); }

.bo-time-card p {
  margin-top: 10px;
  color: #68717d;
  font-size: 15px;
  line-height: 1.65;
}

.bo-expect-note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(0,165,223,.12);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(12, 12, 12, .04);
}

.bo-cta-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(0,165,223,.13), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(249,56,34,.10), transparent 32%),
    linear-gradient(145deg, #F7FBFD, #FFFFFF);
}

.bo-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 34px;
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
}

.bo-cta-copy h2 {
  max-width: 760px;
}

.bo-mail-text {
  font-size: 14px !important;
}

.bo-final-checklist {
  align-self: stretch;
  padding: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(247,251,253,.94));
}

.bo-final-checklist ul {
  margin-top: 0;
}

@keyframes boAccentMove {
  to { background-position: 240% 0; }
}

@media (max-width: 1100px) {
  .bo-hero-grid,
  .bo-section-grid,
  .bo-section-grid.reverse,
  .bo-cta-card {
    grid-template-columns: 1fr;
  }

  .bo-section-intro {
    position: static;
  }

  .bo-ready-card {
    max-width: 760px;
  }
}

@media (max-width: 991.98px) {
  .bo-requirement-grid,
  .bo-time-grid {
    grid-template-columns: 1fr;
  }

  .bo-requirement-card,
  .bo-time-card {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .brand-onboarding-page .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .bo-hero {
    padding: 52px 0;
  }

  .bo-hero-copy {
    text-align: left;
  }

  .bo-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .bo-hero-copy p {
    font-size: 16px;
  }

  .bo-hero-actions,
  .bo-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bo-hero-actions .btn,
  .bo-cta-actions .btn {
    width: 100%;
  }

  .bo-ready-card,
  .bo-table-card,
  .bo-requirement-card,
  .bo-time-card,
  .bo-cta-card,
  .bo-flow {
    border-radius: 20px;
  }

  .bo-ready-card {
    padding: 22px;
  }

  .bo-ready-top strong {
    font-size: 24px;
  }

  .bo-flow {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .bo-flow-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0;
  }

  .bo-flow-step:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .bo-flow-step:not(:last-child)::after {
    left: 23px;
    top: 66px;
    bottom: -14px;
  }

  .bo-flow-step > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .bo-flow-step h3 {
    font-size: 18px;
  }

  .bo-flow-step p,
  .bo-responsive-table td,
  .bo-requirement-card p,
  .bo-time-card p {
    font-size: 14px;
  }

  .bo-section-intro h2,
  .bo-cta-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .bo-responsive-table table {
    min-width: 720px;
  }

  .bo-cta-card {
    padding: 22px;
  }

  .bo-final-checklist {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .brand-onboarding-page .container {
    width: min(calc(100% - 18px), var(--container));
  }

  .bo-requirement-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bo-hero::before {
    animation: none !important;
  }
}
/* =========================================================
   FORCE RIGHT JOURNEY CARD LEFT ALIGN
   Paste at bottom of CSS file
   ========================================================= */

.brand-journey-card {
  text-align: left !important;
  top: calc(var(--header-h, 90px) + 24px);
  padding: 34px 30px;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(145deg, rgba(0,165,223,.26), rgba(229,231,235,.85), rgba(249,56,34,.22)) border-box;
  box-shadow: 0 24px 64px rgba(12, 12, 12, 0.08);
}

.brand-journey-card h3,
.brand-journey-card > p {
  text-align: left !important;
}

/* Remove old line effects */
.brand-journey-card .brand-journey-item::before,
.brand-journey-card .brand-journey-item::after,
.journey-side-card .journey-step::before,
.journey-side-card .journey-step::after {
  display: none !important;
  content: none !important;
}

/* Main item layout */
.brand-journey-card .brand-journey-item {
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: start !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 22px 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  text-align: left !important;
}

/* Icon left */
.brand-journey-card .brand-journey-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0, 165, 223, 0.18) !important;
  background: rgb(152 152 152 / 10%) !important;
  color: #0c0c0c !important;
  font-size: 22px !important;
  line-height: 1 !important;
  text-align: center !important;
}

/* Text box right side */
.brand-journey-card .brand-journey-copy {
  grid-column: 2 !important;
  justify-self: start !important;
  align-self: center !important;
  width: 100% !important;
  min-width: 0 !important;
  text-align: left !important;
}

/* Title left */
.brand-journey-card .brand-journey-copy strong {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

/* Subtitle left */
.brand-journey-card .brand-journey-copy small {
  display: block !important;
  width: 100% !important;
  margin-top: 6px !important;
  color: #596270 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

/* Last item border remove */
.brand-journey-card .brand-journey-item:last-child {
  border-bottom: 0 !important;
}

.brand-verified-box {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.09);
  color: #047857;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}
/* Mobile */
@media (max-width: 575px) {
  .brand-journey-card .brand-journey-item {
    grid-template-columns: 50px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 18px 0 !important;
  }

  .brand-journey-card .brand-journey-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    font-size: 20px !important;
  }

  .brand-journey-card .brand-journey-copy strong {
    font-size: 15px !important;
  }

  .brand-journey-card .brand-journey-copy small {
    font-size: 13px !important;
  }
}