@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --purple-dark: #4c1d95;
  --purple: #6d28d9;
  --purple-mid: #5b21b6;
  --purple-light: #a78bfa;
  --pink: #ec4899;
  --pink-bright: #f472b6;
  --pink-light: #fbcfe8;
  --white: #ffffff;
  --grey-light: #f3f4f6;
  --grey: #e5e7eb;
  --grey-dark: #6b7280;
  --text: #111827;
  --radius-card: 24px;
  --radius-btn: 99px;
  --hero-frame-padding: 10px;
  --hero-radius: 40px;
  --callback-widget-inset: 25px;
  --top-bar-height: 37px;
  --container: min(1240px, 92%);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.accent-text {
  color: var(--pink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "›";
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 700;
}

.top-bar {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  min-height: var(--top-bar-height);
  position: relative;
  z-index: 201;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.top-bar a:hover {
  color: var(--pink-bright);
}

.site-header {
  position: absolute;
  top: calc(var(--top-bar-height) + var(--hero-frame-padding));
  left: var(--hero-frame-padding);
  right: var(--hero-frame-padding);
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s, top 0.3s, left 0.3s, right 0.3s;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(76, 29, 149, 0.08);
}

.site-header.scrolled .logo,
.site-header.scrolled .main-nav a {
  color: var(--purple-dark);
}

.site-header.scrolled .header-cta {
  background: var(--pink);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.logo-bolt {
  width: 20px;
  height: 20px;
  display: block;
}

.logo-mark--large {
  width: 88px;
  height: 88px;
  border-radius: 20px;
}

.logo-mark--large .logo-bolt {
  width: 44px;
  height: 44px;
}

.site-header.scrolled .logo-mark {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 4px 14px rgba(76, 29, 149, 0.22);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
  background: var(--grey-light);
  color: var(--purple-dark);
}

.header-cta {
  background: var(--pink);
  color: var(--white);
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.hero-shell {
  position: relative;
  margin: var(--hero-frame-padding);
}

.hero-slider {
  position: relative;
  height: min(755px, 92vh);
  border-radius: var(--hero-radius);
  overflow: hidden;
  background: var(--purple-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(76, 29, 149, 0.88) 0%,
    rgba(76, 29, 149, 0.55) 45%,
    rgba(76, 29, 149, 0.2) 100%
  );
}

.hero-slide:nth-child(1) .hero-slide-bg {
  background-image: url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1600&q=80");
}

.hero-slide:nth-child(2) .hero-slide-bg {
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80");
}

.hero-slide:nth-child(3) .hero-slide-bg {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80");
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 170px;
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 640px;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.45);
}

.hero-badge-float {
  display: none;
}

.callback-widget {
  position: absolute;
  right: var(--callback-widget-inset);
  bottom: var(--callback-widget-inset);
  z-index: 10;
  width: min(360px, calc(100% - 50px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(76, 29, 149, 0.22);
  color: var(--purple-dark);
  transition: box-shadow 0.3s ease;
}

.callback-widget.is-pinned {
  position: fixed;
  right: calc(var(--hero-frame-padding) + var(--callback-widget-inset));
  bottom: var(--callback-widget-inset);
  z-index: 300;
}

.callback-widget.is-expanded {
  box-shadow: 0 24px 56px rgba(76, 29, 149, 0.28);
}

.callback-widget-toggle {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
}

.callback-widget-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-light);
  flex-shrink: 0;
}

.callback-widget-summary {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.callback-widget-summary strong {
  font-size: 0.98rem;
  color: var(--purple-dark);
}

.callback-widget-summary span {
  font-size: 0.82rem;
  color: var(--grey-dark);
  line-height: 1.35;
}

.callback-widget-chevron {
  width: 20px;
  height: 20px;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.callback-widget.is-expanded .callback-widget-chevron {
  transform: rotate(180deg);
}

.callback-widget-panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--grey);
}

.callback-widget-panel-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-dark);
  padding: 0.85rem 0 0.75rem;
}

.callback-widget-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.callback-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.callback-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.callback-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-dark);
}

.callback-field input,
.callback-field select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--grey);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
}

.callback-field input:focus,
.callback-field select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.callback-widget-submit {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-top: 0.25rem;
  font-size: 0.92rem;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hero-dot.active {
  background: var(--pink);
  border-color: var(--pink);
}

.section {
  padding: 5rem 0;
}

.section-grey {
  background: var(--grey-light);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--purple-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--grey-dark);
  font-size: 1.05rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(76, 29, 149, 0.72) 0%,
    rgba(76, 29, 149, 0.88) 55%,
    rgba(49, 16, 117, 0.94) 100%
  );
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(76, 29, 149, 0.25);
}

.service-card:hover::before {
  transform: scale(1.07);
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card--domestic {
  --card-bg: url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=800&q=80");
}

.service-card--commercial {
  --card-bg: url("https://images.unsplash.com/photo-1497366216543-975113854993?auto=format&fit=crop&w=800&q=80");
}

.service-card--ev {
  --card-bg: url("https://images.unsplash.com/photo-1593941707882-a5bba14938b7?auto=format&fit=crop&w=800&q=80");
}

.service-card--emergency {
  --card-bg: url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=800&q=80");
}

.service-card--safety {
  --card-bg: url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=800&q=80");
}

.service-card--communication {
  --card-bg: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=800&q=80");
}

.service-card--quality {
  --card-bg: url("https://images.unsplash.com/photo-1504328345606-55661aa1edb6?auto=format&fit=crop&w=800&q=80");
}

.service-card--certification {
  --card-bg: url("https://images.unsplash.com/photo-1450101499164-c8848c66ca85?auto=format&fit=crop&w=800&q=80");
}

.service-card--phone {
  --card-bg: url("https://images.unsplash.com/photo-1423666639041-f56000c27a91?auto=format&fit=crop&w=800&q=80");
}

.service-card--email {
  --card-bg: url("https://images.unsplash.com/photo-1557200134-90327ee9faf7?auto=format&fit=crop&w=800&q=80");
}

.service-card--location {
  --card-bg: url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=800&q=80");
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-link {
  color: var(--pink-bright);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card-link:hover {
  color: var(--white);
}

.service-cards-pagination {
  display: none;
}

.service-cards-pagination-button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: var(--grey);
  cursor: pointer;
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.service-cards-pagination-button.is-active {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.promo-card-image {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.promo-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card-body h3 {
  font-size: 1.5rem;
  color: var(--purple-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.promo-card-body p {
  color: var(--grey-dark);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.reason-item {
  display: flex;
  gap: 1.25rem;
}

.reason-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  flex-shrink: 0;
}

.reason-item h3 {
  font-size: 1.1rem;
  color: var(--purple-dark);
  margin-bottom: 0.4rem;
}

.reason-item p {
  font-size: 0.92rem;
  color: var(--grey-dark);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-feature-visual {
  background: linear-gradient(135deg, var(--purple-dark), var(--pink));
  border-radius: var(--radius-card);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.split-feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
}

.split-feature-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--purple-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.split-feature-content p {
  color: var(--grey-dark);
  margin-bottom: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(76, 29, 149, 0.1);
}

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.05rem;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--grey-dark);
}

.contact-section {
  background: var(--purple-dark);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-section-intro .eyebrow {
  color: var(--pink-bright);
}

.contact-section-intro .eyebrow::before {
  color: var(--pink-bright);
}

.contact-section-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-section-intro p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-bright);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-hours {
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact-form-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-dark .form-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.12);
}

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

.form-field select option {
  color: var(--text);
  background: var(--white);
}

.newsletter-bar {
  background: var(--grey-light);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-bar h3 {
  color: var(--purple-dark);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.newsletter-bar p {
  color: var(--grey-dark);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--grey);
  border-radius: var(--radius-btn);
  font-family: inherit;
  background: var(--white);
}

.page-banner {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: var(--purple-dark);
}

.page-banner-image {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.page-banner-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: var(--white);
}

.page-banner-panel h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-banner-panel p {
  opacity: 0.88;
  font-size: 1.05rem;
  max-width: 420px;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.content-card h3 {
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
}

.content-card p {
  color: var(--grey-dark);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-align: center;
}

.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.team-card h3 {
  color: var(--purple-dark);
  padding: 1rem 1rem 0.25rem;
  font-size: 1rem;
}

.team-card p {
  color: var(--grey-dark);
  padding: 0 1rem 1.25rem;
  font-size: 0.85rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  transition: box-shadow 0.2s;
}

.service-row:hover {
  box-shadow: 0 8px 24px rgba(76, 29, 149, 0.08);
}

.service-row-icon {
  width: 56px;
  height: 56px;
  background: var(--grey-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.service-row h3 {
  color: var(--purple-dark);
  margin-bottom: 0.25rem;
}

.service-row p {
  color: var(--grey-dark);
  font-size: 0.92rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  background: var(--grey-light);
  color: var(--purple-dark);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 500;
}

.site-footer {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.75;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--pink-bright);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--pink-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.inner-page .site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(76, 29, 149, 0.06);
}

.inner-page .logo,
.inner-page .main-nav a {
  color: var(--purple-dark);
}

.inner-page .main-nav a:hover,
.inner-page .main-nav a.active {
  background: var(--grey-light);
}

.inner-page .logo-mark {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 4px 14px rgba(76, 29, 149, 0.22);
}

@media (max-width: 1024px) {
  .service-cards,
  .blog-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-card {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .page-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .top-bar-link {
    font-size: 0.8rem;
  }

  .main-nav ul {
    width: 100%;
    justify-content: center;
  }

  .callback-widget,
  .callback-widget.is-pinned {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 1rem;
  }

  .callback-field-row {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .blog-grid,
  .team-grid,
  .reasons-grid,
  .footer-grid,
  .split-feature,
  .promo-split {
    grid-template-columns: 1fr;
  }

  .service-cards-carousel {
    margin-right: calc(50% - 50vw);
  }

  .service-cards-carousel .service-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset;
  }

  .service-cards-carousel .service-cards::-webkit-scrollbar {
    display: none;
  }

  .service-cards-carousel .service-card {
    flex: 0 0 calc(100% - 3.25rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .service-cards-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .contact-form-dark {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
}
