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

:root {
  --dark: #1a1a1a;
  --orange: #F5A623;
  --light: #f5f5f5;
  --mid: #555;
}

body {
  font-family: 'Georgia', serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── INTRO ── */
#intro {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

#intro.exit {
  transform: translateY(-100%);
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro-logo {
  width: 240px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-logo.show {
  opacity: 1;
  transform: translateY(0);
}

#intro-bar {
  width: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(245,166,35,0.7);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#intro-bar.grow { width: 240px; }

.intro-tagline {
  color: #aaa;
  font-family: sans-serif;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro-tagline.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
.navbar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  padding: 6px 14px;
  font-family: sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  color: #aaa;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.social-icons a:hover { color: var(--orange); }

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 4px 12px;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle:hover {
  background: var(--orange);
  color: var(--dark);
}

/* ── HERO (home) ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-sub {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 36px;
  font-style: italic;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(245,166,35,0.04) 40px,
    rgba(245,166,35,0.04) 41px
  );
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--orange);
  font-family: sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--dark);
  padding: 14px 32px;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #d4891a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}

.btn-glow {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── SECTION TITLES ── */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--orange);
}

/* ── DIAGONAL DIVIDERS ── */
.diagonal-down {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 100px;
}
.diagonal-up {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  padding-top: 100px;
  margin-top: -40px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #e8940a 0%, #F5A623 50%, #f7bb4a 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 200px,
    rgba(255,255,255,0.06) 200px, rgba(255,255,255,0.06) 201px
  );
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  text-align: center;
  color: var(--dark);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  font-family: sans-serif;
  line-height: 1;
}

.stat-label {
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

/* ── SERVICES ── */
.services {
  padding: 80px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 28px 24px;
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(245,166,35,0.2);
  border-top-color: var(--orange);
}

.service-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1rem;
  font-family: sans-serif;
  font-weight: 600;
  color: var(--dark);
}

/* ── SERVICES CTA ── */
.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── BEFORE & AFTER ── */
.transformations {
  padding: 80px 0;
  background: var(--dark);
}

.transformations .section-title {
  color: #fff;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}

.ba-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ba-item:hover img {
  transform: scale(1.04);
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.ba-label.before { background: #111; color: #fff; }
.ba-label.during { background: var(--orange); color: #111; }
.ba-label.after  { background: var(--orange); color: #111; }

/* ── GALLERY ── */
.gallery {
  padding: 80px 0;
  background: var(--light);
}

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

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 3px solid var(--orange);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--orange); }

/* ── ABOUT ── */
.about {
  padding: 80px 0;
}

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

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--orange);
  z-index: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--orange);
}

.about-text p {
  color: var(--mid);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--orange);
  padding: 60px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(0,0,0,0.65);
  font-family: sans-serif;
  margin-bottom: 28px;
}

.cta-band .btn {
  background: var(--dark);
  color: #fff;
}

.cta-band .btn:hover {
  background: #333;
}

/* ── CONTACT ── */
.contact {
  padding: 80px 0;
  background: var(--dark);
}

.contact h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--orange);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: #aaa;
  font-family: sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-info a {
  color: #aaa;
  text-decoration: none;
}

.contact-info a:hover { color: var(--orange); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  background: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
  font-family: sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── FOOTER ── */
.footer {
  background: #111;
  padding: 40px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.footer-logo-wrap img {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: #888;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer-social-icons {
  display: flex;
  gap: 14px;
}

.footer-social-icons a {
  color: #888;
  transition: color 0.2s;
  display: flex;
}

.footer-social-icons a:hover { color: var(--orange); }

.footer-social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #555;
  font-family: sans-serif;
  font-size: 0.78rem;
}

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--orange);
  color: var(--dark);
  text-decoration: none;
  padding: 14px 22px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
}

.float-call:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(245,166,35,0.7);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,166,35,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(245,166,35,0.85); }
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--dark);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover { background: var(--orange); color: var(--dark); }

/* ── FADE-IN ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .ba-pair { grid-template-columns: 1fr; }
  .nav-links a { padding: 6px 10px; font-size: 0.8rem; }
  .logo-img { height: 45px; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid #2a2a2a;
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-family: sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.trust-icon {
  font-size: 1.4rem;
}

.trust-item strong {
  color: var(--orange);
  display: block;
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: #333;
}

/* ── PROCESS PAGE ── */
.process-section {
  padding: 80px 0;
  background: #fff;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.step-number {
  width: 84px;
  height: 84px;
  min-width: 84px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--orange);
  position: relative;
  z-index: 1;
}

.step-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 20px;
}

.step-body p {
  color: var(--mid);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* ── FAQ ── */
.faq-section {
  padding: 80px 0;
  background: var(--light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-left: 3px solid var(--orange);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question:hover { background: #fafafa; }

.faq-arrow {
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ── GALLERY FILTER ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 8px 24px;
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}

.gallery-item.hidden {
  display: none;
}

/* ── BEFORE/AFTER SLIDER ── */
.slider-section {
  padding: 80px 0;
  background: var(--dark);
}

.slider-section .section-title {
  color: #fff;
}

.ba-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ba-slider-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
}

.ba-slider-after {
  position: absolute;
  inset: 0;
}

.ba-slider-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-slider-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.ba-slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider-handle::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: var(--dark);
  font-size: 0.65rem;
  padding: 8px 10px;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.ba-slider-label {
  position: absolute;
  bottom: 12px;
  font-family: sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.ba-slider-label.before {
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

.ba-slider-label.after {
  right: 12px;
  background: var(--orange);
  color: var(--dark);
}

@media (max-width: 768px) {
  .ba-sliders { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .process-steps::before { left: 38px; }
  .step-number { width: 76px; height: 76px; min-width: 76px; }
}
