/* ============================================
   EasySet — New Design 2025
   "Signal Beyond Limits"
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

:root {
  --bg:      #080c12;
  --bg2:     #0d1520;
  --bg3:     #111c2e;
  --accent:  #00c8ff;
  --accent2: #ff6b2b;
  --text:    #e8edf5;
  --muted:   #7a8ba0;
  --border:  rgba(0,200,255,0.14);
  --border2: rgba(0,200,255,0.28);
  --radius:  10px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Signal Grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAVIGATION ── */
.ez-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,12,18,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.ez-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ez-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ez-logo img {
  height: 38px;
  width: auto;
  filter: brightness(1.15) contrast(1.1);
}
.ez-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.ez-menu > li { position: relative; }
.ez-menu > li > a {
  display: block;
  padding: 0.45rem 1rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.ez-menu > li > a:hover,
.ez-menu > li.active > a { color: var(--accent); background: rgba(0,200,255,0.07); }

/* Dropdown */
.ez-dropdown {
  display: none;
  position: absolute;
  top: 100%;           /* flush to nav item — no gap */
  left: 0;
  min-width: 220px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.75rem 0.5rem 0.5rem; /* top padding creates visual breathing room */
  list-style: none;
  z-index: 300;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
/* Bridge: extend hover area above dropdown to cover nav-item bottom edge */
.ez-menu > li { padding-bottom: 4px; margin-bottom: -4px; }
.ez-menu > li:hover .ez-dropdown { display: block; }
.ez-dropdown li a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.ez-dropdown li a:hover { color: var(--accent); background: rgba(0,200,255,0.07); }

/* Mobile nav toggle (placeholder) */
.ez-nav-contact {
  padding: 0.45rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.ez-nav-contact:hover { background: var(--accent); color: var(--bg); }

/* ── PAGE WRAPPER ── */
.ez-page { position: relative; z-index: 1; padding-top: 70px; }

/* ── PAGE HEADER (subpages) ── */
.ez-page-header {
  position: relative;
  padding: 5rem 3rem 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.ez-page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse at 80% 20%, rgba(0,200,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ez-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.8rem;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 4px;
  margin-bottom: 1rem;
}
.ez-page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.ez-page-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  font-weight: 300;
}

/* ── CONTENT AREA ── */
.ez-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
}

/* ── PRODUCT SECTION ── */
.ez-product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.ez-product-block:last-child { border-bottom: none; }
.ez-product-block.reverse { direction: rtl; }
.ez-product-block.reverse > * { direction: ltr; }

.ez-product-info {}
.ez-product-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.5rem;
  display: block;
}
.ez-product-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.ez-product-info .tagline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.ez-spec-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.ez-spec-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.ez-spec-list li::before {
  content: '▸';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.ez-spec-list li strong { color: var(--text); font-weight: 500; }

.ez-quote {
  padding: 1.25rem 1.5rem;
  background: var(--bg3);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* Product image box */
.ez-product-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
  aspect-ratio: 4/3;
  position: relative;
}
.ez-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}
.ez-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
}
.ez-img-placeholder span { font-size: 3rem; }
.ez-img-placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CARDS GRID ── */
.ez-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
.ez-card {
  background: var(--bg2);
  padding: 2rem;
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ez-card:hover { background: var(--bg3); }
.ez-card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.ez-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.2px;
}
.ez-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.ez-card-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(0,200,255,0.08);
  color: var(--accent);
  border: 1px solid rgba(0,200,255,0.18);
}
.ez-card-tag.orange {
  background: rgba(255,107,43,0.08);
  color: var(--accent2);
  border-color: rgba(255,107,43,0.2);
}
.ez-card-arrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--muted);
  margin-top: 1.25rem;
  transition: color 0.2s, transform 0.2s;
}
.ez-card:hover .ez-card-arrow { color: var(--accent); transform: translateX(4px); }

/* ── INFO PANEL ── */
.ez-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.ez-info-panel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.ez-info-panel h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: -0.2px;
}
.ez-info-panel p, .ez-info-panel li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}
.ez-info-panel ul { list-style: none; }
.ez-info-panel ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0.5rem;
}
.ez-info-panel ul li:last-child { border-bottom: none; }
.ez-info-panel ul li::before { content: '·'; color: var(--accent); font-size: 1.2rem; line-height: 1.3; }

/* ── HERO (index only) ── */
.ez-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}
.ez-hero-orb {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.11) 0%, transparent 68%);
  pointer-events: none;
}
.ez-hero-orb2 {
  position: absolute;
  left: 35%;
  bottom: -20%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ez-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.38rem 1rem;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  background: rgba(0,200,255,0.05);
}
.ez-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.35;transform:scale(0.75);}
}
.ez-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -3px;
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.ez-hero h1 em { font-style: normal; color: var(--accent); }
.ez-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 530px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.ez-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  border-radius: 7px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.ez-hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.ez-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ez-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── SECTION ── */
.ez-section {
  position: relative;
  z-index: 1;
  padding: 5rem 3rem;
}
.ez-section-inner { max-width: 1280px; margin: 0 auto; }
.ez-section-head { margin-bottom: 2.5rem; }
.ez-section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}
.ez-section-head p { font-size: 0.95rem; color: var(--muted); max-width: 520px; font-weight: 300; line-height: 1.8; }
.ez-section.alt { background: var(--bg2); }

/* ── ABOUT LAYOUT ── */
.ez-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ez-feature-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.ez-feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ez-feature-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(0,200,255,0.1);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ez-feature-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
.ez-feature-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* Signal viz panel */
.ez-signal-panel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.ez-signal-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.14) 0%, transparent 70%);
}
.ez-signal-label {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.ez-bars { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.ez-bar-row { display: flex; align-items: center; gap: 1rem; }
.ez-bar-name { font-size: 0.72rem; color: var(--muted); width: 90px; text-align: right; }
.ez-bar-track {
  flex: 1; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.ez-bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(0,200,255,0.45));
  animation: barIn 1.8s ease forwards;
}
@keyframes barIn { from{width:0;} }
.ez-bar-pct { font-size: 0.72rem; color: var(--accent); font-weight: 600; width: 34px; }
.ez-signal-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-around;
}
.ez-sig-stat { text-align: center; }
.ez-sig-stat .n {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent); display: block;
}
.ez-sig-stat .l { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── CTA BANNER ── */
.ez-cta {
  text-align: center;
  padding: 5rem 3rem;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.ez-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}
.ez-cta h2 em { font-style: normal; color: var(--accent); }
.ez-cta p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

/* ── CONTACT INFO ── */
.ez-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.ez-contact-block {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.ez-contact-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.ez-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.ez-contact-item:last-child { border-bottom: none; }
.ez-contact-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.ez-contact-item a { color: var(--accent); text-decoration: none; }
.ez-contact-item a:hover { text-decoration: underline; }

/* Map embed */
.ez-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 340px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}
.ez-map-wrap iframe {
  width: 100%; height: 100%; border: none;
  filter: invert(0.88) hue-rotate(180deg);
}

/* ── FULL IMAGE SECTION ── */
.ez-img-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2rem;
}
.ez-img-section img {
  width: 100%; display: block;
  filter: brightness(0.85);
}
.ez-img-caption {
  padding: 1.25rem 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ── FOOTER ── */
.ez-footer {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
}
.ez-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ez-footer-logo img { height: 30px; filter: brightness(0.7); }
.ez-footer-links {
  display: flex; gap: 2rem; flex-wrap: wrap;
  list-style: none;
}
.ez-footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.ez-footer-links a:hover { color: var(--accent); }
.ez-footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ── SCROLL TO TOP ── */
.ez-gotop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 150;
  width: 44px; height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
}
.ez-gotop.show { opacity: 1; pointer-events: auto; }
.ez-gotop:hover { background: rgba(0,200,255,0.12); }

/* ── FADE-UP ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── CEO / ABOUT PAGE ── */
.ez-ceo-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  max-width: 800px;
}
.ez-ceo-title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.ez-ceo-name {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.75rem;
}
.ez-ceo-body { font-size: 0.95rem; color: var(--muted); line-height: 1.9; font-weight: 300; }
.ez-ceo-body p { margin-bottom: 1rem; }
.ez-ceo-established {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,200,255,0.25); border-radius: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ez-nav-inner { padding: 0 1.5rem; }
  .ez-menu { display: none; }
  .ez-hero { padding: 7rem 1.5rem 4rem; }
  .ez-section { padding: 4rem 1.5rem; }
  .ez-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ez-product-block { grid-template-columns: 1fr; }
  .ez-product-block.reverse { direction: ltr; }
  .ez-info-grid { grid-template-columns: 1fr; }
  .ez-contact-grid { grid-template-columns: 1fr; }
  .ez-content { padding: 2rem 1.5rem 4rem; }
  .ez-page-header { padding: 3.5rem 1.5rem 2.5rem; }
  .ez-footer-inner { flex-direction: column; align-items: flex-start; }
}
