/* ============================================
   WelcomeKitPro - Landing Page Styles
   Warm, calm hospitality brand
   ============================================ */

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

:root {
  --cream: #F4F7FB;
  --surface: #FFFFFF;
  --ink: #1C2E4A;
  --ink-strong: #142238;
  --accent: #2C7CC0;
  --accent-dark: #21619B;
  --muted: #74828F;
  --border: #DCE4EC;
  --white: #FFFFFF;

  --shadow-sm: 0 1px 3px rgba(28, 46, 74, 0.08);
  --shadow-md: 0 6px 18px rgba(28, 46, 74, 0.10);
  --shadow-lg: 0 14px 40px rgba(28, 46, 74, 0.14);
  --shadow-xl: 0 22px 60px rgba(28, 46, 74, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

.section { padding: 84px 0; }

.section-surface { background: var(--surface); }

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 52px;
  max-width: 620px;
}

.text-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.1;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ink-strong);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

.btn-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn-block { display: flex; width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink-strong);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--transition);
}

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

.nav-login { font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-strong);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  padding: 132px 0 84px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--cream) 70%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(44, 124, 192, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-subtitle strong { color: var(--ink-strong); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* Hero visual mockups */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-book {
  width: 280px;
  height: 360px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  transform: rotate(-5deg);
  position: relative;
  z-index: 1;
}

.mock-book-cover {
  position: absolute;
  inset: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(160deg, var(--surface), var(--cream));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.mock-book-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.mock-book-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--ink-strong);
  line-height: 1.1;
}

.mock-book-sub { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

.mock-book-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 6px;
}

.mock-phone {
  position: absolute;
  right: 8%;
  bottom: 4%;
  width: 168px;
  height: 320px;
  background: var(--ink-strong);
  border-radius: 26px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.mock-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-phone-bar {
  width: 60%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 4px;
}

.mock-phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border-radius: 8px;
  padding: 8px 9px;
}

.mock-phone-row .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}

.mock-phone-row .dot-accent { background: var(--accent); }

.mock-phone-cta {
  margin-top: auto;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 9px;
  border-radius: 8px;
}

.mock-qr {
  position: absolute;
  left: 2%;
  bottom: 12%;
  width: 108px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 3;
  text-align: center;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-bottom: 8px;
}

.qr-grid span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--surface);
}

.qr-grid span:nth-child(3n),
.qr-grid span:nth-child(5n),
.qr-grid span:nth-child(7n) { background: var(--ink-strong); }

.mock-qr-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

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

.step-card {
  text-align: center;
  padding: 40px 26px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.step-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; color: var(--ink); }

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

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

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: var(--ink); }

/* ---------- Themes ---------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.theme-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.theme-swatch {
  height: 160px;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.theme-swatch .swatch-band { flex: 1; width: 100%; }

.theme-minimal .band-1 { background: #EFE7DA; }
.theme-minimal .band-2 { background: #D8C7AF; }
.theme-minimal .band-3 { background: #6E5C49; }

.theme-coastal .band-1 { background: #DCEAF0; }
.theme-coastal .band-2 { background: #8FBDD3; }
.theme-coastal .band-3 { background: #E4D8C2; }

.theme-cabin .band-1 { background: #E6D5C0; }
.theme-cabin .band-2 { background: #9C6B3F; }
.theme-cabin .band-3 { background: #3F5340; }

.theme-bw .band-1 { background: #FFFFFF; }
.theme-bw .band-2 { background: #9A9A9A; }
.theme-bw .band-3 { background: #111111; }

.theme-info { padding: 24px 24px 28px; }

.theme-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(44, 124, 192, 0.1);
  padding: 4px 12px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.theme-info h3 { font-size: 1.28rem; font-weight: 800; margin-bottom: 8px; }
.theme-info p { font-size: 0.95rem; color: var(--ink); }

/* ---------- Compare ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.compare-old { opacity: 0.92; }

.compare-new {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.compare-flag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 14px;
}

.compare-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 18px; }

.compare-list li {
  font-size: 0.95rem;
  color: var(--ink);
  padding: 9px 0 9px 30px;
  position: relative;
  border-top: 1px solid var(--border);
}

.compare-list li:first-child { border-top: none; }

.compare-list li::before {
  content: '\00d7';
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 1.05rem;
}

.compare-list-good li::before {
  content: '\2713';
  color: var(--accent);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 16px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-header {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.pricing-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }

.pricing-amount { margin-bottom: 4px; }

.price {
  font-family: 'Archivo', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
}

.price-period { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--muted); }

.pricing-per { font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }

.pricing-save {
  display: inline-block;
  background: rgba(44, 124, 192, 0.12);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 12px;
}

.pricing-features {
  margin-bottom: 24px;
  text-align: left;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--ink);
  padding: 7px 0 7px 26px;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-strong);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--muted);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 360px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--ink-strong);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 44px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 320px;
}

.footer-more {
  font-size: 0.92rem;
  color: var(--ink);
  margin-top: 14px;
}

.footer-more a { color: var(--accent); font-weight: 600; }
.footer-more a:hover { color: var(--accent-dark); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-strong);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 124px 0 72px;
  background: var(--cream);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}

.legal-inner h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-updated { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.legal-inner h2 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal-inner p { margin-bottom: 14px; }
.legal-inner ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-inner li { margin-bottom: 6px; }
.legal-inner a { color: var(--accent); font-weight: 600; }
.legal-back {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-title { font-size: 2.5rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 40px; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 22px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 12px;
  }

  .nav-links .btn { width: 100%; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero { padding: 108px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 360px; }

  /* Grids */
  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .themes-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-flag { left: 50%; transform: translateX(-50%); }

  .cta-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-large { width: 100%; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  .legal-inner { padding: 36px 24px; }

  /* Scale hero mockups for small screens */
  .mock-book { width: 230px; height: 300px; }
  .mock-phone { width: 138px; height: 264px; right: 2%; }
  .mock-qr { width: 92px; left: 0; }
}

@media (max-width: 380px) {
  .footer-links { grid-template-columns: 1fr; }
  .mock-book { width: 200px; height: 264px; }
  .mock-phone { width: 120px; height: 230px; }
}
