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

:root {
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --dark: #0b1b34;
  --dark2: #1c2a44;
  --dark3: #0f1f3d;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #f5f6f8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  z-index: 9999;
  padding: 20px 0;
  border-top: 3px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}

.cookie-icon {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text p {
  font-size: 14px;
  color: #c5cfdf;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent);
  color: #111;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}
.cookie-accept:hover { background: var(--accent-dark); }

.cookie-decline {
  background: transparent;
  color: #9fb0d1;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  flex-shrink: 0;
}

.logo i {
  background: #f59e0b;
  color: #111;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  flex-shrink: 0;
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--accent);
  color: #111;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(245,158,11,0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 26px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s;
  display: inline-block;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url("images/polska.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,16,32,0.82) 0%, rgba(8,16,32,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.5);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroReveal 0.8s 0.2s ease forwards;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 62px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroReveal 0.8s 0.4s ease forwards;
}

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

.hero p {
  font-size: 18px;
  color: #d1d5db;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroReveal 0.8s 0.6s ease forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 0.8s 0.8s ease forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(24px); }
}


/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer {
  padding: 100px 0;
  background: var(--bg);
}

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

.offer-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid transparent;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}

.offer-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 18px;
}

.offer-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.offer-card ul {
  padding-left: 18px;
  color: var(--text-muted);
}

.offer-card li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-content .section-tag { display: block; margin-bottom: 10px; }

.about-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-content p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin-top: 22px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.about-list i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
  padding: 100px 0;
  background: #f9fafb;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.projects-title .section-subtitle {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.projects-title h2 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-overlay h3 {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-overlay p {
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.5;
}

.project-card:hover img { transform: scale(1.06); }
.project-card:hover .project-overlay { opacity: 1; }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-section {
  background: var(--dark);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.why-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.why-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.why-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.why-subtitle {
  color: #a8b3c5;
  font-size: 17px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--dark2);
  padding: 38px 28px;
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--accent);
}

.why-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  background: var(--dark3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i { font-size: 26px; color: var(--accent); }

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.why-card p {
  color: #a8b3c5;
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-v2 {
  padding: 100px 0;
  background: var(--bg);
}

.contact-card {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden;
  width: 100%;
}

.contact-info {
  background: var(--dark);
  color: white;
  padding: 52px 44px;
  width: 40%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.contact-info h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-intro {
  color: #b8c3d9;
  line-height: 1.65;
  margin-bottom: 40px;
  font-size: 15px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: #1a2b49;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.contact-item p {
  color: #b8c3d9;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form-v2 {
  background: white;
  padding: 52px 50px;
  width: 60%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.contact-form-v2 h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #f9fafb;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}

.form-btn {
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  font-size: 16px;
}

/* Form feedback */
.form-success, .form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}

.form-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-success i { color: #10b981; font-size: 20px; }

.form-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-error i { color: #ef4444; font-size: 20px; }

@media (max-width: 768px) {
  .contact-v2 { padding: 60px 0; }
  .contact-card {
    flex-direction: column;
    border-radius: 16px;
    overflow: visible;
    box-shadow: none;
  }
  .contact-info {
    width: 100%;
    padding: 36px 24px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }
  .contact-form-v2 {
    width: 100%;
    padding: 36px 24px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .contact-info h2 { font-size: 24px; }
  .contact-form-v2 h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}

.form-btn {
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  font-size: 16px;
}

/* Form feedback */
.form-success, .form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}

.form-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-success i { color: #10b981; font-size: 20px; }

.form-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-error i { color: #ef4444; font-size: 20px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #030c1a;
  color: #c5cfdf;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #7a8ba8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  letter-spacing: 1px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-col h4 {
  color: white;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #7a8ba8;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-col p {
  font-size: 14px;
  color: #7a8ba8;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 14px; color: #5a6d87; }

.footer-links a {
  margin-left: 20px;
  color: #5a6d87;
  font-size: 14px;
  transition: color 0.2s;
}

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Navbar */
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 10px 0 20px;
    border-top: 1px solid #eee;
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    padding: 13px 24px;
    font-size: 16px;
  }

  .nav-links a::after { display: none; }

  .hamburger { display: flex; }

  .nav-btn { display: none; }

  /* Hero */
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }

  /* Stats */

  /* Sections */
  .section-header h2 { font-size: 32px; }
  .offer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-links a { margin-left: 10px; }

  /* Cookie */
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-buttons { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; }

  /* Scroll top */
  .scroll-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .why-header h2 { font-size: 32px; }
  .contact-info { padding: 28px 18px; }
  .contact-form-v2 { padding: 28px 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; } /* prevents iOS zoom on focus */
}