@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --red:    #E63946;
  --red-dark: #c0303b;
  --white:  #FFFFFF;
  --yellow: #FFD60A;
  --gray:   #F8F8F8;
  --dark:   #1a1a1a;
  --text:   #222222;
  --muted:  #666666;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 36px rgba(230,57,70,0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 68px;
  display: flex;
  align-items: center;
}

.navbar__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.navbar__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.3px;
}

.navbar__name span {
  color: var(--red);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__links li a {
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.navbar__links li a:hover,
.navbar__links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.60);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--red);
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--red); }

.mobile-menu .lang-switch {
  margin-top: 12px;
  align-self: flex-start;
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.70);
  padding: 48px 24px 28px;
}

.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer__brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.footer__brand span em {
  color: var(--red);
  font-style: normal;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer__email {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer__email-note {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.65;
  color: rgba(255,255,255,0.6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1140px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.40);
}

.section {
  padding: 96px 24px;
}

.section__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}

.section__sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230,57,70,0.30);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 30px rgba(230,57,70,0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.40);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-store-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-store-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-store-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230,57,70,0.35);
}

.btn-store-red:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 30px rgba(230,57,70,0.50);
  transform: translateY(-2px);
}

.btn-store-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-store-white:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-store__label {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-store__small {
  font-size: 0.68rem;
  opacity: 0.75;
  font-weight: 400;
}

.btn-store__big {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(230,57,70,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(255,214,10,0.06) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(230,57,70,0.15);
  animation: float linear infinite;
}

@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInLeft 0.9s ease both;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.30);
  color: #ff8a93;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero__badge i { color: var(--red); }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__title .accent { color: var(--red); }

.hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  min-height: 5.5em;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.9s ease 0.2s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.phone-mockup {
  width: 240px;
  height: 460px;
  background: #111;
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,0.12);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 0 40px rgba(230,57,70,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  width: 60px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 20px;
  background: #111;
}

.phone-app-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding-top: 8px;
}

.phone-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.phone-app-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.phone-sos-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.phone-hint {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}

.sos-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 0 0 0 rgba(230,57,70,0.7),
    0 8px 32px rgba(230,57,70,0.45);
  animation: pulse 2.2s ease-in-out infinite;
}

.sos-btn i {
  font-size: 2rem;
  color: var(--white);
}

.sos-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,0.7),   0 8px 32px rgba(230,57,70,0.45); }
  50%  { box-shadow: 0 0 0 28px rgba(230,57,70,0),   0 8px 32px rgba(230,57,70,0.30); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0),      0 8px 32px rgba(230,57,70,0.45); }
}

.phone-status {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.30);
  text-align: center;
}

.phone-status span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step__icon {
  font-size: 2.6rem;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.step__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step__desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  align-self: center;
  color: var(--red);
  font-size: 1.4rem;
  animation: arrowBounce 1.4s ease-in-out infinite;
  margin-top: -16px;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

.steps-tagline {
  text-align: center;
  margin-top: 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.2px;
  font-style: italic;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 4px solid var(--red);
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 18px;
}

.feature-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card__desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

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

.audience-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.audience-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.audience-card__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.audience-card__body {
  padding: 20px 22px 24px;
  background: var(--white);
}

.audience-card__body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.audience-card__body p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.section-download {
  background: var(--red);
  text-align: center;
  padding: 100px 24px;
}

.section-download .section__title { color: var(--white); }
.section-download .section__sub { color: rgba(255,255,255,0.80); }

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.download-note {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 8px;
}

.legal-page {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--gray);
}

.legal-hero {
  background: var(--dark);
  padding: 64px 24px 56px;
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255,255,255,0.60);
  font-size: 0.92rem;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 40px;
  margin-bottom: 24px;
}

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-section h2 i {
  font-size: 1rem;
  opacity: 0.8;
}

.legal-section p {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 8px 0 12px 20px;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-section ul li { margin-bottom: 4px; }

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.20);
  color: var(--red);
  font-size: 0.80rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.legal-updated {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 32px;
}

.phone-frame {
  position: relative;
  width: 260px;
  border-radius: 46px;
  background: #111;
  padding: 10px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.10),
    0 0 0 3px #333,
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 8px #111;
  overflow: hidden;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screenshot {
  display: block;
  width: 100%;
  border-radius: 38px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .hero__sub { margin: 0 auto 36px; }
  .hero__buttons { justify-content: center; }

  .hero__visual {
    order: -1;
    padding-top: 8px;
  }

  .phone-frame {
    width: 200px;
  }

  .phone-island {
    width: 56px;
    height: 16px;
    top: 14px;
  }

  .phone-screenshot {
    border-radius: 30px;
  }

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

  .step-arrow {
    transform: rotate(90deg);
    width: 100%;
    height: 32px;
    animation: arrowBounceV 1.4s ease-in-out infinite;
    margin-top: 0;
  }

  @keyframes arrowBounceV {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50%       { transform: rotate(90deg) translateX(6px); }
  }

  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { align-items: flex-start; }
}

@media (max-width: 680px) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .legal-section { padding: 28px 20px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

[data-lang] { display: none; }
[data-lang].lang-active { display: block; }
[data-lang-inline] { display: none; }
[data-lang-inline].lang-active { display: inline; }

.store-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.store-modal.open {
  display: flex;
}

.store-modal__box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px 36px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.store-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  font-size: 1rem;
  transition: background var(--transition);
}

.store-modal__close:hover { background: #e0e0e0; }

.store-modal__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), #c0282f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.6rem;
}

.store-modal__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.store-modal__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
