:root {
  --navy: #0b1f38;
  --navy-deep: #071426;
  --navy-soft: #1f344d;
  --sage: #809887;
  --sage-dark: #60786a;
  --sage-light: #dfe8e2;
  --sage-pale: #eef3f0;
  --white: #ffffff;
  --off-white: #f7f8f7;
  --surface: #f1f4f2;
  --text: #142237;
  --muted: #64707d;
  --border: #dbe3df;
  --shadow-sm: 0 10px 30px rgba(8, 25, 44, 0.08);
  --shadow-lg: 0 26px 70px rgba(8, 25, 44, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

ul {
  padding-left: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--navy);
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 6.4vw, 6.15rem);
}

h1 em {
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.5vw, 4.15rem);
}

h3 {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7, 20, 38, 0.14);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--navy-soft);
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.2);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(128, 152, 135, 0.55);
  outline-offset: 4px;
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.83rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 223, 0.85);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 54px;
  object-fit: cover;
  object-position: center;
}

.brand-copy,
.footer-brand span {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--navy);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
}

.brand-copy small,
.footer-brand small {
  margin-top: 4px;
  color: var(--sage-dark);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  color: var(--navy-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--sage);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  background: var(--sage-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  width: 19px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-nav nav {
  position: absolute;
  top: 58px;
  right: 0;
  display: grid;
  min-width: 240px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.mobile-nav nav a {
  padding: 12px 14px;
  color: var(--navy);
  border-radius: 10px;
  font-weight: 700;
}

.mobile-nav nav a:hover {
  background: var(--sage-pale);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  background:
    radial-gradient(circle at 85% 12%, rgba(128, 152, 135, 0.16), transparent 31%),
    linear-gradient(180deg, #fbfcfb 0%, #f4f7f5 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.78fr);
  gap: clamp(56px, 7vw, 104px);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-points svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}

.hero-card::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  content: "";
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(128, 152, 135, 0.15);
}

.task-list {
  display: grid;
  gap: 12px;
  padding-top: 20px;
}

.task-item {
  display: grid;
  align-items: center;
  padding: 15px;
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 16px;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.task-item:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateX(4px);
}

.task-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border-radius: 13px;
}

.task-icon svg,
.service-icon svg,
.audience-icon svg,
.contact-method-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.task-item strong,
.task-item small {
  display: block;
}

.task-item strong {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.9rem;
}

.task-item small {
  color: var(--muted);
  font-size: 0.73rem;
}

.task-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.floating-note-one {
  right: -22px;
  bottom: 55px;
  display: flex;
  flex-direction: column;
}

.floating-note-one strong {
  color: var(--navy);
  font-size: 0.81rem;
}

.floating-note-one span {
  color: var(--muted);
  font-size: 0.69rem;
}

.floating-note-two {
  top: -20px;
  right: 30px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(96, 120, 106, 0.24);
  border-radius: 50%;
}

.hero-decoration-one {
  top: -190px;
  right: -140px;
  width: 520px;
  height: 520px;
}

.hero-decoration-two {
  bottom: -260px;
  left: -200px;
  width: 520px;
  height: 520px;
}

/* Sections */
.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  grid-column: span 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: rgba(128, 152, 135, 0.65);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card-featured h3,
.service-card-featured .service-number {
  color: var(--white);
}

.service-card-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.service-card-featured li::before {
  background: var(--sage);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #a1aab1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border-radius: 15px;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: 1.16rem;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.service-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  content: "";
}

/* Audiences */
.audiences {
  overflow: hidden;
  background: var(--navy);
}

.section-heading-light h2,
.section-heading-light > p:last-child {
  color: var(--white);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.audiences .eyebrow {
  color: #b6c7bc;
}

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

.audience-card {
  padding: clamp(30px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
}

.audience-card-accent {
  background: var(--sage-light);
}

.audience-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(11, 31, 56, 0.12);
}

.audience-card-header > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
}

.audience-icon {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border-radius: 18px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-bottom: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: var(--navy-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

/* Delegation section */
.delegate-section {
  background: var(--surface);
}

.delegate-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 108px);
}

.delegate-image-wrap {
  position: relative;
}

.delegate-image-wrap::before {
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: 0;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  content: "";
}

.delegate-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  right: -22px;
  bottom: 36px;
  z-index: 2;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
}

.delegate-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
}

.benefit-list {
  display: grid;
  gap: 17px;
  margin: 32px 0;
}

.benefit-list > div {
  display: grid;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.benefit-list > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  border-bottom: 1px solid var(--sage);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Process */
.process {
  background: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-grid::before {
  position: absolute;
  top: 35px;
  right: 16.5%;
  left: 16.5%;
  z-index: 0;
  height: 1px;
  background: var(--border);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  text-align: center;
}

.process-step > span {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--border);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.35rem;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-section .eyebrow {
  color: #aec0b4;
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.contact-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.contact-method {
  display: grid;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-method + .contact-method {
  margin-top: 10px;
}

.contact-method:hover {
  background: var(--sage-pale);
  transform: translateY(-2px);
}

.contact-method-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: 14px;
}

.contact-method small,
.contact-method strong {
  display: block;
}

.contact-method small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
}

.contact-method strong {
  color: var(--navy);
  font-size: 0.9rem;
  word-break: break-word;
}

.contact-arrow {
  color: var(--sage-dark);
  font-size: 1.15rem;
}

.contact-note {
  margin: 14px 4px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  text-align: center;
}

.contact-decoration {
  position: absolute;
  top: -330px;
  right: -280px;
  width: 730px;
  height: 730px;
  border: 1px solid rgba(128, 152, 135, 0.25);
  border-radius: 50%;
}

.contact-decoration::after {
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(128, 152, 135, 0.14);
  border-radius: 50%;
  content: "";
}

/* Footer */
.site-footer {
  padding: 38px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 44px;
  height: 50px;
  object-fit: cover;
}

.footer-brand strong {
  font-size: 1.06rem;
}

.footer-brand small {
  font-size: 0.55rem;
}

.footer-meta {
  max-width: 610px;
  text-align: right;
}

.footer-meta p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1060px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav > a:not(.button) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
    gap: 54px;
  }

  .hero-visual {
    min-height: 560px;
  }
}

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

  .hero {
    padding: 72px 0 92px;
  }

  .hero-grid,
  .delegate-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text,
  .hero-points {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

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

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .delegate-grid {
    gap: 70px;
  }

  .delegate-image-wrap {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy > p:last-child {
    margin-inline: auto;
  }

  .contact-card {
    width: min(100%, 600px);
    margin-inline: auto;
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .brand img {
    width: 42px;
    height: 47px;
  }

  .brand-copy strong {
    font-size: 1.04rem;
  }

  .brand-copy small {
    max-width: 170px;
    font-size: 0.51rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(2.75rem, 13.5vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    justify-content: start;
    text-align: left;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-card {
    padding: 17px;
    border-radius: 24px;
    transform: none;
  }

  .hero-card::before {
    inset: -10px 10px 10px -10px;
    border-radius: 24px;
  }

  .task-item {
    padding: 12px;
    grid-template-columns: 40px 1fr 25px;
    gap: 10px;
  }

  .task-icon {
    width: 40px;
    height: 40px;
  }

  .task-item strong {
    font-size: 0.82rem;
  }

  .task-item small {
    font-size: 0.67rem;
  }

  .floating-note-one {
    position: static;
    width: max-content;
    max-width: 100%;
    margin: 24px auto 0;
  }

  .floating-note-two {
    display: none;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .services-grid,
  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    padding: 26px;
  }

  .audience-card {
    padding: 28px;
  }

  .audience-card-header {
    align-items: flex-start;
  }

  .audience-icon {
    width: 52px;
    height: 52px;
  }

  .delegate-image-wrap::before {
    inset: 14px -10px -14px 10px;
  }

  .image-badge {
    right: 12px;
    bottom: 18px;
  }

  .process-grid {
    gap: 42px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 0 10px;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-card {
    padding: 12px;
  }

  .contact-method {
    padding: 14px;
    grid-template-columns: 42px 1fr auto;
  }

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

  .contact-method strong {
    font-size: 0.78rem;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .task-check {
    width: 23px;
    height: 23px;
  }

  .contact-method {
    grid-template-columns: 40px 1fr;
  }

  .contact-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
