:root {
  --bg: #ffffff;
  --bg-alt: #faf3ec;
  --surface: #ffffff;
  --surface-soft: #fdf6f0;
  --border-subtle: rgba(17, 24, 39, 0.08);
  --text: #221b2b;
  --muted: #746c7c;
  --accent: #b8325d;
  --accent-soft: rgba(184, 50, 93, 0.18);
  --danger: #e76f51;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

:root[data-theme="dark"] {
  --bg: #080309;
  --bg-alt: #140814;
  --surface: #1c0e16;
  --surface-soft: #25111c;
  --border-subtle: rgba(248, 250, 252, 0.08);
  --text: #fef9fb;
  --muted: #f0cfd8;
  --accent: #f0b4a3;
  --accent-soft: rgba(240, 180, 163, 0.22);
  --danger: #fb7185;
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #fdf2e9 0, transparent 55%),
    radial-gradient(circle at bottom right, #fce7f3 0, transparent 55%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, #3b1020 0, transparent 55%),
    radial-gradient(circle at bottom right, #2a0715 0, transparent 65%),
    var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Layout */

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

main {
  padding-top: 88px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

[data-theme="dark"] .site-header {
  background: rgba(8, 3, 9, 0.96);
  border-bottom-color: rgba(248, 250, 252, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 20% 0, #ffe8e3, #f4b3a6 45%, #b8325d);
  color: #231f20;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Poppins", "DM Sans", system-ui, -apple-system, "Segoe UI",
    sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-list a {
  position: relative;
  padding-block: 0.1rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6b17a, #ff7aa2);
  transition: width 0.22s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(184, 50, 93, 0.6);
  background: radial-gradient(
    circle at 0 0,
    rgba(184, 50, 93, 0.16),
    transparent 65%
  );
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease, transform 0.14s ease;
}

.theme-toggle-knob {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #f4b3a6 45%, #b8325d);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06),
    0 8px 18px rgba(148, 114, 80, 0.3);
}

.theme-toggle-text {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.theme-toggle.is-dark {
  background-color: rgba(24, 9, 20, 0.95);
  color: var(--muted);
  border-color: rgba(240, 180, 163, 0.8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .theme-toggle-knob {
  background: radial-gradient(circle at 30% 20%, #fef3f5, #f0b4a3 40%, #7f1239);
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.7);
}

.nav-toggle {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.35rem;
  border-radius: 999px;
  display: none;
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.nav-toggle-icon {
  font-size: 2rem;
  color: var(--text);
  transition: opacity 0.22s, transform 0.22s, color 0.18s;
  opacity: 1;
  transform: scale(1);
}

.nav-toggle-icon.is-animating {
  opacity: 0;
  transform: scale(0.7);
}

/* Hero */

.hero {
  padding-block: 4.5rem 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: "Poppins", "DM Sans", system-ui, -apple-system, "Segoe UI",
    sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.hero-text {
  margin-top: 1.15rem;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f4c1b5, #b8325d);
  color: #231f20;
  box-shadow: 0 14px 32px rgba(148, 114, 80, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(148, 114, 80, 0.35);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  background-image: radial-gradient(
    circle at 0 0,
    rgba(184, 50, 93, 0.12),
    transparent
  );
}

.btn.ghost:hover {
  border-color: rgba(246, 177, 122, 0.6);
}

.btn.full-width {
  width: 100%;
}

.hero-metadata {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.1rem;
  font-size: 0.8rem;
}

.hero-metadata dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-metadata dd {
  margin-top: 0.2rem;
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  border-radius: 22px;
  padding: 0.6rem;
  background:
    radial-gradient(circle at 0 0, rgba(184, 50, 93, 0.18), transparent 55%),
    linear-gradient(145deg, #ffffff, #fdf2e9);
  box-shadow: var(--shadow-soft);
}

.hero-image-frame img {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #fdf2e9;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.hero-stat {
  position: absolute;
  right: 1.2rem;
  bottom: 1.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(184, 50, 93, 0.35);
  box-shadow: 0 12px 30px rgba(148, 114, 80, 0.28);
}

.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stat-value {
  display: block;
  margin-top: 0.1rem;
  font-weight: 600;
}

.hero-note {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--accent-soft);
  border-radius: 10px;
  background: #fff7f0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Sections */

.section {
  padding-block: 3.8rem;
}

.section-alt {
  background:
    radial-gradient(circle at 0 0, rgba(184, 50, 93, 0.06), transparent 55%),
    linear-gradient(to bottom, #fff7f0, #ffffff);
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  font-family: "Poppins", "DM Sans", system-ui, -apple-system, "Segoe UI",
    sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  margin-bottom: 0.6rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 0.96rem;
}

.grid {
  display: grid;
  gap: 1.7rem;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 0 0,
    rgba(214, 155, 111, 0.14),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-card ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-card li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent);
}

.service-card.highlight {
  border-color: rgba(184, 50, 93, 0.6);
  box-shadow: 0 22px 45px rgba(184, 50, 93, 0.16);
}

.service-note {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--accent);
}

/* Process */

.process-steps {
  list-style: none;
  margin-top: 0.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, #ffffff, #fdf6f0);
  box-shadow: var(--shadow-soft);
}

.process-steps li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.process-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.1rem 1.3rem;
  align-items: flex-start;
}

.step-number {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.9rem;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.step-body h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA */

.section-cta {
  padding-block: 3.6rem;
}

.cta-inner {
  border-radius: 24px;
  padding: 2.1rem 2rem;
  background: radial-gradient(circle at 0 0, #f4c1b5, #7f1239);
  color: #231f20;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65);
}

.cta-inner h2 {
  font-family: "Poppins", "DM Sans", system-ui, -apple-system, "Segoe UI",
    sans-serif;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

h1,
h2,
h3 {
  font-family: "Poppins", "DM Sans", system-ui, -apple-system, "Segoe UI",
    sans-serif;
}

.cta-inner p {
  font-size: 0.95rem;
  max-width: 28rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section-cta .btn.primary {
  background: #231f20;
  color: #f9fafb;
  box-shadow: 0 18px 32px rgba(55, 65, 81, 0.45);
}

.section-cta .btn.ghost {
  background: transparent;
  border-color: rgba(35, 31, 32, 0.22);
  color: #231f20;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 23rem;
}

.contact-details {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.contact-details span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(246, 177, 122, 0.5);
  text-decoration-thickness: 1px;
}

.contact-form {
  padding: 1.7rem 1.6rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.field-group {
  margin-bottom: 1rem;
}

.field-group.inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(184, 50, 93, 0.22);
  background-color: #fdf6f0;
  color: var(--text);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(116, 108, 124, 0.7);
}

.field-group input:focus-visible,
.field-group textarea:focus-visible {
  border-color: rgba(184, 50, 93, 0.9);
  box-shadow: 0 0 0 1px rgba(184, 50, 93, 0.24);
  background-color: #fffaf5;
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-note.highlight {
  color: var(--accent);
  font-weight: 500;
}

#goal {
  resize: both; /* default, but can set max limits */
  max-width: 100%;   /* prevent exceeding form width */
  max-height: 200px; /* prevent exceeding layout */
  min-width: 100%;   /* optional: keep it full width */
  min-height: 80px;  
}

/* Footer */

.site-footer {
  padding-block: 1.8rem 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background:
    radial-gradient(circle at top, rgba(184, 50, 93, 0.09), transparent 55%),
    #fff7f0;
}

[data-theme="dark"] .hero-image-frame {
  background:
    radial-gradient(circle at 0 0, rgba(240, 180, 163, 0.22), transparent 55%),
    linear-gradient(145deg, #1c0e16, #2a0715);
}

[data-theme="dark"] .hero-image-frame img {
  border-color: rgba(248, 250, 252, 0.06);
  background-color: #1e0a14;
}

[data-theme="dark"] .hero-stat {
  background: #1c0e16;
  border-color: rgba(240, 180, 163, 0.8);
}

[data-theme="dark"] .hero-note {
  background: rgba(24, 8, 19, 0.95);
}

[data-theme="dark"] .section-alt {
  background:
    radial-gradient(circle at 0 0, rgba(240, 180, 163, 0.12), transparent 55%),
    linear-gradient(to bottom, #150711, #050109);
}

[data-theme="dark"] .process-steps {
  background: linear-gradient(145deg, #190813, #050109);
}

[data-theme="dark"] .contact-form {
  background: #150711;
}

[data-theme="dark"] .field-group input,
[data-theme="dark"] .field-group textarea {
  border-color: rgba(240, 180, 163, 0.4);
  background-color: #1b0913;
}

[data-theme="dark"] .field-group input:focus-visible,
[data-theme="dark"] .field-group textarea:focus-visible {
  border-color: rgba(240, 180, 163, 0.9);
  box-shadow: 0 0 0 1px rgba(240, 180, 163, 0.3);
  background-color: #210b17;
}

[data-theme="dark"] .cta-inner {
  background: radial-gradient(circle at 0 0, #7f1239, #330815);
  color: #fef2f7;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.85);
}

[data-theme="dark"] .section-cta .btn.primary {
  background: #fef3f5;
  color: #1c0e16;
}

[data-theme="dark"] .section-cta .btn.ghost {
  border-color: rgba(254, 243, 245, 0.6);
  color: #fef3f5;
}

[data-theme="dark"] .site-footer {
  border-top-color: rgba(248, 250, 252, 0.08);
  background:
    radial-gradient(circle at top, rgba(240, 180, 163, 0.18), transparent 55%),
    #050109;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.footer-brand .brand-mark {
  width: 1.9rem;
  height: 1.9rem;
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  color: var(--muted);
}

/* Reveal animation */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

[data-reveal="visible"] {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list .nav-cta {
    width: 100%;
    display: block;
    border-radius: var(--radius-pill);
    margin-top: 0.5rem;
    padding: 0.7rem 1.1rem;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 1000px) {
  .site-header {
    padding-block: 0.8rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    position: absolute;
    inset-inline: 1.5rem;
    top: calc(100% + 12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 0.9rem 0.75rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 40px rgba(148, 114, 80, 0.22);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  [data-theme="dark"] .nav-list {
    background: rgba(8, 3, 9, 0.98);
    border-color: rgba(248, 250, 252, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  }
  .nav-list li {
    padding: 0.25rem 0.15rem;
  }
  .nav-list li:last-child {
    margin-top: 0.25rem;
  }
  .nav-list.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }
  .nav-list .nav-cta {
    width: 100%;
    display: block;
    border-radius: var(--radius-pill);
    margin-top: 0.5rem;
    padding: 0.7rem 1.1rem;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-block: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-block: 3.6rem 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metadata {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-4,
  .cards-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-steps li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cta-inner {
    padding: 1.6rem 1.4rem;
  }

  .field-group.inline {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 2rem, 520px);
  }

  main {
    padding-top: 78px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image-frame {
    padding: 0.45rem;
  }

  .hero-stat {
    right: 0.8rem;
    bottom: 0.9rem;
  }
}

