/* Clean, modern styles for GoGetly landing */
:root {
  --brand: #0066ff;
  --accent: #ffb703;
  --muted: #6b7280;
  --bg: #ffffff;
  --header-h: 72px;
  --footer-h: 64px;
  --max-width: 1100px;
}

/* Reset and base */
* {
  box-sizing: border-box;
}
html,
body,
#root {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #111;
  background: var(--bg);
}

a {
  color: inherit;
}

/* Header */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid rgba(2, 8, 20, 0.04);
}
.header .brand {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.header .email {
  font-weight: 600;
  color: var(--muted);
}

/* Hero image: full width (natural aspect ratio) */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url("assets/1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Hero area uses the page background; info block overlays it */
.hero {
  min-height: calc(100vh - 136px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 48px 20px;
}
.info-band {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.info-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.info-copy {
  flex: 1;
}
.info-copy h1 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 52px;
  margin: 0 0 8px;
}
.info-copy .tag {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 12px;
}
.info-copy p {
  color: #222;
  line-height: 1.6;
  font-size: 20px;
}
.info-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.info-cta .pill {
  background: var(--accent);
  color: #061426;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* Footer */
.footer {
  height: var(--footer-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(2, 8, 20, 0.04);
  background: #fff;
  font-weight: 600;
  color: var(--muted);
}

/* Professional footer layout: left = contact, right = copyright */
.footer-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 8px 24px;
  box-sizing: border-box;
  position: static; /* allow .footer-right to be positioned relative to .footer (full width) */
}

/* center email horizontally in footer */
.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.footer-center a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

/* copyright anchored to the right */
.footer-right {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 720px) {
  .footer-inner {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-center {
    position: static;
    transform: none;
  }
  .footer-right {
    position: static;
    transform: none;
  }
}

@media (max-width: 900px) {
  .info-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-cta {
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
  }
  .info-copy h1 {
    font-size: 28px;
  }
}
/* Clean, modern styles for GoGetly landing */
:root {
  --brand: #0066ff;
  --accent: #ffb703;
  --muted: #6b7280;
  --bg: #ffffff;
  --header-h: 72px;
  --footer-h: 64px;
  --max-width: 1100px;
}

/* Reset and base */
* {
  box-sizing: border-box;
}
html,
body,
#root {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #111;
  background: var(--bg);
}

a {
  color: inherit;
}

/* Header */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid rgba(2, 8, 20, 0.04);
}
.header .brand {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.header .email {
  font-weight: 600;
  color: var(--muted);
}

/* Hero image: full width, natural aspect ratio */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Info block under the image */
.info-copy {
  flex: 1;
}
.info-copy h1 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 52px;
  margin: 0 0 8px;
}
.info-copy .tag {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 12px;
}
.info-copy p {
  color: #222;
  line-height: 1.6;
}
.info-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.info-cta .pill {
  background: var(--accent);
  color: #061426;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* white translucent box on top of photo for readable text (left side) */
.info-inner .info-copy {
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  border-radius: 10px;
}

/* Footer */
.footer {
  height: var(--footer-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(2, 8, 20, 0.04);
  background: #fff;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 900px) {
  .info-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-cta {
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
  }
  .info-copy h1 {
    font-size: 28px;
  }
}
:root {
  --brand: #0066ff;
  --accent: #00d1b2;
  --bg: #f7fbff;
  --header-h: 88px;
  --footer-h: 72px;
  --muted: #6b7280;
  --card: #ffffff;
}

:root {
  --brand: #0066ff;
  --accent: #00d1b2;
  --bg: #f7fbff;
  --header-h: 88px;
  --footer-h: 72px;
  --muted: #6b7280;
  --card: #ffffff;
  --max-content-width: 1100px;
}
.brand .logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #061426;
  font-weight: 800;
  font-size: 18px;
}
.nav a {
  margin-left: 20px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

/* Full-viewport hero */
.body-light {
  font-family: Inter, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--muted);
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #111;
}

.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: #fff;
}
.panel .copy {
  flex: 1;
}
.panel .art {
  width: 48%;
  display: flex;
  justify-content: center;
}
.site-header .brand {
  font-family: "Poppins", Inter, sans-serif;
  font-weight: 700;
  color: #061426;
  letter-spacing: 0.6px;
}
.site-header .contact {
  color: var(--muted);
  font-weight: 600;
}
.panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
  color: #0b1220;
}
.hero-img {
  width: 100%;
  display: block;
}
.hero-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #0b1220;
}

.hero-inner {
  text-align: left;
  max-width: var(--max-content-width);
  padding: 48px;
  background: linear-gradient(
    180deg,
    rgba(11, 18, 36, 0.72),
    rgba(11, 18, 36, 0.62)
  );
  border-radius: 12px;
}
.pill {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #061426;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 700;
}
.hero-inner h1 {
  font-family: "Poppins", Inter, sans-serif;
  font-size: 56px;
  margin: 0;
  color: #fff;
}
.art img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.hero-inner .tag {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}
/* Single page full-width layout */
.hero-inner p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
  background: linear-gradient(180deg, #fff, #fff);
}
.hero-right {
  flex: 1;
  position: relative;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
.site-footer {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--muted);
  font-weight: 600;
}
.hero-title {
  font-size: 48px;
  margin: 0 0 14px;
  color: #0b1220;
}
.hero-sub {
  color: #334155;
  font-size: 18px;
  max-width: 520px;
}

.gallery-strip {
  display: flex;
  width: 100%;
  gap: 14px;
  padding: 36px 48px;
  background: #fbfbfd;
}
.gallery-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  flex: 1;
}

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 48px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #061426;
  margin-top: 24px;
}
.band .band-cta {
  background: #061426;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
  }
  .hero-left {
    padding: 32px;
  }
  .gallery-strip {
    flex-direction: column;
  }
  .gallery-strip img {
    height: 200px;
  }
}

/* Centered rounded card layout to match attachment */
.card-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 24px;
  background: #e9e9ea;
  min-height: 100vh;
}
.card {
  width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 30px 60px rgba(11, 20, 40, 0.12);
  background: #fff;
}
.card-left {
  flex: 1;
  padding: 64px 72px;
}
.card-right {
  flex: 1;
  position: relative;
}
.angle {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffd54a, #ffc107);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}
.right-photo {
  position: absolute;
  right: 40px;
  top: 36px;
  bottom: 36px;
  left: 48%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 8, 20, 0.12);
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}
.logo {
  font-weight: 800;
  color: #0b1220;
}

@media (max-width: 1100px) {
  .card {
    flex-direction: column;
  }
  .right-photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 20px auto;
    width: 90%;
    height: 360px;
  }
  .angle {
    display: none;
  }
}

/* New modern single-page layout */
.site {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  color: #0b1220;
}
.hero-modern {
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.site-header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 8, 20, 0.04);
}
.site-header .brand {
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-photo {
  width: 100%;
  height: calc(100vh - var(--header-h) - var(--footer-h));
  background-size: cover;
  background-position: center;
}

.site-footer {
  height: var(--footer-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-top: 1px solid rgba(2, 8, 20, 0.04);
}

.hero-title {
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0b1220;
}
.hero-tag {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 18px;
}
.hero-desc {
  color: #44506a;
  max-width: 520px;
  font-size: 16px;
}
.hero-cta {
  margin-top: 26px;
}
.hero-cta .pill {
  background: #ffd43b;
  color: #061426;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.controls {
  margin-top: 20px;
}
.btn {
  background: var(--brand);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.features-row {
  display: flex;
  gap: 18px;
  margin-top: 40px;
}
.feature {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 8px 24px rgba(2, 8, 20, 0.12);
  text-align: left;
  color: var(--bg);
}
/* remove icon-specific styles: features are text-only now */
.feature strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}
.feature div {
  color: rgba(255, 255, 255, 0.78);
}
.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .hero-card {
    flex-direction: column;
  }
  .hero-left {
    padding: 32px;
  }
  .hero-right {
    height: 360px;
  }
  .hero-right .yellow-panel {
    transform: none;
    left: 0;
    right: 0;
    top: 40px;
    bottom: 40px;
  }
  .hero-right .photo {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    margin: 24px;
    border-radius: 12px;
  }
}
.hero-right .phone {
  width: 360px;
  max-width: 92%;
  box-shadow: 0 30px 80px rgba(11, 6, 20, 0.6);
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(6px);
}
.hero h1 {
  font-size: 64px;
  margin: 0 0 10px;
  line-height: 1.02;
  color: linear-gradient(90deg, var(--brand), var(--accent));
}
.hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 22px;
}

/* Buttons */
.cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.btn {
  background: var(--brand);
  color: #061426;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(111, 66, 193, 0.12);
}
.btn.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* Cards and sections */
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 48px rgba(2, 8, 20, 0.55);
  width: 100%;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.feature {
  display: block;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.service {
  background: transparent;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.contact {
  margin-top: 26px;
  background: transparent;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .left {
  max-width: 60%;
}
.footer {
  margin-top: -5px;
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
  width: 100%;
}

@media (max-width: 900px) {
  .container {
    padding: 20px;
  }
  .hero {
    flex-direction: column;
  }
  .hero-right {
    width: 100%;
  }
  .brand .logo {
    width: 40px;
    height: 40px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Clean photo-only background layout overrides */
:root {
  --brand: #0066ff;
  --accent: #ffb703;
  --muted: #6b7280;
  --bg: #ffffff;
  --header-h: 72px;
  --footer-h: 64px;
  --max-width: 1100px;
}

/* Reset and base */
* {
  box-sizing: border-box;
}
html,
body,
#root {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #111;
  background: var(--bg);
}

a {
  color: inherit;
}

/* Header */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid rgba(2, 8, 20, 0.04);
}
.header .brand {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.header .email {
  font-weight: 600;
  color: var(--muted);
}

/* Hero container holds the image and overlays */
.hero-container {
  position: relative;
  width: 100%;
  display: block;
}

.hero-image {
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
}

/* place the info band as an overlay on the left side of the hero */
.info-band {
  position: absolute;
  top: 300px;
  left: 48px;
  right: auto;
  max-width: 800px;
  box-sizing: border-box;
  z-index: 5;
}

.info-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-copy {
  flex: 1;
}
.info-copy h1 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 52px;
  margin: 0 0 10px;
}
.info-copy .tag {
  color: var(--muted);
  font-size: 30px;
  margin-bottom: 14px;
}
.info-copy p {
  color: #222;
  line-height: 1.6;
}
.info-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.info-cta .pill {
  background: var(--accent);
  color: #061426;
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.info-inner .info-copy {
  background: rgba(255, 255, 255, 0.92);
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(2, 8, 20, 0.08);
}

.footer {
  height: var(--footer-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(2, 8, 20, 0.04);
  background: #fff;
  font-weight: 600;
  color: var(--muted);
}

/* Responsive: on small screens, remove absolute overlay and stack content */
@media (max-width: 720px) {
  .info-band {
    position: static;
    margin: 18px 24px;
    max-width: none;
    top: auto;
    left: auto;
  }
  .info-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-cta {
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
  }
  .info-copy h1 {
    font-size: 28px;
  }
  .info-inner .info-copy {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.98);
  }
}

/* Contact page styles */
.contact-page {
  padding: 48px 20px;
  display: flex;
  justify-content: center;
}
.contact-page .container {
  max-width: 720px;
  width: 100%;
}
.contact-page h2 {
  font-size: 28px;
  margin: 0 0 8px;
}
.contact-page p {
  color: var(--muted);
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #213040;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(2, 8, 20, 0.08);
  font-size: 15px;
}
.contact-form .btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
}

/* header nav styles */
.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav .nav-link {
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
}
.nav .nav-link:hover {
  background: rgba(2, 8, 20, 0.04);
}

/* Ensure footer center and right are on the same horizontal line and vertically centered */
.footer {
  position: relative;
}
.footer-inner {
  height: var(--footer-h);
  display: block;
}
.footer-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.footer-right {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

@media (max-width: 720px) {
  .footer {
    position: static;
  }
  .footer-inner {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-center,
  .footer-right {
    position: static;
    transform: none;
  }
}

/* Responsive and layout improvements: sticky header/footer and logical sizes */
:root {
  --h1-clamp: clamp(28px, 4.5vw, 56px);
  --p-clamp: clamp(15px, 2.2vw, 20px);
}

/* Sticky header and footer */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
}
.footer {
  position: sticky;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
}

/* Ensure main content isn't hidden behind sticky header/footer */
.hero-container {
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
}
body {
  padding-top: 0;
  padding-bottom: var(--footer-h);
}

/* Logical responsive sizes */
.info-copy h1,
.hero-inner h1,
.hero-title {
  font-size: var(--h1-clamp);
}
.info-copy p,
.hero-desc,
.hero-sub {
  font-size: var(--p-clamp);
}

.nav .nav-link {
  padding: 10px 14px;
  font-size: 15px;
}
.pill,
.info-cta .pill {
  padding: 12px 20px;
}

/* make overlay top responsive */
.info-band {
  top: clamp(36px, 8vh, 90px);
  left: clamp(20px, 4vw, 48px);
  max-width: clamp(320px, 40vw, 520px);
}

@media (max-width: 900px) {
  .info-copy h1 {
    font-size: clamp(22px, 6vw, 32px);
  }
  .info-copy p {
    font-size: 15px;
  }
}
