/* ============================================================
   TECHBROS ITAD — style.css  (brand: #7CC644 green · #5271FF blue · Instrument Sans)
   ============================================================ */

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

:root {
  --green:       #7CC644;
  --green-d:     #64a835;
  --blue:        #5271FF;
  --blue-d:      #3a57e8;
  --dark:        #0D3372;
  --text:        #222222;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --bg:          #ffffff;
  --bg-alt:      #f7f9fb;
  --bg-dark:     #0b1423;
  --radius:      10px;
  --radius-lg:   14px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --max-w:       1180px;
  --hh:          68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; }
.section { padding: 80px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--bg-dark); }
.text-center { text-align: center; }

/* ── type ── */
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.eyebrow.light { color: #8ed65a; }
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 40px;
}
h2.light { color: #fff; }
h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-d); border-color: var(--green-d); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-lg { padding: 14px 28px; font-size: .95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════
   IMAGE SECTIONS
══════════════════════════════════ */

/* Full-bleed image break with overlay CTA */
.img-break {
  position: relative; overflow: hidden;
  height: 420px;
}
.img-break img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  display: block;
}
.img-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,20,35,.85) 45%, rgba(11,20,35,.4));
  display: flex; align-items: center;
}
.img-break-content {
  max-width: var(--max-w); width: 100%;
  margin: 0 auto; padding: 0 28px;
}
.img-break-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.img-break-content h2 {
  color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px; max-width: 540px;
}
.img-break-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Split image + copy feature rows */
.img-feature { padding: 80px 0; }
.img-feature.bg-alt { background: var(--bg-alt); }
.img-feature-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.img-feature-flip .img-feature-inner { direction: rtl; }
.img-feature-flip .img-feature-inner > * { direction: ltr; }

.img-feature-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-feature-photo img {
  width: 100%; height: 360px; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.img-feature-photo:hover img { transform: scale(1.02); }

.img-feature-copy h2 { margin-bottom: 14px; }
.img-feature-copy > p {
  font-size: .93rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 24px;
}

.feature-list {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; background: #f0fdf4;
  border-radius: 50%; color: var(--green);
  font-size: .75rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 800px) {
  .img-break { height: 300px; }
  .img-break-overlay { background: linear-gradient(to bottom, rgba(11,20,35,.7), rgba(11,20,35,.85)); }
  .img-feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .img-feature-flip .img-feature-inner { direction: ltr; }
  .img-feature-photo img { height: 240px; }
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--hh);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 44px; width: auto; object-fit: contain; display: block; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: 8px;
  text-decoration: none;
  transition: background .18s;
}
.header-cta:hover { background: var(--green-d); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  background-size: cover;
  background-position: center 30%;
  padding: 64px 0 72px;
  color: #fff;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,20,35,.92) 0%, rgba(13,51,114,.82) 55%, rgba(11,20,35,.65) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 430px;
  gap: 56px; align-items: start;
  position: relative; z-index: 1;
}

/* cert pills */
.cert-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pill {
  font-size: .67rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 4px 11px; border-radius: 100px;
}

/* headline */
.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 18px;
}
.h1-accent { color: #7CC644; }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 500px; line-height: 1.7; margin-bottom: 32px;
}

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

/* mini stats */
.hero-stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hstat { text-align: center; }
.hstat-n { display: block; font-size: 1.55rem; font-weight: 700; line-height: 1; }
.hstat-l { font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500; }
.hstat-div { width: 1px; height: 32px; background: rgba(255,255,255,.2); }

/* ── form card ── */
.form-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden; color: var(--text);
}

/* tabs */
.form-tabs { display: flex; border-bottom: 2px solid var(--border); }
.tab-btn {
  flex: 1; padding: 14px 12px;
  font-family: inherit; font-size: .85rem; font-weight: 700;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: color .15s, border-color .15s;
}
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-btn:hover:not(.active) { color: var(--text); }

/* panels */
.tab-panel { padding: 24px 28px 28px; }
.tab-panel.hidden { display: none; }
.form-note { font-size: .78rem; color: var(--text-muted); margin-bottom: 18px; }

/* form fields */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.frow .fg { margin-bottom: 0; }
.fg:last-child { margin-bottom: 0; }

.fg label { font-size: .75rem; font-weight: 700; color: var(--text); }

.fg input, .fg select, .fg textarea {
  padding: 9px 13px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-size: .87rem; font-family: inherit; color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124,198,68,.15);
}
.fg textarea { resize: vertical; min-height: 64px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}

.form-disclaimer { text-align: center; font-size: .7rem; color: var(--text-muted); margin-top: 8px; }

/* success state */
.form-success[hidden] { display: none; }
.form-success { text-align: center; padding: 32px 16px; }
.success-check {
  width: 60px; height: 60px; background: #f0fdf4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }
.form-success a { color: var(--green); font-weight: 700; text-decoration: none; }

/* ══════════════════════════════════
   CLIENT LOGOS BAR
══════════════════════════════════ */
.clients-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.clients-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.clients-label {
  font-size: .72rem; font-weight: 700;
  color: var(--text-muted); white-space: nowrap;
  text-transform: uppercase; letter-spacing: .08em;
}
.clients-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cl-logo { height: 28px; width: auto; opacity: .55; transition: opacity .2s; }
.cl-logo:hover { opacity: .85; }

/* ══════════════════════════════════
   RISK GRID
══════════════════════════════════ */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.risk-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.risk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d1d5db; }
.risk-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.risk-icon.red    { background: #fef2f2; color: #dc2626; }
.risk-icon.orange { background: #fff7ed; color: #ea580c; }
.risk-icon.yellow { background: #fefce8; color: #b45309; }
.risk-icon.blue   { background: #eff6ff; color: var(--blue); }
.risk-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.svc-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(124,198,68,.12);
  transform: translateY(-3px);
}
.svc-icon {
  width: 44px; height: 44px; background: #f0fdf4;
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--green); margin-bottom: 16px;
}
.svc-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px; align-items: start;
}
.process-step { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  background: var(--green); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: .95rem; color: #fff; margin-bottom: 8px; }
.process-step p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.process-arrow {
  font-size: 1.5rem; color: rgba(255,255,255,.25);
  padding-top: 16px; user-select: none;
}

/* ══════════════════════════════════
   CERTIFICATIONS
══════════════════════════════════ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 16px;
}
.cert-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 20px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.cert-card:hover { border-color: var(--green); transform: translateY(-2px); }
.cert-badge {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; padding: 5px 12px; border-radius: 6px;
  margin-bottom: 12px;
}
.cert-badge.green { background: #f0fdf4; color: var(--green-d); border: 1px solid #bbf7d0; }
.cert-badge.blue  { background: #eff6ff; color: var(--blue-d); border: 1px solid #bfdbfe; }
.cert-badge.dark  { background: #f1f5f9; color: var(--dark); border: 1px solid #cbd5e1; }
.cert-card h3 { font-size: .88rem; margin-bottom: 6px; }
.cert-card p { font-size: .76rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.testi-card:hover { box-shadow: var(--shadow); border-color: #d1d5db; }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote {
  font-size: .88rem; color: #444; line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; font-weight: 700; }
.testi-author span { font-size: .73rem; color: var(--text-muted); }

/* ══════════════════════════════════
   MID-PAGE BOOK BANNER
══════════════════════════════════ */
.book-banner {
  background: #f0fdf4;
  border-top: 2px solid #bbf7d0;
  border-bottom: 2px solid #bbf7d0;
  padding: 32px 0;
}
.book-banner-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.book-banner-copy h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.book-banner-copy p {
  font-size: .82rem; color: var(--text-muted);
}
.book-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-outline-dark {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); background: #f0fdf4; }

@media (max-width: 768px) {
  .book-banner-inner { flex-direction: column; align-items: flex-start; }
  .book-banner-btns { width: 100%; }
  .book-banner-btns .btn { flex: 1; justify-content: center; text-align: center; }
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 18px 0; list-style: none;
  font-size: .95rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  transition: transform .22s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--green); }
.faq-body {
  font-size: .875rem; color: var(--text-muted);
  line-height: 1.7; padding-bottom: 18px; max-width: 640px;
}

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0b1423 0%, #0D3372 100%);
  padding: 80px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 110%, rgba(124,198,68,.18), transparent);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; max-width: 660px; }
.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; color: #fff; margin-bottom: 14px;
}
.cta-section p {
  font-size: 1rem; color: rgba(255,255,255,.7);
  margin-bottom: 32px; line-height: 1.65;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer { background: #060e1f; padding: 56px 0 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px 44px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-logo { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 14px; display: block; }
.footer-brand > p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 10px; }
.footer-certs { font-size: .68rem; color: rgba(255,255,255,.3); letter-spacing: .06em; font-weight: 600; }
.footer-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: .83rem; color: rgba(255,255,255,.5);
  text-decoration: none; margin-bottom: 8px; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: .76rem; color: rgba(255,255,255,.35); line-height: 1.65; margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 28px; max-width: var(--max-w); margin: 0 auto;
}
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.28); }
.footer-bottom a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* mobile call button */
.mobile-call-btn {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 200;
  background: var(--green); color: #fff; border-radius: 100px;
  padding: 12px 20px; font-weight: 700; font-size: .85rem;
  text-decoration: none; box-shadow: 0 4px 20px rgba(124,198,68,.35);
  align-items: center; gap: 8px; transition: background .18s;
}
.mobile-call-btn:hover { background: var(--green-d); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .process-grid {
    grid-template-columns: 1fr; max-width: 460px;
    margin: 0 auto; gap: 0;
  }
  .process-arrow { display: none; }
  .process-step {
    text-align: left; display: flex; gap: 20px;
    align-items: flex-start; padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .process-step:last-child { border-bottom: none; }
  .step-num { flex-shrink: 0; margin: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --hh: 58px; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .frow { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .clients-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mobile-call-btn { display: flex; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .tab-btn { padding: 12px 8px; font-size: .78rem; }
  .tab-panel { padding: 20px 18px 24px; }
}

@media (max-width: 400px) {
  .hero-copy h1 { font-size: 1.8rem; }
  .logo-img { height: 36px; }
}
