/* === FEELTECK & PROMISTECK - Currency Processing Equipment === */
:root {
  --primary: #1a73e8;
  --primary-light: #4a9ff5;
  --primary-lighter: #7bbdfa;
  --accent: #e8762d;
  --accent-hover: #cf6827;
  --accent-light: rgba(232,118,45,0.08);
  --dark: #0a2342;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.09), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.11), 0 8px 15px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1280px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800); background: var(--white);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(26,115,232,0.15); color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === Typography === */
h1, h2, h3, h4, h5 { color: var(--gray-900); font-weight: 700; line-height: 1.3; }
h1 { font-size: 2.5rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--gray-500); margin-bottom: 3rem; font-size: 1.05rem; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; text-decoration: none; letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent); color: var(--white); border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(232,118,45,0.25);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); box-shadow: 0 4px 14px rgba(232,118,45,0.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* === Navigation === */
.navbar {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 10px 18px; color: var(--gray-700); font-weight: 500;
  font-size: 0.92rem; border-radius: var(--radius); transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--gray-100); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); margin: 5px 0; transition: 0.3s; }

/* === Hero === */
.hero {
  background: var(--dark);
  color: var(--white); padding: 0; position: relative; overflow: hidden;
  min-height: 560px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(74,159,245,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(232,118,45,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 80%, rgba(232,118,45,0.1) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding-top: 40px; padding-bottom: 40px;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,118,45,0.15); border: 1px solid rgba(232,118,45,0.3);
  color: var(--accent); padding: 6px 14px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 1.25rem; line-height: 1.15; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--gray-300); margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.hero-visual img.hero-img {
  max-width: 100%; max-height: 380px; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  border-radius: var(--radius-lg);
}
#hero-visual > a {
  position: absolute; opacity: 0; transition: opacity 0.8s ease; text-decoration: none;
}
#hero-visual > a:first-child { position: relative; }
#hero-visual > a.js-active { opacity: 1; position: relative; }
.hero-visual { min-height: 400px; padding-bottom: 30px; }
.hero-dots {
  display: flex; gap: 10px; margin-top: 16px; position: relative;
}
.hero-dots .dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s;
}
.hero-dots .dot.active { background: var(--accent); width: 28px; border-radius: 5px; }
.hero-trust {
  display: flex; gap: 24px; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item .check { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.hero-trust-item span { font-size: 0.9rem; color: var(--gray-400); }

/* === Section common === */
section { padding: 88px 0; }
.section-bg { background: var(--gray-50); }

/* === Category Cards (Homepage) === */
.categories-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; margin-top: 24px;
}
.cat-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px 20px 20px; text-align: center; transition: all var(--transition);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.cat-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.cat-card .cat-img { width: 100%; height: 140px; object-fit: contain; margin-bottom: 14px; border-radius: var(--radius); background: var(--gray-50); padding: 6px; transition: transform var(--transition); }
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--gray-900); }
.cat-card p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; flex: 1; }
.cat-card .cat-count { font-size: 0.8rem; color: var(--accent); font-weight: 700; margin-top: 10px; }

/* === Stats === */
.stats-section { background: var(--white); padding: 44px 0; border-bottom: 1px solid var(--gray-100); }
.stats-row { display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-icon { font-size: 1.8rem; margin-bottom: 6px; }
.stat-number { font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1.15; letter-spacing: -0.02em; }
.stat-label { color: var(--gray-500); font-size: 0.9rem; margin-top: 2px; font-weight: 500; }

/* === Features Grid === */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  text-align: center; padding: 36px 24px; border-radius: var(--radius-lg);
  transition: all var(--transition); background: var(--white);
  border: 1px solid transparent;
}
.feature-card:hover {
  background: var(--white); border-color: var(--gray-200);
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.feature-card .feat-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.feature-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: var(--gray-500); font-size: 0.93rem; }

/* === Product Grid === */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.product-card .prod-img {
  width: 100%; height: 230px; object-fit: contain; background: var(--gray-50);
  padding: 24px; transition: transform var(--transition);
}
.product-card:hover .prod-img { transform: scale(1.03); }
.product-card .prod-info { padding: 20px 24px 24px; }
.product-card .prod-model { font-size: 0.82rem; color: var(--accent); font-weight: 700; margin-bottom: 4px; letter-spacing: 0.02em; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.product-card .prod-specs { list-style: none; margin-bottom: 16px; }
.product-card .prod-specs li {
  font-size: 0.84rem; color: var(--gray-500); padding: 3px 0;
  display: flex; justify-content: space-between;
}
.product-card .prod-specs li span:first-child { color: var(--gray-400); }
.product-card .prod-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.product-card .prod-moq { font-size: 0.82rem; color: var(--gray-500); }
.product-card .btn-sm {
  padding: 8px 18px; font-size: 0.84rem; border-radius: 6px;
  background: var(--primary); color: var(--white); border: none; cursor: pointer;
  text-decoration: none; font-weight: 600; transition: all var(--transition);
}
.product-card .btn-sm:hover { background: var(--primary-light); box-shadow: 0 2px 8px rgba(26,115,232,0.3); }

/* === Product Detail === */
.prod-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.prod-gallery { position: sticky; top: 96px; }
.prod-gallery .main-img {
  width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--gray-50);
  border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
  transition: opacity var(--transition);
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 72px; height: 72px; object-fit: contain; border-radius: var(--radius);
  border: 2px solid var(--gray-200); cursor: pointer; background: var(--gray-50);
  padding: 4px; transition: all var(--transition);
}
.gallery-thumbs img:hover { border-color: var(--primary-light); transform: scale(1.08); }
.gallery-thumbs img.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-light); }
.prod-detail-content h1 { margin-bottom: 4px; font-size: 1.8rem; }
.prod-detail-content .prod-model-tag {
  display: inline-block; background: var(--accent); color: var(--white); padding: 5px 14px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.spec-table tr { border-bottom: 1px solid var(--gray-100); }
.spec-table tr:nth-child(even) { background: var(--gray-50); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 13px 20px; font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 600; color: var(--gray-700); width: 42%; }
.feature-list { list-style: none; margin: 16px 0 24px; }
.feature-list li {
  padding: 9px 0 9px 30px; position: relative; font-size: 0.93rem;
}
.feature-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 1rem;
}
.pricing-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg); padding: 28px 24px; margin: 24px 0;
  color: var(--white);
}
.pricing-box .price-label { font-size: 0.85rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.pricing-box .price-value { font-size: 2rem; font-weight: 700; color: var(--white); }
.pricing-box .moq-info { font-size: 0.9rem; color: var(--gray-300); margin-top: 4px; }

/* === Inquiry Form === */
.inquiry-form { margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 18px; border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  font-size: 0.94rem; font-family: inherit; transition: all var(--transition);
  background: var(--white);
}
.form-group input:hover, .form-group textarea:hover, .form-group select:hover { border-color: var(--gray-400); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44,95,138,0.1), 0 1px 3px rgba(0,0,0,0.05);
}

/* === Catalog Filter === */
.catalog-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center;
}
.filter-btn {
  padding: 10px 22px; border: 1.5px solid var(--gray-300); border-radius: 25px;
  background: var(--white); color: var(--gray-600); font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--primary-light); color: var(--primary); background: var(--gray-50); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 2px 8px rgba(26,115,232,0.25); }

/* === About Page === */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white); padding: 80px 0; text-align: center;
}
.about-hero h1 { color: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid img { border-radius: var(--radius-lg); object-fit: cover; width: 100%; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cert-item {
  text-align: center; padding: 28px 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all var(--transition);
}
.cert-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-2px); }
.cert-item img { max-height: 80px; margin: 0 auto 12px; }
.cert-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cert-item p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; }

/* === Contact Page === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { margin-bottom: 16px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-method .icon { font-size: 1.4rem; min-width: 28px; }
.contact-method h4 { margin-bottom: 2px; font-size: 1rem; }
.contact-method p { color: var(--gray-500); font-size: 0.93rem; margin-bottom: 0; }

/* === Company Gallery === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery-grid img {
  border-radius: var(--radius); object-fit: cover; height: 210px; width: 100%;
  transition: all var(--transition); border: 1px solid var(--gray-100);
}
.gallery-grid img:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 5%, #d4621a 100%);
  color: var(--white); text-align: center; padding: 72px 0;
}
.cta-section h2 { color: var(--white); font-size: 2rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === Footer === */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: var(--white); margin-bottom: 18px; font-size: 0.95rem; letter-spacing: 0.02em; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 34px; width: auto; }
.footer p { font-size: 0.88rem; line-height: 1.75; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--gray-400); font-size: 0.88rem; transition: all var(--transition); }
.footer ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--gray-700); padding-top: 24px;
  text-align: center; font-size: 0.84rem; color: var(--gray-500);
}

/* === Breadcrumb === */
.breadcrumb { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 32px; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .hero-trust { justify-content: center; }
  .hero-btns { justify-content: center; }
  .prod-detail, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; } h2 { font-size: 1.4rem; }
  .hero { min-height: auto; padding: 60px 0 40px; overflow: visible; }
  .hero .container { display: block; text-align: center; }
  .hero-content { max-width: 100%; padding: 0 8px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .hero-badge { margin-bottom: 16px; }
  .hero-visual { display: none; }
  .hero-trust { justify-content: center; }
  .hero-btns { justify-content: center; }
  section { padding: 48px 0; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px;
    border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
    z-index: 9999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; }
  .navbar .container { position: relative; overflow: visible; }
  .nav-toggle { display: block !important; cursor: pointer; z-index: 10000; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
  .stats-row { gap: 24px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card .prod-img { height: 160px; padding: 12px; }
  .product-card .prod-info { padding: 14px 16px 18px; }
  .product-card h3 { font-size: 0.95rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .prod-detail { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .spec-table td { padding: 10px 14px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 150px; }
  .cat-card .cat-img { height: 120px; }
  .cat-card { padding: 20px 16px 16px; }
  .cat-card h3 { font-size: 0.95rem; }
  .cat-card p { font-size: 0.8rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.93rem; }
  .hero { padding: 48px 0 32px; }
  .cta-section h2 { font-size: 1.4rem; }
  