/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  /* Colors – Palette */
  --bg-page: #F7F8FA;
  --bg-card: #FFFFFF;
  --bg-soft: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-hint: #64748B;
  --border: #E2E8F0;
  --border-input: #CBD5E1;

  /* Accent – Emerald */
  --accent: #059669;
  --accent-hover: #047857;
  --accent-ring: rgba(5, 150, 105, 0.25);

  /* Status */
  --success: #16A34A;
  --success-bg: #DCFCE7;
  --warning: #D97706;
  --warning-bg: #FFEDD5;
  --error: #DC2626;
  --error-bg: #FEE2E2;

  /* Typography */
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Radius */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Container */
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================
   LAYOUT
   ============================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-24) 0;
}

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

.section h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-12);
  text-align: center;
}

.section__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  margin-top: calc(-1 * var(--sp-8));
  margin-bottom: var(--sp-12);
}

.section__note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-6);
}

.card--primary {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.02) 0%, var(--bg-card) 100%);
}

/* ============================
   BADGES
   ============================ */
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  white-space: nowrap;
}

.badge--accent {
  background: var(--success-bg);
  border-color: var(--success);
  color: var(--success);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}
.btn--primary:focus-visible {
  outline: 3px solid var(--accent-ring);
  outline-offset: 2px;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--border-input);
  color: var(--text-primary);
}
.btn--secondary:hover {
  background: var(--bg-soft);
}

.btn--large {
  height: 54px;
  font-size: 17px;
  padding: 0 28px;
}

.btn--full {
  width: 100%;
}

/* ============================
   HERO
   ============================ */
.hero {
  padding: var(--sp-20) 0 var(--sp-24);
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-12);
  align-items: start;
}

.hero__copy h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.5px;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  max-width: 560px;
}

.hero__bullets {
  list-style: none;
  margin-bottom: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.bullet-icon {
  flex-shrink: 0;
  color: var(--accent);
  display: flex;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.hero__trust {
  font-size: 13px;
  color: var(--text-hint);
}

/* Proof panel */
.hero__proof h3 {
  font-size: 18px;
  font-weight: 650;
  margin-bottom: var(--sp-4);
}

.proof-list {
  list-style: none;
  margin-bottom: var(--sp-6);
}
.proof-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}
.proof-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.preview-table {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.preview-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.preview-table th,
.preview-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.preview-table th {
  background: var(--bg-soft);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-hint);
}
.preview-table tr:last-child td { border-bottom: none; }

.link-cell {
  color: var(--accent);
  font-weight: 600;
}

/* ============================
   STEPS
   ============================ */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 var(--sp-4);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

.step h3 {
  font-size: 17px;
  font-weight: 650;
  margin-bottom: var(--sp-2);
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step__line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 22px;
  flex-shrink: 0;
}

/* ============================
   BENEFITS GRID
   ============================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.benefit {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

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

.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.benefit h3 {
  font-size: 17px;
  font-weight: 650;
  margin-bottom: var(--sp-2);
}

.benefit p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================
   TIME COMPARE
   ============================ */
.time-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  padding: var(--sp-8) var(--sp-12);
  text-align: center;
}

.time-compare__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-compare__value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.time-compare__value--bad {
  color: var(--error);
}

.time-compare__value--good {
  color: var(--success);
}

.time-compare__arrow {
  color: var(--text-hint);
  flex-shrink: 0;
}

/* ============================
   PRICING
   ============================ */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
}

.pricing-card .badge {
  margin-bottom: var(--sp-4);
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.pricing-or {
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-sub {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: var(--sp-6);
}

.pricing-features {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================
   FORM
   ============================ */
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-10);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}

.required {
  color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-input);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font);
  font-size: 15px;
  padding: 0 var(--sp-4);
  color: var(--text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group textarea {
  height: auto;
  min-height: 96px;
  padding: var(--sp-3) var(--sp-4);
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--border-input);
}

.form-hint {
  display: block;
  font-size: 13px;
  color: var(--text-hint);
  margin-top: var(--sp-1);
}

.form-note {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.checkbox-group {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 15px;
  font-weight: 400 !important;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: var(--sp-12) 0;
}

.thank-you__icon {
  margin-bottom: var(--sp-4);
}

.thank-you h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

.thank-you p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.thank-you__cta {
  font-size: 15px;
  color: var(--text-primary);
}

/* ============================
   FAQ
   ============================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--text-hint);
}

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--text-primary);
  color: #fff;
  padding: var(--sp-12) 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.footer__info p,
.footer__links p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-2);
}

.footer__info strong {
  color: #fff;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: underline;
}
.footer__links a:hover {
  color: #fff;
}

.footer a[href^="mailto"] {
  color: var(--accent);
}

/* ============================
   STICKY CTA (mobile)
   ============================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn {
  height: 48px;
}

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-8);
  position: relative;
}

.modal__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-hint);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background 0.1s;
}

.modal__close:hover {
  background: var(--bg-soft);
  color: var(--text-primary);
}

.modal h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.modal h4 {
  font-size: 17px;
  font-weight: 650;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.modal > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: var(--sp-5);
}

.modal__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--sp-2);
}

.modal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  white-space: nowrap;
}

.modal__table th,
.modal__table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.modal__table th {
  background: var(--bg-soft);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-hint);
}

.modal__table tr:last-child td {
  border-bottom: none;
}

.modal__table--small {
  max-width: 340px;
}

.modal__columns-desc {
  list-style: none;
  margin-top: var(--sp-3);
}

.modal__columns-desc li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
}

.modal__columns-desc li:last-child {
  border-bottom: none;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hero__copy h1 {
    font-size: 32px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

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

  .step__line {
    width: 2px;
    height: 32px;
    margin: var(--sp-2) 0;
  }

  .step {
    max-width: 100%;
  }

  .time-compare {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .time-compare__arrow {
    transform: rotate(90deg);
  }

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

  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--sp-4);
  }

  .section {
    padding: var(--sp-16) 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .hero {
    padding: var(--sp-12) 0 var(--sp-16);
  }

  .hero__copy h1 {
    font-size: 28px;
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .form-wrapper {
    padding: var(--sp-6);
  }

  .pricing-card {
    padding: var(--sp-6);
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .modal {
    padding: var(--sp-5);
  }
}

/* ============================
   FORM VALIDATION STATES
   ============================ */
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-group .error-msg {
  display: block;
  font-size: 13px;
  color: var(--error);
  margin-top: var(--sp-1);
}

/* ============================
   MODAL GALLERY
   ============================ */
.modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.modal__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  aspect-ratio: 16 / 10;
}

.modal__thumb:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-size viewer */
.modal__viewer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.modal__viewer[hidden] {
  display: none;
}

.modal__viewer-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.25s ease both;
}

.modal__viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.modal__viewer-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal__viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.modal__viewer-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal__viewer-nav--prev {
  left: 16px;
}

.modal__viewer-nav--next {
  right: 16px;
}

.modal__viewer-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

@media (max-width: 640px) {
  .modal__gallery {
    grid-template-columns: 1fr;
  }

  .modal__viewer-nav {
    width: 40px;
    height: 40px;
  }

  .modal__viewer-nav--prev { left: 8px; }
  .modal__viewer-nav--next { right: 8px; }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__copy,
.hero__proof {
  animation: fadeInUp 0.5s ease both;
}

.hero__proof {
  animation-delay: 0.15s;
}
