/* Basic reset & variables */
:root {
  /* Primarna Mayee teal boja (tamna) */
  --mayee-primary: #1eacbb;
  --mayee-secondary: #348C9A;

  /* Ink – tamnija varijanta za naslove i naglaske */
  --mayee-ink: #0A3B38;

  /* Tint – svijetla, “airy” pozadina */
  --mayee-tint: #E7F4F7;

  --bg-gray: #f5f5f5;
  --border-soft: #e5e7eb;
  --text-muted: #6b7280;
  --radius-xl: 1.5rem;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

/* Global WOW effects */
.mayee-glow {
  box-shadow: 0 0 25px rgba(52, 140, 154, 0.25),
              0 0 50px rgba(29, 125, 140, 0.25);
}

.mayee-glow-soft {
  box-shadow: 0 12px 30px rgba(29, 125, 140, 0.12);
}

.mayee-gradient {
  background: linear-gradient(
    135deg,
    var(--mayee-primary) 0%,
    var(--mayee-secondary) 100%
  );
}

.mayee-outline {
  border: 1px solid rgba(52, 140, 154, 0.35);
  backdrop-filter: blur(8px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #ffffff;
}

/* Layout helpers */
.container {
  max-width: var(--max-width);
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}
section#trusted {
    min-height: 400px;
}
/* Full-screen layout on desktop */
@media (min-width: 1024px) {
  .hero,
  .section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero > .container,
  .section > .container {
    width: 100%;
  }
}

.section-border {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-tint {
  background: var(--mayee-tint);
}

.section-gray {
  background: #f9fafb;
}

.section-ink {
  background: var(--mayee-primary);
  color: #f9fafb;
}
/* Parallax ESG section */
.section-ink-parallax {
  position: relative;
  overflow: hidden;
  color: #f9fafb;
    min-height: 400px;
  display: flex;
  align-items: center;      /* Vertikalno centriranje */
  justify-content: center;  /* Horizontalno centriranje */
  padding: 60px 0;          /* Malo zraka oko */
}

/* Pozadinska slika + parallax efekt */
.section-ink-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/ESG.jpg"); /* <-- stavi svoju sliku ovdje */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax feel */
  filter: saturate(110%) contrast(105%);
  z-index: 0;
}

/* Tint/gradient overlay da tekst ostane čitljiv */
.section-ink-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Da sadržaj uvijek bude iznad overlaya */
.section-ink-parallax .container {
  position: relative;
  z-index: 2;
}

/* Malo jači glass look za kartice unutar ove sekcije */
.section-ink-parallax .esg-card {
    background: rgba(30, 172, 187, 0.5);
    border: 1px solid rgba(181, 244, 255, 0.24);
}

/* Mali hover efekt na brojke – da “dišu” */
.section-ink-parallax .esg-card:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
}


/* Announcement */
.announcement {
  background: var(--mayee-primary);
  color: #ffffff;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.announcement-strong {
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-inner {
  position: relative;       /* DODANO */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.25rem;
}


/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text {
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--mayee-ink);
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* Navigation */
.main-nav {
  display: none;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--mayee-ink);
  text-decoration: none;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* Mobile nav (default) */
.mobile-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
  align-items: center;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--mayee-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Kada je nav otvoren – animiraj burger u X */
.site-header.nav-open .mobile-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.nav-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile dropdown meni */
@media (max-width: 767px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    display: none;
    flex-direction: column;
    z-index: 30;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .header-cta {
    display: none; /* CTA sakrij na mobu, ionako je u herou */
  }
}


/* Header CTA */
.header-cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.btn-primary {
  background: var(--mayee-primary);
  color: #ffffff;
  box-shadow: 0 10px 35px rgba(29, 125, 140, 0.28);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--mayee-secondary);
  box-shadow: 0 15px 45px rgba(52, 140, 154, 0.4);
}

.btn-dark {
  background: var(--mayee-ink);
  color: #ffffff;
}

.btn-dark:hover {
  opacity: 0.92;
}

.btn-outline {
  background: #ffffff;
  color: var(--mayee-ink);
  border-color: #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(52, 140, 154, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(29, 125, 140, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, var(--mayee-tint), #ffffff);
  z-index: -1;
}
/* Full-bleed parallax hero with background image */
.hero-fullbg {
  position: relative;
  color: #f9fafb;
  overflow: hidden;
}

/* Pozadinska slika – parallax */
.hero-fullbg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax feel na desktopu */
  z-index: -2;
}

/* Gradient/tint overlay da tekst bude čitljiv */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Jedna kolona, centrirana po visini */
.hero-inner-single {
  min-height: clamp(480px, 72vh, 760px);
  display: flex;
  align-items: center;
}

/* Two-column hero: copy + device */
.hero-two-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-device-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-device {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.6));
  transform: translateY(0);
  animation: heroFloat 12s ease-in-out infinite;
}

.hero-device img {
  width: 100%;
  height: auto;
  display: block;
}

/* Float animation */
@keyframes heroFloat {
  0%   { transform: translateY(0px) translateZ(0); }
  50%  { transform: translateY(-14px) translateZ(0); }
  100% { transform: translateY(0px) translateZ(0); }
}

@media (min-width: 900px) {
  .hero-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .hero-copy {
    max-width: 560px;
  }
}

/* Hero typography u ovom modu */
.hero-fullbg .hero-copy h1 {
  color: #f9fafb;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.hero-fullbg .hero-highlight {
  color: var(--mayee-secondary);
}

.hero-fullbg .hero-lead {
  margin-top: 1.15rem;
  color: rgba(241, 245, 249, 0.96);
  max-width: 34rem;
}

.hero-fullbg .hero-meta {
  color: rgba(226, 232, 240, 0.9);
}

/* Dugmad na hero pozadini */
.hero-fullbg .hero-actions {
  margin-top: 1.4rem;
}

.hero-fullbg .btn-primary {
  background: var(--mayee-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-fullbg .btn-primary:hover {
  background: var(--mayee-secondary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Outline dugme – bijeli “pill” */
.hero-fullbg .btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--mayee-ink);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.hero-fullbg .btn-outline:hover {
  background: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero-fullbg::before {
    background-attachment: scroll;
  }

  .hero-inner-single {
    min-height: 520px;
  }

  .hero-copy {
    text-align: left;
  }
}


.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 4rem 0 5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0;
  color: var(--mayee-ink);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-highlight {
  color: var(--mayee-primary);
}

.hero-lead {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: #374151;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.9);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pricing-badge {
  position: absolute;
  left: -0.75rem;
  bottom: -0.75rem;
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(229, 231, 235, 0.9);
  max-width: 18rem;
}

.badge-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.badge-price {
  margin-top: 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mayee-ink);
}

/* Section headings */
.section h2 {
  font-size: 1.9rem;
  margin: 20px 0;
  color: var(--mayee-ink);
  letter-spacing: -0.03em;
}

.section-lead {
  margin-top: 0.4rem;
  color: #374151;
}

/* Social proof */
.section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.logo-pill {
  height: 3.2rem;
  border-radius: 0.9rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.logo-pill img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.85;
}

@media (min-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
}

.card {
  border-radius: 1.5rem;
  padding: 1.8rem;
  background: #ffffff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(52, 140, 154, 0.18);
  box-shadow: 0 10px 30px rgba(29, 125, 140, 0.10);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--mayee-ink);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.how-intro p {
  margin-top: 0.8rem;
  color: #374151;
}

.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  border-radius: 1.2rem;
  background: #ffffff;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.step-number {
  height: 30px;
  width: 40px;
  border-radius: 999px;
  background: var(--mayee-primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.step-title {
  font-weight: 600;
  color: var(--mayee-ink);
  font-size: 0.95rem;
}

.step p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #374151;
}

/* Benefits */
.benefits ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: #374151;
  font-size: 0.92rem;
}

.benefits li {
  margin-bottom: 0.25rem;
}

/* Models */
.models-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.models-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.models-grid {
  margin-top: 2rem;
}

.model-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.model-card:hover {
  transform: translateY(-6px);
  transition: all 0.25s ease;
  box-shadow: 0 18px 45px rgba(29, 125, 140, 0.18);
}
.model-image {
  border-radius: 1.25rem;
  background: #f3f4f6;
  overflow: hidden;
  aspect-ratio: 1;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-note {
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
}

.model-specs {
  margin: 0.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.8rem;
}

.model-specs dt {
  color: var(--text-muted);
}

.model-specs dd {
  margin: 0.1rem 0 0;
  font-weight: 600;
  color: var(--mayee-ink);
}
#models .btn-small {
    margin-top: 20px;
}
/* Pricing */
.pricing-grid {
  margin-top: 2rem;
}

.pricing-card {
  position: relative;
}

.pricing-card > p {
  margin-top: 0.4rem;
  margin-bottom: 0.7rem;
  color: #374151;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: #374151;
}

.pricing-card li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.pricing-card li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 0.4rem;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 999px;
  background: var(--mayee-primary);
}

.pricing-tag {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--mayee-tint);
  color: var(--mayee-ink);
}

/* ESG */
.esg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.esg-card {
  border-radius: 1.6rem;
  padding: 1.8rem;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.esg-big {
  font-size: 2rem;
  font-weight: 800;
}

.esg-small {
  margin-top: 0.4rem;
  font-size: 0.83rem;
  opacity: 0.85;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-info p {
  margin-top: 0.8rem;
  color: #374151;
}

.contact-card {
  margin-top: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.contact-details {
  font-size: 0.9rem;
  color: #374151;
}

/* Contact form */
.contact-form {
  border-radius: 1.7rem;
  border: 1px solid var(--border-soft);
  padding: 1.6rem 1.7rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid #d1d5db;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mayee-primary);
  box-shadow: 0 0 0 1px rgba(0, 179, 164, 0.1), 0 0 0 3px rgba(0, 179, 164, 0.18);
  background: #ffffff;
}

.form-footnote {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
#contact .btn-primary {
    margin-top: 20px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  color: var(--mayee-ink);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.3rem;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mayee-ink);
  margin-bottom: 0.4rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: var(--mayee-ink);
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (min-width: 768px) {
   .main-nav {
    display: flex;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    flex-direction: row;
  }

  .header-cta {
    display: block;
  }

   .mobile-toggle {
    display: none;
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logos-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .esg-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3.2rem;
  }

  .hero-visual {
    order: -1;
  }

  .how-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .how-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    margin: 0px 20px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }



  .hero-inner {
    padding-bottom: 3.2rem;
    margin: 0px 20px;
  }

 .hero-pricing-badge {
  position: absolute;
  left: -0.75rem;
  bottom: -0.75rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 140, 154, 0.25);
  border-radius: 1.2rem;
  padding: 1rem 1.3rem;
  box-shadow: 0 18px 40px rgba(29, 125, 140, 0.18);
}

  .models-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Sections with photographic backgrounds */
.section-with-bg {
  position: relative;
  color: #f9fafb;
  overflow: hidden;
}

.section-with-bg .cards-3 {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.section-with-bg .card {
  background: rgba(15, 23, 42, 0.82);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
}

.section-with-bg .card h3 {
  color: #f9fafb;
}

.section-with-bg .card p,
.section-with-bg .card li {
  color: #e5e7eb;
}

.section-with-bg h2 {
  position: relative;
  color: #f9fafb;
  text-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

/* Problem section background */
.section-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://vhc.agency/projects/Mayee/wp-content/uploads/2025/11/Mayee-PageNo1-2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.section-problem::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Why section background */
.section-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://vhc.agency/projects/Mayee/wp-content/uploads/2025/11/Mayee-PageNo5-1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.section-why::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.section-why .benefits {
  margin-top: 1.8rem;
}

/* Contact section background */
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://vhc.agency/projects/Mayee/wp-content/uploads/2025/11/Mayee-Back_Page-2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.section-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 59, 56, 0.96),
      rgba(10, 59, 56, 0.9),
      rgba(10, 59, 56, 0.85)
    );
  z-index: -1;
}

.section-contact .contact-card {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.45);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.9);
}

.section-contact .contact-details div {
  color: #e5e7eb;
}


@media (min-width: 1024px) {
  .section-ink-parallax {
    min-height: 100vh;
  }
}
