/* ============================================================
   WISETECH INC. — GLOBAL STYLESHEET
   Font: Outfit (headings) + Source Sans 3 (body)
   Palette: Navy #0D2B4E | Blue #1565C0 | Cyan accent #00BCD4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --navy:      #0D2B4E;
  --blue:      #1565C0;
  --blue-mid:  #1976D2;
  --cyan:      #00BCD4;
  --cyan-lt:   #E0F7FA;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --gray-lt:   #EEF2F7;
  --gray:      #8A99AD;
  --gray-dk:   #4A5568;
  --text:      #1A202C;
  --shadow:    0 4px 24px rgba(13,43,78,0.10);
  --shadow-lg: 0 12px 40px rgba(13,43,78,0.16);
  --radius:    10px;
  --radius-lg: 18px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }

img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
.btn-primary:hover {
  background: #00ACC1;
  border-color: #00ACC1;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,188,212,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,43,78,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo span { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.80);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav__links a:hover,
.nav__links a.active { color: var(--cyan); background: rgba(0,188,212,0.1); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  border: 1px solid var(--gray-lt);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
}
/* Invisible bridge — fills gap between nav item and dropdown so mouse doesn't lose hover */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  color: var(--navy) !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: background var(--transition), color var(--transition);
}
.nav__dropdown-menu a:hover { background: var(--gray-lt) !important; color: var(--blue) !important; }
.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #153E72 60%, #1565C0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,188,212,0.15);
  border: 1px solid rgba(0,188,212,0.35);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero__sub {
  font-size: 19px;
  color: rgba(255,255,255,0.80);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-lt);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-item__icon {
  width: 48px; height: 48px;
  background: var(--cyan-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.trust-item__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}
.trust-item__desc { font-size: 14px; color: var(--gray-dk); line-height: 1.5; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy p, .section--navy .section__sub { color: var(--white); }

.section__label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 18px;
  color: var(--gray-dk);
  max-width: 620px;
  line-height: 1.7;
}
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-lt);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--cyan-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc { font-size: 15px; color: var(--gray-dk); line-height: 1.65; margin-bottom: 20px; }
.service-card__link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ── INDUSTRY PILLS ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-lt);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
  text-decoration: none;
}
.industry-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.industry-card__icon {
  font-size: 32px;
  width: 60px; height: 60px;
  background: var(--gray-lt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.industry-card:hover .industry-card__icon { background: var(--cyan-lt); }
.industry-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.industry-card__desc { font-size: 14px; color: var(--gray-dk); line-height: 1.6; }

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 300; }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--cyan);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Outfit', sans-serif;
  font-size: 80px;
  color: var(--cyan-lt);
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}
.testimonial-card__text {
  font-size: 17px;
  color: var(--gray-dk);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 24px;
}
.testimonial-card__author {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.testimonial-card__role { font-size: 14px; color: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1565C0 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner__sub { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 460px; }
.cta-banner__btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, #153E72 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 600px; }

/* ── SERVICE DETAIL ── */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.service-detail__includes {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-lt);
  position: sticky;
  top: 90px;
}
.service-detail__includes h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cyan);
}
.includes-list { list-style: none; }
.includes-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-lt);
  font-size: 15px;
  color: var(--gray-dk);
  display: flex;
  align-items: center;
  gap: 10px;
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; }
.contact-info__item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px;
}
.contact-info__icon {
  width: 48px; height: 48px;
  background: var(--cyan-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info__label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info__value { font-size: 17px; color: var(--navy); font-weight: 600; }
.contact-info__sub { font-size: 14px; color: var(--gray); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-lt);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,188,212,0.15);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── FOOTER ── */
.footer {
  background: #07182D;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand-name {
  margin-bottom: 12px;
}
.footer__brand-name img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__brand-name span { display: none; }
.footer__tagline { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer__contact-line {
  font-size: 14px;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.footer__contact-line a { color: rgba(255,255,255,0.65); }
.footer__contact-line a:hover { color: var(--cyan); }
.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--cyan); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── CHECKLIST / BULLET LIST ── */
.check-list { list-style: none; margin: 20px 0; }
.check-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: var(--gray-dk);
  border-bottom: 1px solid var(--gray-lt);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ── PAIN POINTS ── */
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin: 24px 0; }
.pain-card {
  background: #FFF8F0;
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid #FF8C00;
  font-size: 15px;
  color: var(--gray-dk);
}
.pain-card::before { content: '⚠ '; color: #FF8C00; font-size: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 48px 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 80px; }
  .section { padding: 64px 0; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav__close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ── UTILITY ── */
.text-cyan { color: var(--cyan); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
