/* ── Clean 2027 SaaS Layout Styles ──────────────────── */

.home-page .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  background: rgba(17, 106, 248, 0.1);
  border: 1px solid rgba(17, 106, 248, 0.25);
  color: var(--home-accent-growth);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* ── Hero Section ───────────────────────────────────── */
.home-page .hero {
  padding: clamp(6.5rem, 8vw, 10rem) 0 clamp(6rem, 10vw, 10rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.home-page .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
  gap: 1.5rem;
}

.home-page .hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--home-text);
  margin: 0;
}

.home-page .hero-title span {
  color: var(--home-muted);
}

.home-page .hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--home-muted);
  line-height: 1.6;
  max-width: 48rem;
  width: fit-content;
  text-align: left;
  margin-inline: auto;
}

.home-page .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ── Service Page Hero (Roof Painting & Sealing style) ── */
.home-page .service-hero {
  padding: clamp(6.5rem, 8vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background: radial-gradient(circle at 50% -20%, rgba(17, 106, 248, 0.18), transparent 60%),
              radial-gradient(circle at 10% 20%, rgba(5, 49, 170, 0.2), transparent 45%),
              var(--home-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(17, 106, 248, 0.06);
}

.home-page .service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(17, 106, 248, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 106, 248, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.home-page .service-hero .container {
  position: relative;
  z-index: 2;
}

.home-page .service-hero .hero-copy {
  max-width: 56rem;
  gap: 1.25rem;
  align-items: center;
}

.home-page .service-hero .hero-copy .hero-actions {
  justify-content: center;
  width: 100%;
}

.home-page .service-hero .hero-pill {
  display: inline-block;
  background: rgba(17, 106, 248, 0.1);
  border: 1px solid rgba(17, 106, 248, 0.25);
  color: var(--home-accent-light);
  font-family: var(--home-font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 0.5rem;
}



.home-page .service-hero .hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--home-muted);
  line-height: 1.6;
  max-width: 44rem;
  margin: 0 auto;
}

/* ── service-hero with two-column hero-grid (locations/insights/areas) ── */
/* Override the centred text-align so the left-hand copy column reads naturally left */
.home-page .service-hero .hero-grid {
  text-align: left;
}
.home-page .service-hero .hero-grid .hero-copy {
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.home-page .service-hero .hero-grid .hero-title {
  margin-inline: 0;
}
.home-page .service-hero .hero-grid .hero-lead {
  margin: 0;
}

/* ── Premium Suburb Hero Layout (hero--premium) ──────── */
.home-page .hero--premium .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  text-align: left;
}

@media (max-width: 992px) {
  .home-page .hero--premium .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

.home-page .hero--premium .hero-copy {
  align-items: flex-start;
  margin: 0;
}

@media (max-width: 992px) {
  .home-page .hero--premium .hero-copy {
    align-items: center;
    margin-inline: auto;
  }
}

.home-page .hero-visual-premium {
  position: relative;
  width: 100%;
}

.home-page .premium-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--sh-outset-xl);
  overflow: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-page .hero-img-premium {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.25rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.home-page .floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 10;
  animation: dlsa-float 4s ease-in-out infinite;
}

@media (max-width: 480px) {
  .home-page .floating-badge {
    left: 1rem;
    bottom: 1rem;
  }
}

.home-page .floating-badge .badge-icon {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.home-page .floating-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.home-page .floating-badge .badge-text strong {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 700;
}

.home-page .floating-badge .badge-text span {
  font-size: 0.7rem;
  color: var(--text-dim);
}

@keyframes dlsa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ── Theme Button Adjustments ───────────────────────── */
.home-page[data-theme="dark"] .btn-primary {
  color: #ffffff;
  background: var(--home-accent);
  box-shadow: 0 4px 14px rgba(17, 106, 248, 0.25);
}

.home-page[data-theme="dark"] .btn-primary:hover {
  color: #ffffff;
  background: var(--home-accent-light);
  box-shadow: 0 6px 20px rgba(17, 106, 248, 0.4);
}


/* ── Minimal Trust Strip ────────────────────────────── */
.home-page .trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--home-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item strong {
  color: var(--home-text);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── Abstract Glassmorphism Image Placeholders ──────── */
.img-placeholder-glass {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder-glass::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at center, rgba(17, 106, 248, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.img-placeholder-glass picture,
.img-placeholder-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  position: relative;
  z-index: 2;
}

.img-placeholder-glass:hover img {
  transform: scale(1.04);
}

.img-placeholder-text {
  font-family: var(--home-font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  z-index: 2;
}

.hero-visual-container {
  max-width: 64rem;
  margin: 5rem auto 0;
  perspective: 1000px;
}

.hero-visual-inner {
  transform: rotateX(8deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual-container:hover .hero-visual-inner {
  transform: rotateX(0deg);
}

/* ── Services Layout (Alternating) ──────────────────── */
.services-section {
  padding: clamp(6rem, 10vw, 12rem) 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.service-row:nth-child(even) .service-content {
  order: 2;
}

.service-row:nth-child(even) .service-visual {
  order: 1;
}

.service-content h3 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  color: var(--home-text);
}

.service-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--home-muted);
  margin-bottom: 2rem;
}

/* ── Flagship Case Study ────────────────────────────── */
.case-study-section {
  padding: clamp(4rem, 6vw, 7rem) 0;
}

.case-study-hero {
  border-radius: 24px;
  background: var(--home-surface-2);
  padding: clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  text-align: left;
  border: 1px solid var(--home-border);
}

.case-study-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.case-study-copy p {
  font-size: 1.05rem;
  color: var(--home-muted);
  max-width: 56rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.case-study-metrics {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid var(--home-border);
  padding-top: 2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.metric-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--home-accent-growth);
  font-family: var(--home-font-mono);
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--home-muted);
}

/* ── Process & Pricing ──────────────────────────────── */
.process-section, .pricing-section, .why-section, .final-cta-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.home-page .final-cta-card {
  padding: clamp(3rem, 6vw, 5rem) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.5rem;
}

.home-page .final-cta-card .section-label {
  margin-bottom: 0;
}

.home-page .final-cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-page .final-cta-card p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--home-muted);
  line-height: 1.6;
  max-width: 65ch;
}

.home-page .final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.home-page .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--home-text);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .btn-whatsapp:hover {
  color: var(--home-accent-light);
  transform: translateY(-2px);
}

.home-page .btn-whatsapp svg {
  fill: currentColor;
  display: block;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--home-border);
}

.process-item:last-child {
  border-bottom: none;
}

.process-num {
  font-family: var(--home-font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--home-accent-growth);
}

.process-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card-minimal {
  padding: 3rem 2.5rem;
  border-radius: 16px;
  background: transparent;
  border: 1px solid var(--home-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}


.pricing-card-minimal:hover {
  transform: translateY(-4px);
  border-color: var(--home-border-strong);
}

.pricing-card-minimal.featured {
  background: var(--home-surface-2);
  border-color: var(--home-border-strong);
}

.pricing-card-minimal .img-placeholder-glass {
  height: auto !important;
  aspect-ratio: 16 / 9;
}

.pricing-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--home-muted);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--home-text);
  letter-spacing: -0.02em;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--home-muted);
  line-height: 1.6;
}

.home-page .section-head.centered {
  margin-bottom: 8rem;
}

.home-page .section-head.centered p {
  text-align: left !important;
  width: fit-content !important;
  margin-inline: auto !important;
}

/* ── Responsive ─────────────────────────────────────── */

/* 1440px: ultra-wide monitors guard */
@media (min-width: 1440px) {
  .home-page .hero-title {
    font-size: 4.25rem;
  }
  .home-page .hero-copy {
    max-width: 72rem;
  }
}

/* 992px: tablet landscape */
@media (max-width: 992px) {
  .service-row, .service-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .case-study-hero {
    grid-template-columns: 1fr;
  }
  .service-row:nth-child(even) .service-content {
    order: unset;
  }
  .service-row:nth-child(even) .service-visual {
    order: unset;
  }
  .case-study-metrics {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .trust-strip {
    gap: 2rem;
  }
  .home-page .hero {
    padding: clamp(6rem, 10vw, 10rem) 0 clamp(4rem, 7vw, 6rem);
  }
  .home-page .section-head.centered {
    margin-bottom: 5rem;
  }
}

/* 820px: tablet portrait */
@media (max-width: 768px) {
  .home-page .hero {
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(3rem, 5vw, 4.5rem);
  }
  .home-page .service-hero {
    padding: clamp(5.5rem, 9vw, 9rem) 0 clamp(3rem, 5vw, 5rem);
  }
  .home-page .hero-copy {
    gap: 1.1rem;
  }
  .home-page .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
  }
  .home-page .trust-strip {
    border-top: 1px solid var(--home-border);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
  }
  .trust-item strong {
    font-size: 1.65rem;
  }
  .service-row {
    gap: 2.5rem;
    margin-bottom: 5rem;
  }
  .case-study-hero {
    padding: clamp(2.5rem, 6vw, 5rem);
  }
  .process-section, .pricing-section, .why-section, .final-cta-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
  }
  .home-page .final-cta-card {
    padding: clamp(2rem, 5vw, 3.5rem) !important;
  }
  .home-page .section-head.centered {
    margin-bottom: 4rem;
  }
  .pricing-minimal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

/* 768px: tablet — pricing special */
@media (max-width: 768px) {
  .pricing-minimal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .hero-title {
    font-size: clamp(2.25rem, 6vw, 3rem);
  }

  .home-page .hero-lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
  }
  .home-page .service-hero .hero-lead {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  }
}

/* 640px: large phone / small tablet */
@media (max-width: 560px) {
  .home-page .hero {
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
  }
  .home-page .service-hero {
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 3rem);
  }
  .home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .home-page .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .home-page .trust-strip {
    gap: 1rem 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
  .trust-item strong {
    font-size: 1.5rem;
  }
  .service-row {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .service-content h3 {
    font-size: clamp(1.65rem, 5vw, 2rem);
  }
  .pricing-minimal-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
  .pricing-card-minimal {
    padding: 2rem 1.75rem;
  }
  .case-study-hero {
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 16px;
  }
  .case-study-copy h2 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }
  .home-page .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .home-page .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .home-page .section-head.centered {
    margin-bottom: 3rem;
  }
  .metric-val {
    font-size: 2.2rem;
  }
  .process-item {
    gap: 1.25rem;
  }
}

/* 480px: small phone */
@media (max-width: 480px) {
  .home-page .hero {
    padding: clamp(5rem, 12vw, 6.5rem) 0 clamp(2rem, 4vw, 2.5rem);
  }
  .home-page .service-hero {
    padding: clamp(5rem, 12vw, 6.5rem) 0 clamp(2rem, 4vw, 2.5rem);
  }
  .home-page .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    letter-spacing: -0.03em;
  }

  .home-page .hero-lead {
    font-size: 1rem;
  }
  .home-page .trust-strip {
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }
  .trust-item strong {
    font-size: 1.35rem;
  }
  .trust-item {
    font-size: 0.72rem;
  }
  .service-content h3 {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }
  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .process-section, .pricing-section, .why-section, .final-cta-section {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
  }
  .home-page .final-cta-card {
    padding: clamp(1.5rem, 4vw, 2rem) !important;
    gap: 1rem;
  }
  .home-page .final-cta-card h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .home-page .final-cta-card p {
    font-size: 0.95rem;
  }
  .home-page .section-head.centered {
    margin-bottom: 2.5rem;
  }
  .case-study-metrics {
    gap: 1.5rem;
  }
  .metric-val {
    font-size: 2rem;
  }
  .process-item {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
  .process-item h3 {
    font-size: 1.2rem;
  }
  .process-num {
    font-size: 1.2rem;
  }
  .pricing-card-minimal {
    padding: 1.75rem 1.5rem;
    gap: 1rem;
  }
  .home-page .img-placeholder-glass {
    aspect-ratio: 4 / 3;
  }
}

/* 360px: very small phones */
@media (max-width: 380px) {
  .home-page .hero-title {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .home-page .trust-strip {
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  .trust-item strong {
    font-size: 1.2rem;
  }
  .trust-item {
    font-size: 0.68rem;
  }
  .pricing-card-minimal {
    padding: 1.5rem 1.25rem;
  }
  .metric-val {
    font-size: 1.7rem;
  }
  .home-page .final-cta-card h2 {
    font-size: clamp(1.4rem, 8vw, 1.8rem);
  }
}

/* ── Sub-Page Hero Visual (Perspective-rotated preview) ────────────────── */
.page-hero-visual-container {
  max-width: 48rem;
  margin: 3.5rem auto 0;
  perspective: 1000px;
  width: min(100%, 90vw);
  position: relative;
  z-index: 2;
}
.page-hero-visual-inner {
  transform: rotateX(6deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--home-shadow-out), 0 0 40px rgba(17, 106, 248, 0.12);
  border: 1px solid var(--home-border);
}
.page-hero-visual-container:hover .page-hero-visual-inner {
  transform: rotateX(0deg);
  box-shadow: var(--home-shadow-out), 0 0 50px rgba(17, 106, 248, 0.18);
}
.page-hero-visual-inner picture,
.page-hero-visual-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .page-hero-visual-inner {
    aspect-ratio: 1080 / 1350 !important;
    height: auto !important;
  }
  .page-hero-visual-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

/* ── Custom Blue Tiles & White SVG Icons ──────────────── */
.pricing-card-minimal .img-placeholder-glass {
  background: linear-gradient(135deg, #116af8 0%, #0531aa 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 35px rgba(5, 49, 170, 0.25) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pricing-card-minimal .img-placeholder-glass::before {
  display: none !important;
}

/* White SVGs inside blue tiles */
.pricing-card-minimal .img-placeholder-glass svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}


.pricing-card-minimal .img-placeholder-glass svg [stroke="var(--home-accent-growth)"] {
  stroke: #ffffff !important;
}

.pricing-card-minimal .img-placeholder-glass svg [fill="var(--home-accent-growth)"] {
  fill: #ffffff !important;
}

/* Hover feedback */
.pricing-card-minimal:hover .img-placeholder-glass {
  box-shadow: 0 20px 45px rgba(17, 106, 248, 0.45) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.pricing-card-minimal:hover .img-placeholder-glass svg {
  transform: scale(1.08);
}

/* ── Mobile visual image container fit ──────────────── */
@media (max-width: 768px) {
  .home-page .service-visual {
    aspect-ratio: auto !important;
  }
  .home-page .service-visual img {
    aspect-ratio: auto !important;
    height: auto !important;
    object-fit: cover !important;
  }
}


