﻿/* ===== Variables ===== */
:root {
  --bg-dark: #F4F8FC;
  --bg-card: #FFFFFF;
  --accent: #E51620;
  --accent-warm: #E51620;
  --accent-gold: #FFC52E;
  --accent-dim: rgba(229, 22, 32, 0.12);
  --accent-warm-dim: rgba(229, 22, 32, 0.12);
  --white: #FFFFFF;
  --text-light: #1A2E45;
  --text-muted: #586B80;
  --text-gray: #334B62;
  --text-eyebrow: #6A7E92;
  --divider: rgba(28, 57, 86, 0.14);
  --copyright: #6A7E92;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Noto Sans SC', 'Source Han Sans SC', 'Source Han Sans CN', sans-serif;
  --nav-height: 72px;
  --container-max: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Utilities ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E51620, #FF6B24 58%, #FFC52E);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(229, 22, 32, 0.24);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 107, 36, 0.32);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 16px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 10px 30px rgba(28, 57, 86, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  width: 220px;
  height: auto;
}

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

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -1px;
  background: url('../bg1.jpg') center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.13);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.18); }
}

.hero__overlay {
  position: absolute;
  inset: -1px;
  background: linear-gradient(105deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.76) 42%, rgba(255,255,255,0.24) 72%, rgba(244,248,252,0.62) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero__left {
  flex: 1;
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-warm), #FF6B24 58%, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hero__headline {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__btn {
  font-size: 15px;
  padding: 16px 48px;
}

.hero__right {
  flex-shrink: 0;
}

/* iPhone Mockup */
.phone-mockup {
  width: 520px;
  height: 266px;
  border-radius: 52px;
  background: linear-gradient(135deg, #ffffff 0%, #d7e4f2 18%, #8ea0b4 36%, #27384c 72%, #0f1724 100%);
  padding: 9px;
  position: relative;
  box-shadow: 0 36px 72px rgba(35,63,92,0.28), inset 0 0 0 1px rgba(255,255,255,0.6), inset 0 0 0 4px #27384c, inset 0 0 0 7px #0f1724;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 24px;
  width: 25px;
  height: 88px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 72%, #151923 0 4px, transparent 5px), linear-gradient(90deg, #050506, #0b0c10);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 1px 3px rgba(0,0,0,0.58);
  z-index: 4;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  inset: -3px auto auto 108px;
  width: 72px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #bcc4d0, #555e6d);
  box-shadow: 88px 269px 0 #6e7787, 186px 269px 0 #6e7787;
  z-index: 1;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 43px;
  overflow: hidden;
  background: #02040a;
  position: relative;
  box-shadow: inset 0 0 0 5px #020305, inset 0 0 0 6px rgba(255,255,255,0.04);
}

.phone-mockup__screen::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 37px;
  background: linear-gradient(120deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.12) 13%, rgba(255,255,255,0) 34%);
  pointer-events: none;
  z-index: 3;
}

.phone-mockup__screen::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 4px;
  height: 94px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 1px 3px rgba(0,0,0,0.28);
  z-index: 4;
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 39px;
  transform: scale(0.965);
}
/* ===== About Section ===== */
.about {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-dark) 100%);
  padding: 120px 0;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about__image {
  flex-shrink: 0;
  width: 540px;
  display: flex;
  justify-content: center;
}

.about__image .phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 39px;
  transform: scale(0.965);
}

.about__text {
  flex: 1;
}

.about__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-warm);
  margin: 0 0 14px;
}

.about__subtitle,
.features__subtitle,
.love__subtitle,
.about-synapse__subtitle,
.mission__subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0 0 32px;
}

.features__subtitle,
.love__subtitle {
  margin: 0 auto 48px;
  max-width: 600px;
}

.about-synapse__subtitle,
.mission__subtitle {
  margin: 0 auto 24px;
}

.about__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== Features Section ===== */
.features {
  background: var(--bg-card);
  padding: 120px 0;
}

.features__inner {
  text-align: center;
}

.features__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-warm);
  margin: 0 auto 14px;
  max-width: 600px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(229, 22, 32, 0.46);
  box-shadow: 0 18px 42px rgba(28, 57, 86, 0.1);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-warm-dim), rgba(255, 197, 46, 0.18));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card__icon img,
.love-card__icon img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(97%) saturate(3731%) hue-rotate(347deg) brightness(92%) contrast(102%);
}

.footer__icon,
.legal-back img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(97%) saturate(3731%) hue-rotate(347deg) brightness(92%) contrast(102%);
}

.feature-card__icon img {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===== Love Section (Why You'll Love) ===== */
.love {
  position: relative;
  padding: 120px 0;
  background: #F4F8FC;
  overflow: hidden;
}

.love::before {
  content: '';
  position: absolute;
  inset: -18px;
  background: url('../bg2.jpg') center / cover no-repeat fixed;
  filter: blur(6px);
  transform: scale(1.04);
}

.love__overlay {
  position: absolute;
  inset: -1px;
  background: rgba(255, 255, 255, 0.82);
}

.love__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.love__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-warm);
  margin: 0 auto 14px;
  max-width: 100%;
  white-space: nowrap;
}

.love__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.love-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.love-card:hover {
  border-color: rgba(229, 22, 32, 0.46);
  box-shadow: 0 18px 42px rgba(28, 57, 86, 0.1);
  transform: translateY(-4px);
}

.love-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-warm-dim), rgba(255, 197, 46, 0.18));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.love-card__icon img {
  width: 28px;
  height: 28px;
}

.love-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.love-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===== About Synapse Section ===== */
.about-synapse {
  background: var(--bg-dark);
  padding: 120px 0;
}

.about-synapse__inner {
  max-width: 800px;
  text-align: center;
}

.about-synapse__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-warm);
  margin: 0 auto 14px;
}

.about-synapse__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== Mission Section ===== */
.mission {
  position: relative;
  padding: 120px 0;
  background: #F4F8FC;
  text-align: center;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  inset: -18px;
  background: url('../bg3.jpg') center / cover no-repeat fixed;
  filter: blur(6px);
  transform: scale(1.04);
}

.mission__overlay {
  position: absolute;
  inset: -1px;
  background: rgba(255, 255, 255, 0.8);
}

.mission__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.mission__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-warm);
  margin: 0 auto 14px;
}

.mission__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  background: #FFFFFF;
  padding: 80px 0 48px;
  border-top: 1px solid var(--divider);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo-img {
  width: 220px;
  height: auto;
  margin-bottom: 4px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.footer__sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__contact-item {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.footer__contact-item--address {
  align-items: flex-start;
}

.footer__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Copyright ===== */
.copyright {
  background: #FFFFFF;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--divider);
}

.copyright p {
  font-size: 13px;
  color: var(--copyright);
  text-align: center;
}

/* ===== Legal Pages ===== */
.legal-page {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  min-height: 60vh;
}

.legal-page__inner {
  max-width: 800px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: opacity 0.2s, gap 0.2s;
}

.legal-back:hover {
  opacity: 0.85;
  gap: 10px;
}

.legal-back img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 42px;
  margin-bottom: 16px;
}

.legal-page .legal-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.legal-page .legal-meta {
  font-size: 14px;
  color: var(--copyright);
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--accent);
}

.legal-page h3 {
  font-size: 17px;
  margin: 24px 0 10px;
  color: var(--text-light);
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-page ul {
  margin: 0 0 16px 1.25rem;
  padding: 0;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--accent);
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 200;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-warm);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 68px;
  }

  .hero__headline {
    font-size: 22px;
  }

  .phone-mockup {
    width: 460px;
    height: 236px;
  }

  .phone-mockup::after {
    display: none;
  }

  .about__inner {
    gap: 48px;
  }

  .about__image {
    width: 460px;
  }


}

@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero__left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__desc {
    max-width: 100%;
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__headline {
    font-size: 20px;
  }

  .phone-mockup {
    width: 440px;
    height: 226px;
  }

  .about__inner {
    flex-direction: column;
    text-align: center;
  }

  .about__image {
    width: 100%;
    max-width: 480px;
    order: 2;
  }

  .about__text {
    order: 1;
  }

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

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .nav__logo img {
    width: 180px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 0;
    border-bottom: 1px solid var(--divider);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 24px;
    width: 100%;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

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

  .hero__inner {
    gap: 22px;
  }

  .hero__left {
    display: contents;
  }

  .hero__title {
    font-size: 46px;
    order: 1;
    margin-bottom: 2px;
  }

  .hero__headline {
    font-size: 18px;
    order: 3;
    margin-bottom: 12px;
  }

  .hero__desc {
    font-size: 15px;
    order: 4;
    max-width: 620px;
    margin-bottom: 22px;
  }

  .hero__btn {
    padding: 14px 36px;
    font-size: 14px;
    order: 5;
  }

  .hero__right {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .phone-mockup {
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 520 / 266;
    border-radius: 24px;
    padding: 7px;
  }

  .phone-mockup::before {
    left: 14px;
    width: 16px;
    height: 58px;
  }

  .phone-mockup::after {
    display: none;
  }

  .phone-mockup__screen::after {
    right: 10px;
    width: 3px;
    height: 58px;
  }

  .phone-mockup__screen {
    border-radius: 18px;
  }

  .phone-mockup__screen::before {
    border-radius: 16px;
  }

  .phone-mockup__screen img {
    border-radius: 16px;
  }

  .about__image .phone-mockup__screen img {
    border-radius: 16px;
  }

  .about, .features, .love, .about-synapse, .mission {
    padding: 80px 0;
  }

  .about__title, .features__title, .love__title, .about-synapse__title, .mission__title {
    font-size: 30px;
  }

  .about__subtitle, .features__subtitle, .love__subtitle, .about-synapse__subtitle, .mission__subtitle {
    font-size: 18px;
  }

  .about__image {
    width: 100%;
    order: 2;
    display: flex;
    justify-content: center;
  }

  .about__text {
    display: contents;
  }

  .about__title {
    order: 1;
    margin-bottom: 2px;
  }

  .about__subtitle {
    order: 3;
    margin-bottom: 16px;
  }

  .about__desc {
    order: 4;
    max-width: 620px;
  }

  .feature-card {
    text-align: center;
  }

  .feature-card__icon {
    margin-left: auto;
    margin-right: auto;
  }



  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__col {
    align-items: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .copyright {
    height: auto;
    padding: 16px 24px;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .nav__logo img {
    width: 156px;
  }
  .love__title {
    white-space: normal;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__headline {
    font-size: 16px;
  }

  .phone-mockup {
    width: min(100%, 340px);
    height: auto;
    aspect-ratio: 520 / 266;
    border-radius: 18px;
    padding: 6px;
  }

  .phone-mockup::before {
    left: 12px;
    width: 14px;
    height: 48px;
  }

  .phone-mockup__screen::after {
    right: 8px;
    height: 48px;
  }

  .phone-mockup__screen {
    border-radius: 14px;
  }

  .phone-mockup__screen::before {
    border-radius: 12px;
  }

  .phone-mockup__screen img {
    border-radius: 12px;
  }

  .about__image .phone-mockup__screen img {
    border-radius: 12px;
  }
}







