/* Elegant bright theme with super decorative elements */
:root {
  --bg: #ffffff; /* page background */
  --surface: #ffffff;
  --muted: #7b8ab8; /* softer muted blue for light backgrounds */
  --text: #253250; /* primary dark blue text for better readability */
  --card: #ffffff; /* white cards */
  --card-text: #253250; /* dark text for cards */
  --glass: rgba(255, 255, 255, 0.02);
  --accent: #4361ee; /* vibrant blue accent */
  --accent-2: #3a56d4; /* deeper blue */
  --accent-light: #edf2ff;
  --accent-soft: rgba(67, 97, 238, 0.08);
  --max-width: 980px;
  --decorative-1: #ff6b6b; /* coral pink for accents */
  --decorative-2: #4cc9f0; /* bright cyan for accents */
  --decorative-3: #ffd166; /* warm yellow for accents */
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --bright-card-bg: linear-gradient(135deg, #ffffff, #f8f9ff);
  --bright-text: #1e293b;
  --elegant-shadow: 0 10px 30px rgba(37, 50, 80, 0.08);
  --elegant-border: 1px solid rgba(67, 97, 238, 0.08);
  --super-decorative-1: linear-gradient(
    45deg,
    #ff9a9e 0%,
    #fad0c4 99%,
    #fad0c4 100%
  );
  --super-decorative-2: linear-gradient(45deg, #a1c4fd 0%, #c2e9fb 100%);
  --super-decorative-3: linear-gradient(45deg, #ffecd2 0%, #fcb69f 100%);
  --super-decorative-4: linear-gradient(45deg, #84fab0 0%, #8fd3f4 100%);
  --super-decorative-5: linear-gradient(45deg, #d4fc79 0%, #96e6a1 100%);
  --super-decorative-6: linear-gradient(45deg, #a6c0fe 0%, #f68084 100%);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Sora", Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  /* Super decorative background with multiple layers */
  background-color: var(--bg);
  background-image: radial-gradient(
      ellipse at 10% 20%,
      rgba(255, 154, 158, 0.15) 0%,
      transparent 20%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(161, 196, 253, 0.15) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 236, 210, 0.1) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 20% 70%,
      rgba(132, 250, 176, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(212, 252, 121, 0.1) 0%,
      transparent 20%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 249, 255, 1));
  background-blend-mode: overlay, overlay, overlay, overlay, overlay, normal;
  background-size: 120% 120%, 140% 140%, 100% 100%, 130% 130%, 110% 110%,
    100% 100%;
  animation: backgroundShift 32s linear infinite;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-1);
  opacity: 0.05;
  z-index: -1;
  transform: rotate(30deg);
}
.brand {
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}

.site-logo {
  height: 44px;
  width: auto;
  display: inline-block;
  /* Render the logo as a solid white mark for dark headers
     - Most PNG logos that are dark/black will become white with this filter.
     - If you prefer a more robust mask-based coloring (works with transparent PNGs),
       I can switch the HTML to a background/div and use `-webkit-mask-image`.
  */
  -webkit-filter: brightness(0) invert(1) contrast(1.02);
  filter: brightness(0) invert(1) contrast(1.02);
  /* keep image crisp on some displays */
  image-rendering: -webkit-optimize-contrast;
}

/* A general mask/background-based logo helper. Use the `<span class="site-logo--mask">`
   element in the header to render the provided PNG/SVG as a solid white logo.
   - For browsers that support CSS masks we paint the alpha with `background-color: #fff`.
   - For other browsers we fall back to using the image as a background and apply
     a filter to convert darker logos to white.
*/
.site-logo--mask {
  display: inline-block;
  height: 44px;
  width: 140px; /* adjust as needed for your logo aspect */
  min-width: 56px;
  background-image: url("assets/smm-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  /* fallback: convert dark logos to white */
  -webkit-filter: brightness(0) invert(1) contrast(1.02);
  filter: brightness(0) invert(1) contrast(1.02);
}

@supports (-webkit-mask-image: url("assets/smm-logo.png")) {
  .site-logo--mask {
    /* paint alpha as white via mask */
    background-image: none !important;
    background-color: #ffffff;
    -webkit-mask-image: url("assets/smm-logo.png");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("assets/smm-logo.png");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
}

/* Centered fullscreen hero */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  width: 100%;
  max-width: 920px;
  text-align: center;
  padding: 70px 32px;
  border-radius: 20px;
  background: var(--bright-card-bg);
  border: var(--elegant-border);
  box-shadow: 0 20px 50px rgba(37, 50, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(67, 97, 238, 0.05);
  position: relative;
  overflow: hidden;
  animation: float 10s ease-in-out infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-inner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(67, 97, 238, 0.15),
    rgba(58, 86, 212, 0.08) 40%,
    transparent 60%
  );
  filter: blur(30px);
  transform: rotate(15deg);
  opacity: 0.9;
  pointer-events: none;
  border-radius: 50%;
}

.hero-inner::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at 70% 70%,
    var(--decorative-2),
    transparent 70%
  );
  filter: blur(25px);
  opacity: 0.2;
  pointer-events: none;
  border-radius: 50%;
}

/* Additional decorative elements for hero */
.hero-inner::before,
.hero-inner::after {
  z-index: -1;
}

.hero-decoration-1 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: var(--super-decorative-1);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.8;
  filter: blur(3px);
  z-index: -1;
}

.hero-decoration-2 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  background: var(--super-decorative-3);
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(2px);
  z-index: -1;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--bright-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--decorative-1), var(--decorative-3));
  border-radius: 2px;
}
.hero p.lead {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
}
.cta-large {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #ffffff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(16, 120, 220, 0.12);
}

/* sheen effect for primary CTAs */
.cta-large::after,
.btn-split a::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -60%;
  width: 36%;
  height: 110%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  transform: skewX(-18deg);
  transition: transform 0.6s ease;
  pointer-events: none;
  opacity: 0.9;
}
.cta-large:hover::after,
.btn-split a:hover::after {
  transform: translateX(200%) skewX(-18deg);
}

/* subtle floating animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Two-button hub */
.btn-split {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
/* Elegant section divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 36px 0;
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--decorative-1);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--decorative-1);
}

/* Enhanced buttons with decorative elements */
.btn-split a {
  min-width: 160px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(30, 144, 255, 0.16),
    rgba(15, 120, 209, 0.1)
  );
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 800;
  transition: all 0.14s ease;
  position: relative;
  overflow: hidden;
}

.btn-split a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--decorative-1),
    var(--decorative-2),
    var(--decorative-3)
  );
  opacity: 0.2;
  z-index: -1;
}
.btn-split a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 160, 60, 0.1);
}

/* Super decorative floating elements */
.floating-decoration-1 {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--super-decorative-1);
  opacity: 0.7;
  z-index: -1;
  filter: blur(15px);
  animation: floatDecorations 15s infinite ease-in-out;
  box-shadow: 0 0 30px rgba(255, 154, 158, 0.3);
}

.floating-decoration-2 {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--super-decorative-2);
  opacity: 0.6;
  z-index: -1;
  filter: blur(20px);
  animation: floatDecorations 20s infinite ease-in-out reverse;
  box-shadow: 0 0 40px rgba(161, 196, 253, 0.4);
}

.decoration-element-1 {
  position: fixed;
  width: 60px;
  height: 60px;
  background: var(--super-decorative-3);
  opacity: 0.8;
  z-index: -1;
  filter: blur(10px);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floatDecorations 25s infinite ease-in-out;
  box-shadow: 0 0 25px rgba(255, 236, 210, 0.5);
}

.decoration-element-2 {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--super-decorative-4);
  opacity: 0.7;
  z-index: -1;
  filter: blur(15px);
  animation: floatDecorations 18s infinite ease-in-out reverse;
  box-shadow: 0 0 35px rgba(132, 250, 176, 0.4);
}

.decoration-element-3 {
  position: fixed;
  width: 70px;
  height: 70px;
  background: var(--super-decorative-5);
  opacity: 0.8;
  z-index: -1;
  filter: blur(12px);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: floatDecorations 22s infinite ease-in-out;
  box-shadow: 0 0 30px rgba(212, 252, 121, 0.5);
}

/* Additional super decorative elements */
.decoration-element-4 {
  position: fixed;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--super-decorative-6);
  opacity: 0.6;
  z-index: -1;
  filter: blur(18px);
  animation: floatDecorations 28s infinite ease-in-out reverse;
  box-shadow: 0 0 38px rgba(166, 192, 254, 0.4);
}

.decoration-element-5 {
  position: fixed;
  width: 50px;
  height: 50px;
  background: var(--super-decorative-1);
  opacity: 0.9;
  z-index: -1;
  filter: blur(8px);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation: floatDecorations 16s infinite ease-in-out;
  box-shadow: 0 0 22px rgba(255, 154, 158, 0.6);
}

/* Super decorative service cards */
.service-card {
  background: var(--bright-card-bg);
  border: var(--elegant-border);
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: var(--elegant-shadow);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--super-decorative-3);
  opacity: 0.15;
  z-index: -1;
  filter: blur(20px);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--super-decorative-2);
  opacity: 0.12;
  z-index: -1;
  filter: blur(25px);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(37, 50, 80, 0.15),
    0 0 0 1px rgba(67, 97, 238, 0.2);
  border-color: rgba(67, 97, 238, 0.2);
}

.service-card h4 {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 22px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.service-card h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 45px;
  height: 4px;
  background: linear-gradient(90deg, var(--decorative-1), var(--decorative-3));
  border-radius: 2px;
}

.service-card p {
  margin: 0;
  color: var(--card-text);
  font-size: 17px;
  line-height: 1.7;
}

/* Decorative elements inside service cards */
.service-card-decoration-1 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  background: var(--super-decorative-1);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.6;
  filter: blur(1px);
}

.service-card-decoration-2 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 12px;
  height: 12px;
  background: var(--super-decorative-4);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(1px);
}

/* Floating decorative elements animation */
@keyframes floatDecorations {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Elegant bright card design */
.card-lg {
  padding: 32px;
  border-radius: 16px;
  background: var(--bright-card-bg);
  border: var(--elegant-border);
  color: var(--card-text);
  box-shadow: var(--elegant-shadow);
  position: relative;
  overflow: hidden;
}

.card-lg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--decorative-1),
    var(--decorative-2),
    var(--decorative-3)
  );
}

.card-lg h2 {
  color: var(--bright-text);
  font-size: 32px;
  margin-bottom: 20px;
}

.card-lg h3 {
  color: var(--accent);
  font-size: 24px;
  margin: 28px 0 16px;
  position: relative;
  padding-left: 24px;
}

.card-lg h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--decorative-2);
  border-radius: 50%;
}

.card-lg ol,
.card-lg ul {
  padding-left: 24px;
}

.card-lg li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.card-lg li strong {
  color: var(--bright-text);
}

.card-lg p {
  font-size: 18px;
  line-height: 1.7;
}

/* Enhanced section titles with elegant bright design */
.section-title {
  display: inline-block;
  font-weight: 800;
  color: var(--bright-text);
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  font-size: 28px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--decorative-2);
  border-radius: 50%;
}

.section-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-top: 12px;
  border-radius: 4px;
}

.section {
  padding: 56px 0;
}
.section-title {
  font-size: 18px;
  margin-bottom: 12px;
}
.card {
  background: var(--card);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price {
  font-size: 20px;
  font-weight: 800;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: transparent;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(22px, 5.2vw, 32px);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card-lg {
    padding: 22px;
  }

  /* Adjust decorative elements for mobile */
  .decoration-element-1,
  .decoration-element-2,
  .decoration-element-3,
  .decoration-element-4,
  .decoration-element-5,
  .floating-decoration-1,
  .floating-decoration-2 {
    display: none;
  }

  .btn-split {
    gap: 15px;
  }

  .btn-split a {
    min-width: 160px;
    padding: 14px 20px;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .container {
    padding: 18px;
  }
  .hero h1 {
    font-size: clamp(18px, 6.5vw, 22px);
  }
  .cta-large {
    width: 100%;
    display: inline-block;
  }
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(167, 111, 26, 0.14);
  z-index: 1200;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 80px rgba(167, 111, 26, 0.18);
}
.whatsapp-float svg {
  display: block;
  width: 22px;
  height: 22px;
  color: #001217;
  fill: #ffffff;
}

/* Animated subtle background movement */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* soft moving overlay to create parallax depth */
  background-image: radial-gradient(
      900px 420px at 82% 12%,
      rgba(30, 144, 255, 0.04),
      transparent
    ),
    radial-gradient(520px 240px at 8% 82%, rgba(6, 8, 18, 0.028), transparent);
  background-blend-mode: screen;
  opacity: 0.9;
  transform: translateZ(0);
  animation: bgFloat 26s ease-in-out infinite;
}

@keyframes backgroundShift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  50% {
    background-position: -10% 6%, 8% -6%, 0% 0%;
  }
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes bgFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* subtle film grain / noise layer using inline SVG data uri (very low opacity) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence baseFrequency='0.8' numOctaves='1' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='table' tableValues='0 0.06'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6' fill='white'/></svg>");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: reduce) {
  body,
  body::before,
  body::after {
    animation: none;
  }
}

/* Card tilt effect (reduced) */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* apply subtler hover effects only for hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .cta-large:hover,
  .btn-split a:hover {
    transform: translateY(-2px);
  }
  .service-card:hover {
    transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-6px);
  }

  /* Enhanced hover effects for decorative elements */
  .service-card:hover::before {
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }

  .service-card:hover::after {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
}

/* Small decorative blob in hero (positioned via CSS) */
.hero-inner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 144, 255, 0.18),
    rgba(15, 120, 209, 0.06) 40%,
    transparent 60%
  );
  filter: blur(26px);
  transform: rotate(12deg);
  opacity: 0.9;
  pointer-events: none;
}

/* ensure stacked content sits above decorative layers */
.site-header,
.hero-inner,
.card-lg {
  position: relative;
  z-index: 2;
}
