
:root {
  --bg:        #f7f6ff;
  --bg-card:   #eeedf8;
  --bg-card-2: #e7e5f4;
  --bg-deep:   #f0effe;
  --purple:    #6B5FE6;
  --purple-lt: #C4BEFF;
  --purple-dim:#3d3799;
  --pink:      #E8517A;
  --pink-lt:   #F5A0BA;
  --white:     #ffffff;
  --text:      #16142e;
  --text-2:    #3b3860;
  --text-muted:#6b6896;
  --text-dim:  #9d9bbf;
  --border:    rgba(107,95,230,0.12);
  --border-md: rgba(107,95,230,0.20);
  --border-hi: rgba(107,95,230,0.36);
  --grad:        linear-gradient(135deg, #6B5FE6 0%, #E8517A 100%);
  --grad-subtle: linear-gradient(135deg, rgba(107,95,230,0.10) 0%, rgba(232,81,122,0.06) 100%);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:    8px;
  --radius-lg: 14px;
  --transition: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-stripe {
  height: 3px;
  background: linear-gradient(90deg, #6B5FE6, #E8517A, #C4BEFF, #6B5FE6);
  background-size: 200% 100%;
  animation: stripe 4s linear infinite;
}
@keyframes stripe {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 max(5%, calc((100% - 1200px) / 2));
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo .logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-logo .logo-text span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.6; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 14px;
  background: transparent;
  z-index: 200;
  min-width: 230px;
}

.dropdown-inner {
  background: var(--bg-card-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: all var(--transition);
}

.dropdown a:hover {
  background: rgba(107,95,230,0.14);
  color: var(--purple);
}

.nav-cta {
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 22px;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 96px max(5%, calc((100% - 1200px) / 2)) 84px;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(107,95,230,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,81,122,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 520px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(107,95,230,0.18));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,95,230,0.10);
  border: 1px solid rgba(107,95,230,0.28);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(107,95,230,0.06);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section { padding: 76px max(5%, calc((100% - 1200px) / 2)); position: relative; z-index: 1; }
.section-alt { background: var(--bg-deep); }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.65;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition);
}

.svc-card:hover { border-color: var(--border-hi); background: var(--bg-card-2); transform: translateY(-2px); }
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(107,95,230,0.10);
  border: 1px solid rgba(107,95,230,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.svc-icon svg { width: 20px; height: 20px; stroke: var(--purple); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.svc-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.svc-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--purple); }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }

.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 22px; }

.why-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}

.why-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.why-text  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }

.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }

.review-stars { color: #F5C542; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--purple); }

/* ── AREA PILLS ── */
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.area-pill {
  font-size: 13px; font-weight: 500;
  padding: 6px 14px;
  background: rgba(107,95,230,0.08);
  border: 1px solid rgba(107,95,230,0.20);
  border-radius: 20px;
  color: var(--text-2);
  transition: all var(--transition);
}

.area-pill:hover { background: rgba(107,95,230,0.14); border-color: rgba(107,95,230,0.34); color: var(--purple); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }

.contact-info h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--text-2); margin-bottom: 28px; line-height: 1.65; }

.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(107,95,230,0.10);
  border: 1px solid rgba(107,95,230,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--purple); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.contact-detail-label { font-size: 11px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-detail-value a { color: var(--purple); }

/* ── FORM ── */
.contact-form { background: var(--bg-card); border: 1px solid var(--border-md); border-radius: var(--radius-lg); padding: 28px; }
.form-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.form-row { margin-bottom: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }

.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 10px 13px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,95,230,0.15);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 6px;
  transition: opacity var(--transition);
}

.form-submit:hover { opacity: 0.88; }

/* ── FOOTER ── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 52px max(5%, calc((100% - 1200px) / 2)) 28px; }

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

.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; margin-bottom: 8px; }
.footer-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.footer-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.footer-contact-links a { display: block; font-size: 14px; font-weight: 500; color: var(--purple); margin-bottom: 6px; transition: color var(--transition); }
.footer-contact-links a:hover { color: var(--text); }

.footer-col-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 9px; transition: color var(--transition); }
.footer-col a:hover { color: var(--purple); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-dim); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--bg-deep); padding: 60px max(5%, calc((100% - 1200px) / 2)) 50px; position: relative; overflow: hidden; }

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(107,95,230,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.breadcrumb { font-size: 13px; font-weight: 500; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { color: var(--purple); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
  position: relative; z-index: 1;
  max-width: 700px;
}

.page-hero p { font-size: 16px; color: var(--text-2); max-width: 560px; margin-bottom: 24px; font-weight: 400; line-height: 1.65; position: relative; z-index: 1; }

/* ── CONTENT (service pages) ── */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }

.content-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin: 36px 0 12px; letter-spacing: -0.01em; }
.content-body h2:first-child { margin-top: 0; }
.content-body p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }

.content-body ul { list-style: none; margin-bottom: 20px; }
.content-body ul li { font-size: 15px; color: var(--text-2); padding: 7px 0 7px 22px; position: relative; line-height: 1.6; }
.content-body ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 2px; background: var(--grad); border-radius: 1px; }

/* ── SIDEBAR ── */
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border-md); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 14px; position: sticky; top: 92px; }
.sidebar-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.sidebar-phone { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.sidebar-phone a { color: var(--text); }

/* ── FAQ ── */
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }

.faq-q { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-q::after { content: '+'; color: var(--purple); font-size: 20px; font-weight: 400; flex-shrink: 0; margin-top: -2px; }
.faq-item.open .faq-q::after { content: '−'; }

.faq-a { font-size: 14px; color: var(--text-2); line-height: 1.7; display: none; margin-top: 10px; }
.faq-item.open .faq-a { display: block; }

/* ── LOCATION PAGES ── */
.nearby-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.nearby-pill { font-size: 12px; font-weight: 500; padding: 4px 12px; background: rgba(107,95,230,0.08); border: 1px solid rgba(107,95,230,0.18); border-radius: 20px; color: var(--text-muted); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(247,246,255,0.88)); padding: 20px 14px 12px; font-size: 12px; font-weight: 500; color: var(--text-2); }

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 2px dashed var(--border-md);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--text-muted); font-size: 13px; font-weight: 500;
}
.photo-placeholder svg { width: 32px; height: 32px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border-md); padding: 16px 5%; gap: 16px; }
  .nav-mobile-btn { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 600px) {
  .nav { height: 64px; }
  .nav-logo .logo-img { height: 42px; }
  .hero { padding: 64px 5% 56px; }
  .section { padding: 52px 5%; }
  .hero-content { flex-direction: column-reverse; gap: 32px; }
  .hero-logo img { width: 180px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* Reserve nav height before JS injects it — prevents layout shift */
#site-nav { min-height: 76px; }

/* ── SERVICE PAGE PHOTOS ── */
.service-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.service-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.before-after-panel {
  position: relative;
  overflow: hidden;
}
.before-after-panel img {
  width: 100%;
  height: auto;
  display: block;
}
.before-after-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(22,20,46,0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
  .before-after { grid-template-columns: 1fr; }

}

/* ── HOMEPAGE HERO PHOTO ── */
.hero-showcase {
  background: var(--bg-deep);
  overflow: hidden;
}
.hero-showcase-inner {
  padding: 32px 0 0;
}
.hero-showcase-inner img {
  width: 100%;
  height: auto;
  display: block;
}
