@import url("./flettons-brand.css");

:root {
  --navy: #08172b;
  --navy-strong: #071225;
  --navy-soft: #102947;
  --pink: var(--fl-pink);
  --pink-strong: var(--fl-pink);
  --pink-soft: rgba(255, 48, 136, 0.08);
  --green: #0bb26d;
  --text: #12213e;
  --muted: #63718a;
  --line: #e7ebf2;
  --line-strong: #d7deea;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --shadow-soft: 0 18px 48px rgba(11, 27, 52, 0.06);
  --shadow-strong: 0 32px 82px rgba(8, 22, 45, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-primary: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 48, 136, 0.06), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 42%, #f4f6fb 100%);
  font-family: var(--font-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.15rem;
}

:focus-visible {
  outline: 2px solid rgba(255, 48, 136, 0.7);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 23, 43, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 92px;
}

.brand img {
  width: 168px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #ffffff;
}

.site-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
}

.nav-caret {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.35rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 50px;
  padding: 0 1.15rem;
  font-size: 0.95rem;
}

.btn-wide {
  width: 100%;
  min-height: 52px;
}

.btn-primary {
  background: var(--fl-gradient-button-primary);
  color: #ffffff;
  box-shadow: var(--fl-button-shadow);
}

.btn-primary:hover {
  box-shadow: var(--fl-button-shadow-hover);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.btn-secondary {
  border: 1px solid #b7c3d6;
  background: #ffffff;
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: rgba(255, 48, 136, 0.3);
  color: var(--pink-strong);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.hero {
  padding: 2rem 0 2.75rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.crumb-icon {
  width: 16px;
  height: 16px;
}

.crumb-sep {
  color: #9aa6bc;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.included-strip h2,
.trust-band h2 {
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 7vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.42rem;
  color: var(--pink-strong);
}

.hero-text {
  max-width: 32rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero-benefit {
  display: grid;
  gap: 0.65rem;
}

.hero-benefit strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.hero-benefit span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 48, 136, 0.08), rgba(255, 48, 136, 0.03));
}

.hero-benefit-icon img,
.hero-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.hero-benefit-icon svg {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stage-wrap {
  position: relative;
}

.hero-stage {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #dad7d2 0%, #eae8e5 48%, #d4d1cc 100%);
  box-shadow: var(--shadow-strong);
}

.stage-plant {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 104px;
  height: 130px;
  background:
    radial-gradient(circle at 35% 25%, rgba(39, 95, 52, 0.88), rgba(39, 95, 52, 0.12) 56%),
    radial-gradient(circle at 70% 35%, rgba(45, 106, 58, 0.78), rgba(45, 106, 58, 0.12) 55%),
    radial-gradient(circle at 45% 70%, rgba(255, 255, 255, 0.24), transparent 52%);
  filter: blur(1px);
}

.stage-pot {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 62px;
  height: 72px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(180deg, #203041 0%, #111d30 100%);
}

.stage-desk {
  position: absolute;
  right: -1rem;
  bottom: -0.5rem;
  left: -1rem;
  height: 170px;
  background: linear-gradient(180deg, #bb8b62 0%, #9f6f49 100%);
}

.stage-clipboard {
  position: absolute;
  left: 2.2rem;
  bottom: 1.8rem;
  width: 220px;
  height: 128px;
  border-radius: 18px;
  border: 6px solid #394350;
  background:
    linear-gradient(180deg, #fbfcfd 0%, #e7ecf3 100%);
  transform: rotate(-7deg);
}

.stage-clipboard::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 72px;
  height: 30px;
  border-radius: 12px;
  background: #2a313c;
  transform: translateX(-50%);
}

.stage-house {
  position: absolute;
  left: 10.7rem;
  bottom: 2.3rem;
  width: 178px;
  height: 164px;
}

.stage-house-roof {
  position: absolute;
  top: 0;
  left: 18px;
  width: 142px;
  height: 70px;
  background: linear-gradient(135deg, #52606e 0%, #313e4f 100%);
  clip-path: polygon(50% 0, 100% 75%, 86% 75%, 86% 100%, 14% 100%, 14% 75%, 0 75%);
}

.stage-house-body {
  position: absolute;
  bottom: 0;
  left: 28px;
  width: 122px;
  height: 108px;
  padding: 12px 12px 0;
  border-radius: 8px 8px 12px 12px;
  background: linear-gradient(180deg, #ede9e2 0%, #d8d4cc 100%);
  box-shadow: 0 16px 30px rgba(65, 44, 27, 0.22);
}

.stage-house-upper,
.stage-house-lower {
  display: flex;
  justify-content: space-between;
}

.stage-house-upper span,
.stage-house-lower span {
  display: block;
  width: 24px;
  height: 18px;
  border: 3px solid #334257;
  background: #cfdced;
}

.stage-house-lower {
  margin-top: 10px;
}

.stage-house-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 26px;
  height: 40px;
  border-radius: 6px 6px 0 0;
  background: #725439;
  transform: translateX(-50%);
}

.stage-pen {
  position: absolute;
  left: 18.5rem;
  bottom: 3rem;
  width: 110px;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #d8d0c4 0%, #1e232a 40%, #1e232a 72%, #f0efee 72%, #f0efee 100%);
  transform: rotate(-16deg);
}

.stage-pen::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 14px solid #1e232a;
}

.stage-book {
  position: absolute;
  right: 2.7rem;
  bottom: 1rem;
  width: 138px;
  height: 78px;
  border-radius: 4px 4px 10px 10px;
  background: linear-gradient(180deg, #102542 0%, #071529 100%);
  transform: perspective(340px) rotateX(32deg) rotate(-6deg);
}

.stage-book::before {
  content: "Flettons";
  position: absolute;
  top: 28px;
  right: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stage-mug {
  position: absolute;
  right: 1.4rem;
  bottom: 1.6rem;
  width: 102px;
  height: 144px;
  padding: 2.9rem 0.8rem 0;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(180deg, #11233f 0%, #08162d 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(8, 23, 43, 0.26);
}

.stage-mug-handle {
  position: absolute;
  top: 30px;
  right: -16px;
  width: 38px;
  height: 56px;
  border: 7px solid #11233f;
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.stage-mug strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.stage-mug span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  line-height: 1.4;
}

.hero-quote-card {
  position: absolute;
  top: 2.6rem;
  right: 1rem;
  width: min(100%, 256px);
  padding: 1.4rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #0b2140 0%, #07192f 100%);
  box-shadow: 0 24px 54px rgba(7, 25, 47, 0.3);
  color: #ffffff;
}

.hero-quote-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-quote-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(92%) saturate(2524%) hue-rotate(314deg) brightness(105%) contrast(104%);
}

.hero-quote-card h2 {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.08;
}

.hero-quote-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 1rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.included-strip h2,
.trust-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.section-heading p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-section {
  padding-top: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 48px 38px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 23, 43, 0.055);
}

.price-card--featured {
  transform: none;
  border-color: rgba(255, 48, 136, 0.32);
  box-shadow: 0 22px 42px rgba(8, 23, 43, 0.08);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.survey-icon {
  display: none;
}

.survey-icon img {
  width: 38px;
  height: 38px;
}

.price-card__level {
  margin: 0 0 38px;
  color: var(--pink);
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__level::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 13px;
  border-radius: 999px;
  background: var(--pink);
}

.price-card h3 {
  font-size: clamp(2.05rem, 2.55vw, 2.7rem);
  font-weight: 900;
  line-height: 1.02;
  text-align: left;
  letter-spacing: -0.05em;
}

.best-for {
  margin: 16px 0 0;
  max-width: none;
  color: #243452;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.42;
  text-align: left;
}

.price-card-copy {
  max-width: none;
  min-height: 110px;
  margin: 24px 0 38px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
  text-align: left;
}

.price-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

.price-value {
  margin: 8px 0 26px;
  color: var(--navy);
  font-size: clamp(3.3rem, 5.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  text-align: left;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0 0 32px;
  padding-left: 0;
  list-style: none;
  border-top: 1px solid rgba(8, 23, 43, 0.1);
  color: #243452;
  font-size: 0.97rem;
}

.price-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(8, 23, 43, 0.1);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
}

.price-card .btn {
  margin-top: auto;
  min-height: 66px;
  border-radius: 10px;
  font-size: 1.05rem;
}

.btn-dark {
  border: 1px solid var(--navy);
  background: var(--fl-header-gradient);
  color: #ffffff;
}

.btn-dark:hover {
  box-shadow: 0 16px 34px rgba(8, 23, 43, 0.16);
}

.included-section {
  padding-top: 1rem;
}

.included-strip {
  padding: clamp(1.8rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.4rem) 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(11, 27, 52, 0.04);
}

.included-strip h2 {
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.included-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
  padding: clamp(1.45rem, 2.5vw, 2rem) clamp(0.9rem, 1.5vw, 1.2rem);
  text-align: center;
}

.included-item + .included-item {
  border-left: 1px solid var(--line);
}

.included-item strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 800;
  line-height: 1.2;
}

.included-item span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.included-icon {
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  margin-bottom: 0.45rem;
  border: var(--fl-icon-ring-border);
  border-radius: 50%;
  background: var(--fl-white, #ffffff);
  box-shadow: var(--fl-icon-shadow);
  transition: var(--fl-transition-icon);
}

.included-item:hover .included-icon {
  transform: translateY(-3px);
  box-shadow: var(--fl-icon-shadow-hover);
}

.included-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.factors-section {
  padding-top: 1.2rem;
}

.factor-panel {
  max-width: 980px;
  margin: 1.5rem auto 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 23, 43, 0.05);
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factor-list li {
  position: relative;
  padding-left: 32px;
}

.factor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 22px;
  height: 22px;
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
}

.factor-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
}

.factor-list span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.cta-band-section {
  padding-top: 1.2rem;
}

.cta-band-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(36px, 5vw, 48px) clamp(22px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background: var(--fl-header-gradient);
  box-shadow: 0 18px 40px rgba(8, 23, 43, 0.14);
  color: #ffffff;
}

.cta-band-inner h2 {
  margin: 0 0 10px;
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.cta-band-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cta-points li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background: var(--fl-bullet-on-dark-bg) center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cta-band-inner .btn-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  background: #ffffff;
  color: var(--navy);
}

.trust-band-section {
  padding-top: 1.2rem;
  padding-bottom: 1.4rem;
}

.trust-band {
  padding: 1.6rem 1.6rem 1.2rem;
  border-radius: 18px;
  background: var(--fl-header-gradient);
  color: #ffffff;
}

.trust-band h2 {
  color: #ffffff;
  text-align: center;
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.3rem;
}

.trust-band-item {
  padding: 1rem 1.1rem;
}

.trust-band-item + .trust-band-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-band-item strong {
  display: block;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
}

.trust-band-item p,
.trust-band-item span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.trustpilot-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.trustpilot-boxes {
  display: inline-flex;
  gap: 0.22rem;
}

.trustpilot-boxes span {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  margin-top: 0;
  background: var(--pink-strong);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.trustpilot-boxes span::before {
  content: "★";
}

.contact-bar-section {
  padding-bottom: 2.4rem;
}

.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding-top: 0.6rem;
}

.contact-bar > a,
.contact-bar > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-width: 0;
  min-height: 40px;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
}

.contact-bar > a + a,
.contact-bar > a + span,
.contact-bar > span + span {
  border-left: 1px solid var(--line-strong);
}

.contact-bar > a > span,
.contact-bar > span > span {
  min-width: 0;
}

.contact-bar__icon {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
  flex: 0 0 auto;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-bar__icon .accent {
  stroke: var(--pink-strong);
}

.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--fl-header-gradient);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-col h4 {
  margin-bottom: 0.95rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand-col p {
  max-width: 18rem;
  margin-top: 1rem;
}

.footer-brand img {
  width: 168px;
}

.footer-list {
  display: grid;
  gap: 0.7rem;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

@media (max-width: 1220px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    max-width: 760px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

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

  .included-item:nth-child(4) {
    border-left: 0;
  }

  .trust-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .trust-band-item:nth-child(3) {
    border-left: 0;
  }

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

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    padding: 1rem 0 1.25rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-quote-card {
    right: 0.85rem;
  }

  .included-grid,
  .contact-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 0.35rem;
  }

  .included-icon img {
    width: 66px;
    height: 66px;
  }

  .included-item:nth-child(4),
  .contact-bar > :nth-child(3) {
    border-left: 0;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

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

  .brand img,
  .footer-brand img {
    width: 150px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-actions {
    align-items: stretch;
  }

  .header-actions .btn {
    width: 100%;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stage {
    min-height: 410px;
  }

  .stage-house {
    left: 8rem;
    transform: scale(0.88);
    transform-origin: left bottom;
  }

  .stage-clipboard {
    left: 1.1rem;
    transform: rotate(-7deg) scale(0.92);
    transform-origin: left bottom;
  }

  .stage-mug {
    right: 1rem;
    transform: scale(0.9);
    transform-origin: right bottom;
  }

  .stage-book {
    right: 1.7rem;
  }

  .hero-quote-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .included-grid,
  .factor-list,
  .trust-band-grid,
  .contact-bar {
    grid-template-columns: 1fr;
  }

  .included-item {
    padding: 1.5rem 1.2rem;
  }

  .included-item + .included-item,
  .trust-band-item + .trust-band-item,
  .contact-bar > a + a,
  .contact-bar > a + span,
  .contact-bar > span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-band-item + .trust-band-item {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .cta-band-inner {
    padding: 2rem 1.35rem;
  }

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

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .hero-stage {
    min-height: 360px;
  }

  .stage-plant {
    transform: scale(0.82);
    transform-origin: left top;
  }

  .stage-house {
    left: 5.8rem;
    bottom: 1.6rem;
    transform: scale(0.74);
  }

  .stage-clipboard {
    left: 0.3rem;
    bottom: 1rem;
    transform: rotate(-7deg) scale(0.74);
  }

  .stage-pen {
    left: 12rem;
    bottom: 2rem;
    transform: rotate(-16deg) scale(0.8);
  }

  .stage-book,
  .stage-mug {
    transform: scale(0.74);
  }

  .stage-book {
    right: 0.2rem;
    bottom: 0.4rem;
  }

  .stage-mug {
    right: 0;
    bottom: 1rem;
  }

  .price-card {
    padding-inline: 1.15rem;
  }
}
