/* Tended — shared styles */
/* Mobile-first, system fonts, no external dependencies */

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

:root {
  /* Brand — from TendedColors.swift */
  --green: #1D9158;
  --green-light: #B8D9C3;
  --green-mid: #1A6B42;
  --gold: #E89320;

  /* Surfaces */
  --bg: #F7F6F2;
  --bg-card: #F8F7F4;
  --dark-bg: #0F1A14;
  --divider: #F4F3F0;

  /* Text */
  --text: #1C1C1E;
  --text-body: #4A4745;
  --text-muted: #8E8B85;

  /* Tiles */
  --tile-grey: #E2DDD7;
  --tile-gradient-top: #ECE9E4;
  --tile-gradient-bottom: #E2DDD7;

  --border: #E2DDD7;
  --radius: 16px;
  --radius-sm: 8px;
  --max-w: 1100px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Do NOT put overflow-x here — moves scroll container to body,
     breaks margin:auto centering and position:sticky */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 0;
  /* clip (not hidden) — prevents horizontal scroll without creating a scroll container,
     so margin:auto centering on .container still resolves against the viewport */
  overflow-x: clip;
}

/* ── Layout ── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

section {
  padding: 64px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

/* ── Nav ── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.btn-nav-dl {
  display: inline-flex;
  align-items: center;
  background: var(--dark-bg);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.btn-nav-dl:hover { opacity: 0.8; }

@media (max-width: 600px) {
  .btn-nav-dl { display: none; }
}

/* ── Hero ── */

.hero {
  padding: 80px 0 0;
  border-top: none;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  text-align: left;
  padding-bottom: 80px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 24px;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
    padding-bottom: 0;
  }
  .hero-visual {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-eyebrow {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

h1 .accent {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-sub { margin: 0 auto 36px; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero-actions { align-items: center; }
}

.appstore-badge {
  display: block;
  height: 64px;
  width: auto;
  opacity: 1;
  transition: opacity 0.15s;
}

.appstore-badge:hover {
  opacity: 0.82;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Phone mock ── */

.phone-mock {
  width: 240px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(160deg, var(--tile-gradient-top) 0%, var(--tile-gradient-bottom) 100%);
  border-radius: 40px;
  border: 3px solid var(--border);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  position: relative;
  flex-shrink: 0;
}

.phone-mock::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}

.phone-mock .ph-icon {
  font-size: 2.4rem;
  opacity: 0.55;
}

.phone-mock.hero-phone {
  width: 300px;
}

.hero-phone-img {
  width: 332px;
  height: auto;
  display: block;
}

/* ── Screenshot placeholder (legacy) ── */

.screenshot-placeholder {
  background: var(--tile-gradient-top);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  border: 2px dashed var(--tile-grey);
}

.screenshot-placeholder .ph-icon {
  font-size: 2rem;
  opacity: 0.6;
}

.screenshot-placeholder.wide {
  height: 300px;
  width: 100%;
}

/* ── Section headings ── */

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── Problem section ── */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.problem-card .quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.problem-card .quote::before {
  display: none;
}

/* ── How it works — showcase rows ── */

#how {
  background: var(--bg-card);
}

.showcase-rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 56px;
  padding-bottom: 16px;
}

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

.showcase-row.reverse .showcase-visual { order: 2; }
.showcase-row.reverse .showcase-text   { order: 1; }

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

.showcase-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.showcase-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
}

.showcase-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .showcase-row .showcase-visual { order: -1 !important; }
  .showcase-row .showcase-text   { order: 0 !important; }
  .showcase-visual { justify-content: center; }
}

/* ── Article callout ── */

.article-callout {
  padding: 0;
  border-top: none;
}

.callout-inner {
  background: var(--dark-bg);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.callout-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  margin-bottom: 8px;
}

.callout-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 6px;
}

.callout-title:hover {
  text-decoration: underline;
}

.callout-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.callout-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-light);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.callout-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .callout-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }
}

/* ── Features ── */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-card .feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Screenshots — phone strip ── */

#screenshots {
  overflow-x: clip; /* hard boundary — strip can never inflate page width */
}

.phone-strip {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 40px;
  /* edge fade */
  -webkit-mask-image: linear-gradient(to right,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%);
  mask-image: linear-gradient(to right,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%);
}

.phone-strip::-webkit-scrollbar { display: none; }

.phone-strip-track {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  /* Centering: auto-padding = (strip width − track content width) / 2
     When track is narrower than strip → pads it to center.
     When track overflows → max() clamps to 0 → scrolls from left edge, no clipping. */
  padding-left:  max(0px, calc((100% - 1096px) / 2));
  padding-right: max(0px, calc((100% - 1096px) / 2));
}

.strip-phone {
  width: 200px;
}

/* ── Pricing ── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.pricing-card.featured {
  border-color: var(--green);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA band ── */

.cta-band {
  background: var(--dark-bg);
  color: #fff;
  text-align: center;
  padding: 72px 20px;
  border-top: none;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 1.05rem;
}


/* ── Stats strip ── */

.stats-strip {
  background: var(--dark-bg);
  padding: 28px 0;
  border-top: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  gap: 2px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .stat-divider { display: none; }
  .stats-grid { gap: 16px; }
  .stat { padding: 0 16px; }
}

/* ── Difference / contrast ── */

.difference-section {
  background: var(--bg-card);
}

.contrast-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 36px;
}

@media (max-width: 560px) {
  .contrast-table {
    grid-template-columns: 1fr;
  }
}

.contrast-col {
  padding: 32px 28px;
}

.contrast-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
}

.contrast-col li {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-body);
}

.contrast-bad {
  background: var(--tile-gradient-top);
  border-right: 1px solid var(--border);
}

.contrast-bad li strong {
  color: #9B2226;
}

.contrast-good {
  background: #f0faf4;
}

.contrast-good li strong {
  color: var(--green-mid);
}

.contrast-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.contrast-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ── Testimonials ── */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}


/* ── Footer ── */

footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 600px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

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

/* ── Article pages ── */

.article-body {
  padding: 0 0 80px;
  border-top: none;
}

.article-container {
  max-width: 680px;
}

.article-lede {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.article-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body p strong {
  color: var(--text);
  font-weight: 600;
}

.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0 40px;
}

.article-references h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-references ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-references li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-references a {
  color: var(--green-mid);
  text-decoration: none;
}

.article-references a:hover {
  text-decoration: underline;
}

.article-body a {
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
}

.article-body a:hover {
  border-bottom-color: var(--green-mid);
}

.article-references a {
  border-bottom: none;
}

/* ── Legal / Support pages ── */

.page-hero {
  padding: 56px 0 40px;
  border-top: none;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.page-hero .page-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-body {
  padding: 0 0 80px;
  border-top: none;
}

.legal-body h2 {
  font-size: 1.1rem;
  margin: 36px 0 10px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p, .legal-body li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-body a {
  color: var(--green-mid);
}

/* ── Support FAQ ── */

.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-box {
  background: var(--tile-gradient-top);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}

.contact-box h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-box a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}

/* ── Cookie consent banner ── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--green);
  color: #fff;
}

.cookie-accept:hover {
  opacity: 0.85;
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ── Coming Soon buttons ── */

.coming-soon-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.coming-soon-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}

.coming-soon-btn-light {
  color: rgba(255,255,255,0.7);
  background: transparent;
  border-color: rgba(255,255,255,0.3);
}

/* ── Showcase phone images (How it works) ── */

.showcase-phone-img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

@media (min-width: 768px) {
  .showcase-phone-img {
    max-width: 250px;
  }
}

/* ── Screenshot strip images ── */

.strip-phone-img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .strip-phone-img {
    width: 220px;
  }
}
