:root {
  --bg: #071a13;
  --bg-2: #0e221b;
  --panel: rgba(12, 27, 22, 0.8);
  --panel-strong: rgba(18, 35, 29, 0.94);
  --card: rgba(15, 28, 23, 0.94);
  --card-2: rgba(19, 40, 32, 0.9);
  --white: #ebfff2;
  --muted: #a9c7b9;
  --primary: #25d366;
  --primary-2: #35e07e;
  --secondary: #5ad8a4;
  --accent: #f7d88f;
  --accent-cool: #7aa6ff;
  --accent-violet: #b28cff;
  --line: rgba(154, 214, 182, 0.12);
  --shadow: 0 30px 70px rgba(2, 11, 8, 0.58);
  --glass-bg: rgba(16, 34, 27, 0.55);
  --glass-bg-strong: rgba(19, 40, 32, 0.72);
  --glass-border: rgba(180, 255, 210, 0.14);
  --glass-blur: 22px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: "Unbounded", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* Ambient background mesh */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, #06150f 0%, #0b1d18 28%, #0a1714 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
  animation: drift 26s ease-in-out infinite;
}

.orb-a {
  top: -12%;
  left: -6%;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.4), transparent 70%);
  animation-duration: 24s;
}

.orb-b {
  top: 4%;
  right: -10%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(122, 166, 255, 0.32), transparent 70%);
  animation-duration: 30s;
  animation-delay: -6s;
}

.orb-c {
  bottom: -14%;
  left: 22%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(178, 140, 255, 0.22), transparent 70%);
  animation-duration: 34s;
  animation-delay: -14s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 6%) scale(1.08); }
  66% { transform: translate(-5%, -3%) scale(0.95); }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .orb {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  background: rgba(5, 15, 11, 0.62);
  border-bottom: 1px solid var(--glass-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f1fff6;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #082115;
  font-family: var(--font-heading);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cool));
  transition: right 0.25s var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(14, 29, 24, 0.6);
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(149, 255, 194, 0.35);
  background: rgba(20, 40, 33, 0.85);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--glass-border);
  background: rgba(6, 16, 12, 0.88);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
}

.mobile-nav a {
  padding: 12px 4px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.is-active {
  color: var(--white);
}

.mobile-nav a.button {
  width: 100%;
  margin-top: 6px;
  border-bottom: none;
  color: #0a2218;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0a2218;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.4);
  filter: brightness(1.04);
}

.button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.3);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-secondary {
  background: rgba(14, 29, 24, 0.7);
  backdrop-filter: blur(10px);
  border-color: var(--glass-border);
  color: var(--white);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(20, 40, 33, 0.85);
  border-color: rgba(149, 255, 194, 0.32);
  box-shadow: 0 16px 32px rgba(3, 11, 9, 0.35);
}

.hero {
  padding: 84px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 38px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  backdrop-filter: blur(8px);
  color: #d9ffe9;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 20px 0 20px;
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 45%, var(--secondary) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 420px;
  gap: 20px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-stats li:hover {
  transform: translateY(-3px);
  border-color: rgba(149, 255, 194, 0.35);
  box-shadow: 0 16px 34px rgba(3, 14, 10, 0.4);
}

.hero-stats strong {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.01em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  position: relative;
  width: min(100%, 460px);
  padding: 18px 18px 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 34, 28, 0.92), rgba(11, 24, 21, 0.96));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow), 0 0 90px -20px rgba(37, 211, 102, 0.35);
  animation: float 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .phone-card {
    animation: none;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 16px;
}

.dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.red { background: #ff6b6b; }
.dot.yellow { background: #f7c95c; }
.dot.green { background: #50d38a; }

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 17, 13, 0.85), rgba(15, 31, 25, 0.92));
  border: 1px solid rgba(146, 225, 172, 0.08);
}

.chat-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.chat-row.outgoing {
  justify-content: flex-end;
}

.avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #39d98a, #1ab77d);
  color: #051a0f;
  font-weight: 800;
  font-size: 0.8rem;
}

.bubble {
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(140, 213, 170, 0.08);
}

.bubble strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  color: #dff9ea;
}

.bubble p {
  margin: 0;
  line-height: 1.5;
  color: #ebfff2;
  font-size: 0.88rem;
}

.chat-row.outgoing .bubble {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.24), rgba(30, 188, 91, 0.13));
}

.chat-row.incoming .bubble {
  background: rgba(18, 35, 28, 0.85);
}

.mini-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mini-panel {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(14, 29, 24, 0.78);
  border: 1px solid rgba(158, 233, 185, 0.1);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease;
}

.mini-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 233, 185, 0.28);
}

.mini-panel.accent {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(122, 166, 255, 0.14));
}

.mini-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.mini-panel strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.logo-strip {
  padding: 10px 0 20px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
  transition: color 0.2s ease;
}

.strip-grid span:hover {
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background: rgba(9, 23, 19, 0.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  text-align: center;
  margin-bottom: 46px;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

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

.feature-card,
.step-card,
.review-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--glass-bg-strong), rgba(10, 22, 18, 0.85));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 18px 36px rgba(3, 11, 9, 0.35);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(90, 216, 164, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover,
.step-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(149, 255, 194, 0.32);
  box-shadow: 0 26px 50px rgba(3, 11, 9, 0.45), 0 0 40px -18px rgba(37, 211, 102, 0.5);
}

.feature-card {
  padding: 30px 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(58, 215, 165, 0.18), rgba(122, 166, 255, 0.18));
  border: 1px solid var(--glass-border);
  color: var(--secondary);
  margin-bottom: 20px;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.feature-card p,
.step-card p,
.review-card p,
.showcase-panel p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.step-card {
  position: relative;
  padding: 28px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #061823;
  font-family: var(--font-heading);
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.showcase-panel {
  padding: 28px 0;
}

.panel-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #dfeafc;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.showcase-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.showcase-panel ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
  color: var(--white);
}

.showcase-panel li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.showcase-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.analytics-card {
  padding: 26px 24px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--glass-bg-strong), rgba(9, 20, 17, 0.9));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--muted);
}

.chart-header strong {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
  padding: 12px 6px 0;
}

.bars span {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--accent-cool), var(--primary));
  box-shadow: 0 18px 30px rgba(122, 166, 255, 0.22);
  transition: transform 0.3s var(--ease-out);
  transform-origin: bottom;
}

.bars:hover span {
  transform: scaleY(1.02);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.review-card {
  padding: 26px 22px;
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: #ffcf70;
  margin-bottom: 18px;
}

.person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}

.person span {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-list details:hover {
  border-color: rgba(149, 255, 194, 0.28);
}

.faq-list details[open] {
  background: var(--glass-bg-strong);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  position: relative;
  padding-right: 28px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.25s var(--ease-out);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 14px;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(58, 215, 165, 0.16), rgba(122, 166, 255, 0.14));
  border: 1px solid rgba(122, 166, 255, 0.2);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 24px 55px rgba(12, 21, 32, 0.4);
}

.cta-box h2 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.accent {
  color: #dffaf0;
}

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

.footer {
  padding: 28px 0 58px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-brand {
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.footer-links a {
  transition: color 0.2s ease;
}

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

@media (max-width: 920px) {
  .hero-grid,
  .showcase-grid,
  .faq-wrap,
  .feature-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

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

  .orb {
    filter: blur(60px);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 52px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    letter-spacing: 0.08em;
  }

  .phone-card {
    border-radius: 24px;
  }
}
