/* Hero Section CSS */
  .hero-section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 150px;
    padding: 54px 0 64px;
    background: linear-gradient(90deg, #fff8e8 0%, #fff0c8 52%, #fff8e8 100%);
  }

  .hero-section .container {
    width: min(100% - 44px, 1487px);
    margin-inline: auto;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 74% 30%, rgba(255, 196, 0, 0.18), transparent 31%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 38%);
    pointer-events: none;
  }

  .hero-section svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
  }

  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.9fr);
    align-items: center;
    gap: 26px 54px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 650px;
  }

  .eyebrow {
    margin: 0 0 18px;
    color: var(--green, #053719);
    font-weight: 950;
  }

  .hero-copy h1 {
    margin: 0;
    color: var(--green, #053719);
    font-size: clamp(2.5rem, 3.45vw, 4.05rem);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: 0;
  }

  .hero-copy h1 .title-line {
    display: block;
    color: inherit;
    white-space: nowrap;
  }

  .hero-copy h1 .title-highlight {
    color: var(--gold, #ffc400);
  }

  .lead {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--green, #053719);
    font-weight: 850;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    margin-top: 30px;
  }

  .primary-action,
  .ghost-action {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 999px;
    padding: 13px 28px;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .primary-action {
    background: var(--gold, #ffc400);
    color: var(--green, #053719);
    border: 1px solid var(--gold, #ffc400);
    box-shadow: 0 14px 28px rgba(255, 196, 0, 0.25);
  }

  .ghost-action {
    background: transparent;
    color: var(--green, #053719);
    border: 1.7px solid rgba(5, 55, 25, 0.72);
  }

  .primary-action svg,
  .ghost-action svg {
    width: 21px;
    height: 21px;
  }

  .hero-visual {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: grid;
    place-items: end center;
    overflow: visible;
  }

  .hero-flower {
    position: absolute;
    z-index: 1;
    right: -6px;
    bottom: 0;
    width: min(100%, 610px);
    height: min(100%, 430px);
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.95;
    animation: floatGlow 5.5s ease-in-out infinite;
  }

  .hero-couple {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    max-height: 500px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 22px 34px rgba(18, 63, 28, 0.14));
    animation: floatCouple 4.8s ease-in-out infinite;
  }

  .trust-pill {
    position: absolute;
    z-index: 4;
    right: 0;
    top: 51%;
    transform: translateY(-50%);
    width: 124px;
    min-height: 168px;
    display: grid;
    place-items: center;
    gap: 7px;
    padding: 12px 9px 15px;
    border: 2px solid var(--gold, #ffc400);
    border-radius: 999px;
    background: rgba(255, 236, 150, 0.54);
    color: var(--green, #053719);
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(7px);
    animation: floatBadge 4.2s ease-in-out infinite;
  }

  .trust-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 3px solid #fff8e8;
    border-radius: 999px;
    background: var(--gold, #ffc400);
  }

  .trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .trust-pill strong {
    font-size: 1rem;
    font-weight: 950;
    font-style: italic;
  }

  .trust-pill span:not(.trust-icon):not(.trust-heart-line) {
    font-size: 0.74rem;
    font-weight: 950;
    line-height: 1.3;
  }

  .trust-heart-line {
    width: 70px;
    height: 20px;
    position: relative;
    display: block;
  }

  .trust-heart-line::before,
  .trust-heart-line::after {
    content: "";
    position: absolute;
    top: 9px;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold, #ffc400);
  }

  .trust-heart-line::before {
    left: 0;
  }

  .trust-heart-line::after {
    right: 0;
  }

  .trust-heart-line i {
    position: absolute;
    left: 50%;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--gold, #ffc400);
    transform: translateX(-50%) rotate(-45deg);
  }

  .trust-heart-line i::before,
  .trust-heart-line i::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--gold, #ffc400);
  }

  .trust-heart-line i::before {
    top: -8px;
    left: 0;
  }

  .trust-heart-line i::after {
    top: 0;
    left: 8px;
  }
  /* Hero Contact Details Section CSS */
  .hero-contact-card {
    grid-column: 1 / -1;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.55fr) 158px;
    align-items: center;
    gap: 22px;
    margin-top: 4px;
    padding: 24px 28px;
    border-radius: 24px;
    background: var(--green, #153d1a);
    color: var(--white, #ffffff);
    box-shadow: 0 20px 34px rgba(18, 63, 28, 0.2);
  }

  .hero-contact-copy {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding-right: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.72);
  }

  .hero-contact-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid #fff8e8;
    border-radius: 999px;
    background: var(--gold, #ffc400);
    color: var(--green, #053719);
  }

  .hero-contact-icon .icon-img {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
  }

  .hero-contact-copy div {
    min-width: 0;
  }

  .hero-contact-kicker {
    margin: 0 0 4px;
    color: var(--gold, #ffc400);
    font-size: 0.82rem;
    font-weight: 950;
  }

  .hero-contact-copy h2 {
    margin: 0;
    color: #fff8e8;
    font-size: clamp(1.04rem, 1.25vw, 1.32rem);
    font-weight: 950;
    line-height: 1.35;
  }

  .hero-contact-copy p:last-child {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.55;
  }

  .hero-contact-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    min-width: 0;
  }

  .hero-contact-field {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .hero-contact-field > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f3f6ee;
    font-size: 0.94rem;
    font-weight: 950;
    line-height: 1.25;
  }

  .hero-contact-field > span:first-child .icon-img {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
  }

  .hero-contact-field input {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1.7px solid rgba(255, 255, 255, 0.78);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    color: #f8f8f0;
    font-size: 0.88rem;
    font-weight: 850;
    outline: none;
  }

  .hero-contact-field input::placeholder {
    color: rgba(255, 255, 255, 0.62);
  }

  .hero-contact-field input:focus {
    border-color: var(--gold, #ffc400);
    box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.16);
  }

  .hero-contact-submit {
    min-height: 46px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--gold, #ffc400);
    color: var(--green, #053719);
    font-size: 0.94rem;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(255, 196, 0, 0.22);
    white-space: nowrap;
  }

  .hero-contact-submit .icon-img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
  }

  .hero-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(255, 196, 0, 0.3);
  }

  .hero-contact-note {
    grid-column: 2 / -1;
    min-height: 18px;
    margin: -8px 0 0;
    color: #ffe998;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.45;
  }

  .hero-contact-note.is-error {
    color: #ffd4c8;
  }

  .hero-contact-note.is-success {
    color: #ffe998;
  }

  @media (max-width: 1180px) {
    .hero-contact-card {
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      border-radius: 24px;
    }

    .hero-contact-copy,
    .hero-contact-submit,
    .hero-contact-note {
      grid-column: 1 / -1;
    }

    .hero-contact-copy {
      align-items: flex-start;
      padding-right: 0;
      padding-bottom: 18px;
      border-right: 0;
      border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    }

    .hero-contact-submit {
      justify-self: start;
      min-width: 168px;
    }

    .hero-contact-note {
      margin-top: -4px;
    }
  }

  @media (max-width: 640px) {
    .hero-contact-card {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px;
      border-radius: 20px;
    }

    .hero-contact-copy {
      gap: 14px;
      padding-bottom: 16px;
    }

    .hero-contact-icon {
      width: 58px;
      height: 58px;
    }

    .hero-contact-copy h2 {
      font-size: 1.05rem;
    }

    .hero-contact-fields {
      grid-template-columns: 1fr;
    }

    .hero-contact-field input,
    .hero-contact-submit {
      min-height: 48px;
    }

    .hero-contact-submit {
      width: 100%;
    }

    .hero-contact-note {
      grid-column: 1;
      margin-top: -2px;
    }
  }


  @keyframes floatCouple {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes floatGlow {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(7px) scale(1.015);
    }
  }

  @keyframes floatBadge {
    0%, 100% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(calc(-50% - 8px));
    }
  }

  @keyframes resultFlash {
    from {
      transform: translateY(5px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Hero Responsive CSS */
  @media (max-width: 1180px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }

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

    .hero-copy h1 .title-line {
      white-space: normal;
    }

    .hero-visual {
      min-height: 390px;
    }

    .match-search {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-radius: 24px;
    }

    .search-intro,
    .search-submit,
    .search-result {
      grid-column: 1 / -1;
    }

    .search-intro {
      border-right: 0;
      padding-right: 0;
    }
  }

  @media (max-width: 640px) {
    .hero-section {
      padding: 42px 0 52px;
    }

    .hero-section .container {
      width: min(100% - 28px, 1487px);
    }

    .hero-copy h1 {
      font-size: 2.3rem;
    }

    .hero-actions {
      gap: 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .hero-actions::-webkit-scrollbar {
      display: none;
    }

    .primary-action,
    .ghost-action {
      min-height: 50px;
      padding: 12px 18px;
      font-size: 0.9rem;
    }

    .hero-visual {
      min-height: 315px;
    }

    .trust-pill {
      right: -4px;
      width: 106px;
      min-height: 146px;
    }

    .trust-icon {
      width: 48px;
      height: 48px;
    }

    .match-search {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px;
    }

    .search-icon {
      width: 58px;
      height: 58px;
    }

    .match-search select,
    .search-submit {
      min-height: 48px;
    }

    .search-result {
      grid-column: 1;
      margin-top: 0;
    }
  }

  @media (max-width: 1120px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }

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

    .hero-copy .lead,
    .hero-actions {
      justify-content: center;
      margin-inline: auto;
    }

    .hero-visual {
      min-height: 500px;
    }

    .hero-couple {
      margin-inline: auto;
    }

    .match-search {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-intro {
      grid-column: 1 / -1;
    }

    .search-submit {
      min-height: 52px;
    }

    .search-result {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 900px) {
    .hero-copy h1 {
      font-size: 2.35rem;
    }
  }

  @media (max-width: 680px) {
    .hero-section {
      padding: 52px 0 60px;
    }

    .hero-copy h1 {
      font-size: 2rem;
    }

    .lead {
      font-size: 0.98rem;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
    }

    .hero-visual {
      min-height: 410px;
    }

    .hero-flower {
      height: 360px;
      right: -16px;
    }

    .trust-pill {
      right: 0;
      bottom: 20px;
      width: 124px;
      min-height: 162px;
    }

    .match-search {
      grid-template-columns: 1fr;
      padding: 20px;
      border-radius: 20px;
    }

    .search-intro {
      align-items: flex-start;
    }
  }

  @media (max-width: 440px) {
    .hero-copy h1 {
      font-size: 1.72rem;
    }

    .hero-visual {
      min-height: 350px;
    }

    .trust-pill {
      position: relative;
      right: auto;
      bottom: auto;
      margin: -26px auto 0;
      width: 100%;
      min-height: auto;
      flex-direction: row;
      border-radius: 18px;
    }
  }
  /* Hero contact field icons - exact #EDB500 yellow */
.hero-contact-fields .hero-contact-field > span:first-child {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.hero-contact-fields .hero-contact-field > span:first-child > img.icon-img {
  display: none !important;
}

.hero-contact-fields .hero-contact-field > span:first-child::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  display: inline-block !important;
  background: #edb500 !important;
  -webkit-mask: var(--contact-icon) center / contain no-repeat !important;
  mask: var(--contact-icon) center / contain no-repeat !important;
}

.hero-contact-fields .hero-contact-field:nth-child(1) > span:first-child::before {
  --contact-icon: url("../icon-user.png");
}

.hero-contact-fields .hero-contact-field:nth-child(2) > span:first-child::before {
  --contact-icon: url("../img/icon-id-card.png");
}

.hero-contact-fields .hero-contact-field:nth-child(3) > span:first-child::before {
  --contact-icon: url("../img/icon-phone-small.png");
}

.hero-contact-fields .hero-contact-field:nth-child(4) > span:first-child::before {
  --contact-icon: url("../img/icon-document.png");
}

  /* About Section CSS */
  .about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream, #fff3d6) 0%, var(--cream-2, #fff8e8) 100%);
  }

  .about-section .container {
    width: min(100% - 44px, 1487px);
    margin-inline: auto;
  }

  .about-section svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .about-grid {
    display: grid;
    grid-template-columns: minmax(560px, 0.92fr) minmax(620px, 1fr);
    align-items: center;
    gap: clamp(34px, 3.5vw, 58px);
  }

  .about-copy {
    min-width: 0;
    max-width: 760px;
  }

  .section-kicker {
    margin: 0 0 18px;
    color: var(--green, #123f1c);
    font-size: 1rem;
    font-weight: 950;
  }

  .about-copy h2 {
    max-width: 100%;
    margin: 0;
    color: var(--green, #123f1c);
    font-size: clamp(2.2rem, 2.75vw, 3.45rem);
    line-height: 1.14;
    font-weight: 950;
    letter-spacing: 0;
  }

  .about-copy h2 .about-title-line {
    display: block;
    color: var(--green, #123f1c) !important;
    white-space: nowrap;
  }

  .about-copy h2 .about-accent {
    color: var(--gold, #ffc400) !important;
  }

  .about-copy p:not(.section-kicker) {
    max-width: 690px;
    margin: 24px 0 0;
    color: #111a12;
    font-size: clamp(0.98rem, 1.04vw, 1.1rem);
    font-weight: 900;
    line-height: 1.78;
  }

  .feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 34px 0 28px;
  }

  .feature-row article {
    position: relative;
    min-height: 132px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 16px 12px;
    border: 1px solid rgba(255, 196, 0, 0.36);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.82);
    text-align: center;
    box-shadow: 0 14px 24px rgba(23, 52, 23, 0.12);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .feature-row article::after {
    content: "";
    position: absolute;
    right: -16px;
    bottom: -18px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.2);
  }

  .feature-row article:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 30px rgba(23, 52, 23, 0.18);
  }

  .feature-row article > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #f8e39e;
    color: var(--green, #123f1c);
  }

  .feature-row article > span svg {
    width: 27px;
    height: 27px;
  }

  .feature-row h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--green, #123f1c);
    font-size: 0.84rem;
    font-weight: 950;
    line-height: 1.35;
  }

  .animated-zone article {
    animation: softRise 3.8s ease-in-out infinite;
  }

  .animated-zone article:nth-child(2) {
    animation-delay: 160ms;
  }

  .animated-zone article:nth-child(3) {
    animation-delay: 320ms;
  }

  .animated-zone article:nth-child(4) {
    animation-delay: 480ms;
  }

  @keyframes softRise {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  .about-section .small-action {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--gold, #ffc400);
    color: var(--green, #123f1c);
    font-size: 0.95rem;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(255, 196, 0, 0.2);
  }

  .about-photo {
    position: relative;
    min-height: 500px;
    padding: 0 78px 98px 0;
  }

  .about-photo img {
    width: 100%;
    min-height: 450px;
    max-height: 540px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 22px 36px rgba(23, 52, 23, 0.16);
  }

  .quote-bubble {
    position: absolute;
    right: 0;
    bottom: 36px;
    width: 238px;
    min-height: 238px;
    display: grid;
    place-items: center;
    gap: 7px;
    text-align: center;
    padding: 30px 26px;
    border: 3px solid var(--gold, #ffc400);
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.96);
    color: var(--green, #123f1c);
    box-shadow: 0 18px 34px rgba(23, 52, 23, 0.16);
    animation: quotePulse 4s ease-in-out infinite;
  }

  .quote-bubble strong {
    color: var(--gold, #ffc400);
    font-size: 3.25rem;
    line-height: 0.5;
  }

  .quote-bubble p {
    margin: 0;
    color: var(--green, #123f1c);
    font-size: 0.82rem;
    font-weight: 950;
    line-height: 1.55;
  }

  .quote-bubble > span {
    width: 76px;
    height: 19px;
    position: relative;
    display: block;
  }

  .quote-bubble > span::before,
  .quote-bubble > span::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold, #ffc400);
  }

  .quote-bubble > span::before {
    left: 0;
  }

  .quote-bubble > span::after {
    right: 0;
  }

  .quote-bubble i {
    position: absolute;
    left: 50%;
    top: 4px;
    width: 15px;
    height: 15px;
    background: var(--gold, #ffc400);
    transform: translateX(-50%) rotate(-45deg);
  }

  .quote-bubble i::before,
  .quote-bubble i::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: var(--gold, #ffc400);
  }

  .quote-bubble i::before {
    top: -7px;
    left: 0;
  }

  .quote-bubble i::after {
    top: 0;
    left: 7px;
  }

  @keyframes quotePulse {
    0%, 100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.035);
    }
  }

  .stats-bar {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 248, 232, 0.88);
    box-shadow: 0 16px 30px rgba(23, 52, 23, 0.14);
  }

  .stats-bar > div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 92px;
    padding: 18px 26px;
  }

  .stats-bar > div + div {
    border-left: 2px solid rgba(255, 196, 0, 0.34);
  }

  .stat-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #f8e39e;
    color: var(--green, #123f1c);
  }

  .stat-icon svg {
    width: 27px;
    height: 27px;
  }

  .stats-bar p {
    margin: 0;
  }

  .stats-bar strong {
    display: block;
    color: var(--green, #123f1c);
    font-size: 1.34rem;
    font-weight: 950;
    font-style: italic;
    line-height: 1;
  }

  .stats-bar span:not(.stat-icon) {
    display: block;
    margin-top: 7px;
    color: var(--green, #123f1c);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.35;
  }

  /* About Responsive CSS */
  @media (max-width: 1180px) {
    .about-grid {
      grid-template-columns: 1fr;
    }

    .about-copy {
      max-width: 820px;
    }

    .about-copy h2 .about-title-line {
      white-space: normal;
    }

    .about-photo {
      max-width: 760px;
    }

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

    .stats-bar > div:nth-child(3) {
      border-left: 0;
      border-top: 2px solid rgba(255, 196, 0, 0.34);
    }

    .stats-bar > div:nth-child(4) {
      border-top: 2px solid rgba(255, 196, 0, 0.34);
    }
  }

  @media (max-width: 700px) {
    .about-section .container {
      width: min(100% - 28px, 1487px);
    }

    .about-copy h2 {
      font-size: 2.15rem;
    }

    .feature-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-photo {
      min-height: auto;
      padding: 0 0 132px;
    }

    .about-photo img {
      min-height: 320px;
    }

    .quote-bubble {
      right: 50%;
      bottom: 0;
      width: 186px;
      min-height: 186px;
      transform: translateX(50%);
    }

    .stats-bar {
      grid-template-columns: 1fr;
    }

    .stats-bar > div + div {
      border-left: 0;
      border-top: 2px solid rgba(255, 196, 0, 0.34);
    }
  }

  @media (max-width: 1120px) {
    .about-grid {
      grid-template-columns: 1fr;
    }

    .about-photo {
      max-width: 680px;
      margin-inline: auto;
    }
  }

  @media (max-width: 900px) {
    .about-copy h2 {
      font-size: 2.35rem;
    }

    .feature-row,
    .stats-bar {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-bar div + div {
      border-left: 0;
      border-top: 1px solid rgba(255, 196, 0, 0.36);
    }
  }

  @media (max-width: 680px) {
    .about-copy h2 {
      font-size: 2rem;
    }

    .about-copy p:not(.section-kicker) {
      font-size: 0.98rem;
    }

    .feature-row,
    .stats-bar {
      grid-template-columns: 1fr;
    }

    .about-grid {
      gap: 34px;
    }

    .about-photo {
      padding: 0 0 92px;
    }

    .about-photo img {
      min-height: 330px;
    }

    .quote-bubble {
      left: 50%;
      right: auto;
      bottom: 0;
      width: 196px;
      min-height: 196px;
      transform: translateX(-50%);
    }

    .quote-bubble p {
      font-size: 0.76rem;
    }
  }

  @media (max-width: 440px) {
    .about-copy h2 {
      font-size: 1.72rem;
    }
  }

  /* Profiles Carousel Section CSS */
  .profiles-section {
    overflow: hidden;
    background: var(--cream, #fff3d6);
  }

  .profiles-heading {
    text-align: center;
  }

  .profiles-section .section-kicker {
    margin: 0 0 16px;
    color: var(--green, #123f1c);
    font-weight: 950;
  }

  .profiles-section .section-heading h2 {
    margin: 0;
    font-size: clamp(2.15rem, 2.7vw, 3.25rem);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: 0;
  }

  .profiles-section .profiles-heading h2 .profiles-title-line {
    display: block;
    color: var(--green, #123f1c);
  }

  .profiles-section .profiles-heading h2 .profiles-title-accent {
    color: var(--gold, #ffc400);
  }

  .profile-tabs {
    width: min(100%, 520px);
    min-height: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 22px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: var(--white, #ffffff);
    box-shadow: none;
  }

  .tab-button {
    min-width: 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--green, #123f1c);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 950;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease;
  }

  .tab-button.active {
    background: var(--gold, #ffc400);
    color: var(--green, #123f1c);
  }

  .carousel-shell {
    margin-top: 34px;
    overflow: visible;
  }

  .profile-viewport {
    width: 100%;
    overflow: hidden;
  }

  .profile-track {
    display: flex;
    width: 100%;
    transition: transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .profile-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .profile-card {
    overflow: hidden;
    border-radius: 12px;
    background: var(--white, #ffffff);
    box-shadow: none;
    transform: translateY(0);
    transition: transform 240ms ease;
  }

  .profile-card:hover {
    transform: translateY(-6px);
    box-shadow: none;
  }

  .profile-card__image {
    aspect-ratio: 1.36 / 1;
    overflow: hidden;
    background: #f6e7b7;
  }

  .profile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 500ms ease;
  }

  .profile-card:hover img {
    transform: scale(1.04);
  }

  .profile-card__body {
    padding: 16px 16px 18px;
  }

  .profile-card h3 {
    margin: 0 0 10px;
    color: var(--green, #123f1c);
    font-size: 1.02rem;
    font-weight: 950;
    line-height: 1.2;
  }

  .profile-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
    color: var(--green, #123f1c);
    font-size: 0.74rem;
    font-weight: 900;
  }

  .profile-card p {
    margin: 5px 0;
    color: #1d2d1d;
    font-size: 0.74rem;
    font-weight: 900;
  }

  .profile-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 10px;
    margin-top: 14px;
  }

  .profile-card__actions a,
  .profile-card__actions button {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    color: var(--green, #123f1c);
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
  }

  .profile-card__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 9px 14px;
    background: var(--gold, #ffc400);
    text-align: center;
    white-space: nowrap;
  }

  .profile-card__actions button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 38px;
    padding: 0;
    background: #f8e39e;
    cursor: pointer;
  }

  .profile-card__actions button svg {
    width: 17px;
    height: 17px;
    fill: var(--green, #123f1c);
    stroke: none;
  }

  .carousel-controls {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .dots {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f8e39e;
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease;
  }

  .dots button.active {
    width: 22px;
    background: var(--gold, #ffc400);
  }

  .arrow-group {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 12px;
  }

  .circle-arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #f8e39e;
    color: var(--green, #123f1c);
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease;
  }

  .circle-arrow:hover {
    transform: translateY(-2px);
    background: var(--gold, #ffc400);
  }

  .circle-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Profiles Responsive CSS */
  @media (max-width: 1100px) {
    .profile-slide {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .profile-tabs {
      width: 100%;
    }

    .tab-button {
      padding: 9px 12px;
      font-size: 0.78rem;
    }

    .profile-slide {
      grid-template-columns: 1fr;
    }

    .carousel-controls {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .dots,
    .arrow-group {
      grid-column: 1;
      justify-self: center;
    }
  }

  @media (max-width: 1120px) {
    .profile-slide {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 680px) {
    .profile-slide {
      grid-template-columns: 1fr;
    }

    .profile-tabs {
      grid-template-columns: 1fr;
      border-radius: 22px;
    }

    .carousel-controls {
      flex-direction: column;
      gap: 16px;
    }
  }

  @media (max-width: 440px) {
    .profile-card__actions {
      grid-template-columns: 1fr;
    }

    .profile-card__actions button {
      width: 42px;
      margin-inline: auto;
    }
  }

  /* Pricing Section CSS */
  .pricing-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream-2, #fff8e8) 0%, var(--cream, #fff3d6) 100%);
  }

  .pricing-section .pricing-grid.container {
    width: calc(100% - 44px);
    max-width: none;
    margin-inline: auto;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    align-items: start;
    gap: clamp(32px, 4vw, 72px);
  }

  .pricing-copy {
    min-width: 0;
    padding-top: 8px;
  }

  .pricing-copy .section-kicker {
    margin: 0 0 28px;
    color: var(--green, #123f1c);
    font-size: 1rem;
    font-weight: 950;
  }

  .pricing-copy h2 {
    margin: 0;
    color: #06170a;
    font-size: clamp(2.2rem, 3.35vw, 4.75rem);
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .pricing-copy h2 span {
    color: var(--gold, #ffc400);
  }

  .pricing-copy > p:not(.section-kicker) {
    max-width: 720px;
    margin: 28px 0 0;
    color: #123f1c;
    font-size: clamp(1rem, 1vw, 1.18rem);
    font-weight: 900;
    line-height: 1.9;
  }

  .secure-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 16px;
    max-width: 760px;
    margin: 40px 0 38px;
  }

  .secure-row article {
    position: relative;
    min-height: 132px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 20px 12px 18px;
    border: 1.5px solid rgba(255, 196, 0, 0.28);
    border-radius: 16px;
    background: rgba(255, 248, 232, 0.78);
    text-align: center;
    box-shadow: 0 18px 30px rgba(18, 63, 28, 0.12);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .secure-row article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.22);
    pointer-events: none;
  }

  .secure-row article:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 38px rgba(18, 63, 28, 0.16);
  }

  .secure-row span,
  .plan-icon,
  .billing-card h3 span {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f8e39e;
    color: var(--green, #123f1c);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
  }

  .secure-row span {
    width: 58px;
    height: 58px;
  }

  .secure-row svg,
  .plan-icon svg,
  .billing-card h3 svg,
  .pay-button svg,
  .secure-note svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .secure-row strong {
    color: var(--green, #123f1c);
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1.35;
  }

  .plans-title {
    margin: 0 0 34px;
    color: var(--green, #123f1c);
    font-size: clamp(1.18rem, 1.35vw, 1.55rem);
    font-weight: 950;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 0;
  }

  .plan-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 44px 24px 24px;
    border: 2px solid var(--gold, #ffc400);
    border-radius: 18px;
    background: rgba(255, 248, 232, 0.74);
    box-shadow: 0 20px 34px rgba(18, 63, 28, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
  }

  .plan-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 116px;
    height: 116px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.22);
    pointer-events: none;
  }

  .plan-card:hover,
  .plan-card.active {
    transform: translateY(-8px);
    background: rgba(255, 248, 232, 0.98);
    box-shadow: 0 28px 52px rgba(18, 63, 28, 0.13);
  }

  .best-badge {
    position: absolute;
    left: 50%;
    top: 0;
    min-width: 150px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 0 0 999px 999px;
    background: var(--green, #123f1c);
    color: var(--white, #ffffff);
    font-size: 0.84rem;
    font-weight: 950;
    transform: translateX(-50%);
    z-index: 4;
  }

  .plan-head {
    min-height: 78px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
  }

  .plan-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
  }

  .plan-name h3 {
    margin: 0;
    color: var(--green, #123f1c);
    font-size: clamp(1.38rem, 1.55vw, 1.9rem);
    font-weight: 950;
    line-height: 1.2;
  }

  .plan-name p {
    margin: 3px 0 0;
    color: #102616;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .plan-card ul {
    min-height: 142px;
    display: grid;
    align-content: start;
    gap: 12px;
    margin: 24px 0 22px;
    padding: 0;
    color: #102616;
    list-style: none;
    font-size: clamp(0.88rem, 0.9vw, 1rem);
    font-weight: 900;
    line-height: 1.55;
    position: relative;
    z-index: 2;
  }

  .plan-card li::before {
    content: "✓";
    margin-right: 9px;
    color: var(--green, #123f1c);
    font-weight: 950;
  }

  .price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    position: relative;
    z-index: 2;
  }

  .price del {
    color: rgba(16, 38, 22, 0.62);
    font-size: 1rem;
    font-weight: 900;
  }

  .price strong {
    color: var(--gold-2, #f2a900);
    font-size: clamp(1.45rem, 1.6vw, 2rem);
    font-weight: 950;
  }

  .pricing-side {
    position: sticky;
    top: 145px;
    display: grid;
    gap: 28px;
    align-self: start;
  }

  .pricing-illustration {
    width: min(100%, 360px);
    justify-self: center;
    display: block;
    opacity: 0.72;
    filter: drop-shadow(0 14px 24px rgba(18, 63, 28, 0.12));
  }

  .billing-card {
    padding: 28px;
    border: 2px solid var(--gold, #ffc400);
    border-radius: 18px;
    background: rgba(255, 248, 232, 0.92);
    box-shadow: 0 24px 46px rgba(18, 63, 28, 0.12);
  }

  .billing-card h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: var(--green, #123f1c);
    font-size: clamp(1.25rem, 1.35vw, 1.65rem);
    font-weight: 950;
  }

  .billing-card h3 span {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
  }

  .invoice-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(18, 63, 28, 0.14);
    font-weight: 900;
  }

  .invoice-line span {
    color: rgba(16, 38, 22, 0.66);
  }

  .invoice-line strong {
    color: #102616;
    text-align: right;
  }

  .invoice-line em,
  .invoice-line small {
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    color: rgba(16, 38, 22, 0.58);
  }

  .discount strong {
    color: #20863a;
  }

  .invoice-total {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 6px 18px;
    margin-top: 10px;
    padding: 18px 0 12px;
    font-weight: 900;
  }

  .invoice-total span {
    color: rgba(16, 38, 22, 0.66);
  }

  .invoice-total strong {
    color: var(--gold-2, #f2a900);
    font-size: clamp(1.75rem, 2vw, 2.45rem);
    font-weight: 950;
  }

  .invoice-total small {
    grid-column: 2;
    color: rgba(16, 38, 22, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    text-align: right;
  }

  .pay-button {
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: var(--gold, #ffc400);
    color: var(--green, #123f1c);
    font-size: 1rem;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 18px 30px rgba(255, 196, 0, 0.28);
  }

  .pay-button svg {
    width: 22px;
    height: 22px;
  }

  .secure-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 18px 0 0;
    color: rgba(16, 38, 22, 0.7);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.5;
  }

  .secure-note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .payment-logos {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 196, 0, 0.5);
  }

  .payment-logos img {
    display: block;
    max-width: 72px;
    max-height: 24px;
    object-fit: contain;
  }

  .payment-logos img[alt="VISA"] {
    max-width: 58px;
  }

  .payment-logos img[alt="RuPay"] {
    max-width: 72px;
  }

  .payment-logos img[alt="UPI"] {
    max-width: 64px;
  }

  .animated-zone article {
    animation: softRise 3.8s ease-in-out infinite;
  }

  .animated-zone article:nth-child(2) {
    animation-delay: 160ms;
  }

  .animated-zone article:nth-child(3) {
    animation-delay: 320ms;
  }

  .animated-zone article:nth-child(4) {
    animation-delay: 480ms;
  }

  @keyframes softRise {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  /* Pricing Responsive CSS */
  @media (max-width: 1180px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .pricing-side {
      position: relative;
      top: auto;
      grid-template-columns: 260px 1fr;
      align-items: center;
    }

    .pricing-illustration {
      width: 260px;
    }
  }

  @media (max-width: 820px) {
    .pricing-section .pricing-grid.container {
      width: calc(100% - 28px);
    }

    .secure-row,
    .plans,
    .pricing-side {
      grid-template-columns: 1fr;
    }

    .pricing-illustration {
      width: 220px;
    }
  }

  @media (max-width: 560px) {
    .pricing-copy h2 {
      font-size: 2rem;
    }

    .secure-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .billing-card,
    .plan-card {
      padding: 22px;
    }

    .plan-card {
      padding-top: 44px;
    }

    .plan-head {
      grid-template-columns: 54px 1fr;
    }

    .plan-icon {
      width: 52px;
      height: 52px;
    }
  }

  @media (max-width: 1120px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      align-items: stretch;
    }

    .billing-card {
      position: static;
      max-width: 560px;
      margin-inline: auto;
    }
  }

  @media (max-width: 900px) {
    .pricing-copy h2 {
      font-size: 2.35rem;
    }

    .secure-row,
    .plans {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 680px) {
    .pricing-copy h2 {
      font-size: 2rem;
    }

    .pricing-copy > p:not(.section-kicker) {
      font-size: 0.98rem;
    }

    .secure-row,
    .plans {
      grid-template-columns: 1fr;
    }

    .pricing-grid {
      gap: 34px;
    }
  }

  @media (max-width: 440px) {
    .pricing-copy h2 {
      font-size: 1.72rem;
    }

    .billing-card {
      padding: 22px;
    }

    .invoice-total strong {
      font-size: 1.6rem;
    }
  }

  /* Success Stories Carousel Section CSS */
  .stories-section {
    position: relative;
    overflow: hidden;
    background: var(--cream, #fff3d6);
  }

  .stories-section.section-pad {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .stories-heading {
    text-align: center;
  }

  .stories-heading .section-kicker {
    margin-bottom: 18px;
  }

  .stories-heading h2 {
    max-width: 980px;
    margin: 0 auto;
    color: var(--green, #123f1c);
    font-size: clamp(2.05rem, 3vw, 3.35rem);
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .stories-section .stories-heading h2 .stories-title-line {
    display: block;
    white-space: nowrap;
  }

  .stories-section .stories-heading h2 .stories-title-main {
    color: var(--green, #123f1c) !important;
  }

  .stories-section .stories-heading h2 .stories-title-accent {
    color: var(--gold, #ffc400) !important;
  }

  .stories-heading > p:not(.section-kicker) {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(18, 63, 28, 0.72);
    font-size: 1.05rem;
    font-weight: 850;
    line-height: 1.7;
  }

  .story-carousel.container {
    width: calc(100% - 28px);
    max-width: none;
  }

  .story-carousel {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    margin-top: 34px;
  }

  .story-stage {
    position: relative;
    width: min(100%, 1180px);
    min-height: 350px;
    overflow: visible;
  }

  .story-card {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--gold, #ffc400);
    background: rgba(255, 248, 232, 0.96);
    box-shadow: 0 22px 48px rgba(18, 63, 28, 0.13);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 560ms cubic-bezier(0.23, 1, 0.32, 1),
      opacity 420ms ease,
      filter 420ms ease;
  }

  .story-card.is-active {
    z-index: 5;
    width: min(700px, 70vw);
    min-height: 260px;
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
    padding: 30px 36px;
    border-radius: 24px;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .story-card.is-prev,
  .story-card.is-next,
  .story-card.is-far-prev,
  .story-card.is-far-next {
    z-index: 2;
    width: 190px;
    min-height: 248px;
    display: grid;
    place-items: center;
    padding: 18px 14px;
    border-radius: 16px;
    text-align: center;
    filter: saturate(0.95);
  }

  .story-card.is-prev {
    opacity: 0.72;
    transform: translate(-230%, -50%) scale(1);
  }

  .story-card.is-next {
    opacity: 0.72;
    transform: translate(130%, -50%) scale(1);
  }

  .story-card.is-far-prev {
    opacity: 0.28;
    transform: translate(-320%, -50%) scale(0.94);
  }

  .story-card.is-far-next {
    opacity: 0.28;
    transform: translate(220%, -50%) scale(0.94);
  }

  .story-card img {
    display: block;
    object-fit: cover;
  }

  .story-card.is-active img {
    width: 220px;
    height: 220px;
    border: 8px solid var(--gold, #ffc400);
    border-radius: 999px;
  }

  .story-card:not(.is-active) img {
    width: 104px;
    height: 104px;
    margin: 0 auto 12px;
    border: 5px solid var(--gold, #ffc400);
    border-radius: 999px;
  }

  .story-card blockquote {
    margin: 0;
  }

  .story-card blockquote::before {
    content: "\201C";
    display: block;
    color: var(--gold, #ffc400);
    font-size: 4rem;
    line-height: 0.65;
    font-weight: 950;
  }

  .story-card p {
    margin: 14px 0 20px;
    color: var(--green, #123f1c);
    font-size: 1.05rem;
    font-weight: 950;
    line-height: 1.55;
  }

  .story-card footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    color: var(--green, #123f1c);
    font-size: 0.94rem;
    font-weight: 950;
  }

  .story-card footer strong {
    text-align: left;
  }

  .story-card footer small {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 950;
  }

  .story-heart-line {
    min-width: 82px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .story-heart-line::before,
  .story-heart-line::after {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold, #ffc400);
  }

  .story-heart-line i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    margin: 0 8px;
    color: #ed1717;
  }

  .story-heart-line svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .story-card:not(.is-active) blockquote::before,
  .story-card:not(.is-active) p {
    display: none;
  }

  .story-card:not(.is-active) footer {
    display: block;
  }

  .story-card:not(.is-active) footer strong {
    display: block;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .story-card:not(.is-active) .story-heart-line {
    display: none;
  }

  .story-card:not(.is-active) footer small {
    display: block;
    margin-top: 8px;
    color: rgba(18, 63, 28, 0.74);
    font-size: 0.66rem;
  }

  .story-nav {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--green, #123f1c);
    color: var(--gold, #ffc400);
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 12px 24px rgba(18, 63, 28, 0.18);
    transition: transform 220ms ease, background 220ms ease;
  }

  .story-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: #063018;
  }

  .story-prev {
    left: calc(50% - min(590px, 47vw));
  }

  .story-next {
    right: calc(50% - min(590px, 47vw));
  }

  .story-nav svg {
    width: 22px;
    height: 22px;
  }

  .story-dots {
    margin-top: -4px;
  }

  .story-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f8e39e;
    transition: width 220ms ease, background 220ms ease;
  }

  .story-dots button.active {
    width: 30px;
    background: var(--gold, #ffc400);
  }

  /* Success Stories Responsive CSS */
  @media (max-width: 980px) {
    .stories-section .stories-heading h2 .stories-title-line {
      white-space: normal;
    }

    .story-carousel {
      min-height: 500px;
    }

    .story-stage {
      min-height: 500px;
    }

    .story-card.is-active {
      width: min(92vw, 520px);
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 18px;
      text-align: center;
    }

    .story-card.is-prev,
    .story-card.is-next,
    .story-card.is-far-prev,
    .story-card.is-far-next {
      display: none;
    }

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

    .story-card footer strong,
    .story-card footer small {
      text-align: center;
    }

    .story-prev {
      left: 12px;
    }

    .story-next {
      right: 12px;
    }
  }

  @media (max-width: 560px) {
    .stories-section.section-pad {
      padding-top: 44px;
      padding-bottom: 48px;
    }

    .stories-heading h2 {
      font-size: 2rem;
    }

    .story-card.is-active {
      padding: 24px 20px;
    }

    .story-card.is-active img {
      width: 180px;
      height: 180px;
    }
  }

  @media (max-width: 900px) {
    .story-stage {
      min-height: 570px;
    }

    .story-card {
      width: min(100%, 430px);
      grid-template-columns: 1fr;
      text-align: center;
    }

    .story-card img {
      width: 220px;
      height: 220px;
      margin-inline: auto;
    }

    .story-card footer {
      justify-content: center;
    }

    .story-card.is-prev,
    .story-card.is-next,
    .story-card.is-far-prev,
    .story-card.is-far-next {
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, -50%) scale(0.82);
    }
  }

  @media (max-width: 680px) {
    .story-carousel {
      grid-template-columns: 1fr;
    }

    .story-prev,
    .story-next {
      position: absolute;
      top: 50%;
      z-index: 10;
    }

    .story-prev {
      left: 0;
    }

    .story-next {
      right: 0;
    }

    .story-card {
      padding: 22px;
    }
  }

  @media (max-width: 440px) {
    .story-stage {
      min-height: 610px;
    }
  }
  /* Success story image placeholders - paste after existing story CSS */
.story-card blockquote::before {
  content: none !important;
  display: none !important;
}

.story-card > img.story-photo,
.story-card.is-active > img.story-photo {
  object-fit: cover !important;
  object-position: center !important;
}

.story-card.is-active > img.story-photo {
  width: 250px !important;
  height: 250px !important;
}

.story-quote-image-placeholder {
  width: 62px !important;
  height: 44px !important;
  display: block !important;
  margin: 0 0 10px !important;
  line-height: 0 !important;
}

.story-quote-placeholder-img,
.story-card.is-active .story-quote-placeholder-img {
  width: 58px !important;
  height: 40px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.story-heart-img,
.story-card.is-active .story-heart-img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  display: block !important;
  object-fit: contain !important;
}

.story-card:not(.is-active) .story-quote-image-placeholder {
  display: none !important;
}

@media (max-width: 720px) {
  .story-card.is-active > img.story-photo {
    width: 190px !important;
    height: 190px !important;
  }

  .story-quote-image-placeholder {
    margin-inline: auto !important;
  }
}


  /* Gallery Carousel Section CSS */
  .gallery-section {
    background: linear-gradient(180deg, var(--cream-2), var(--cream));
  }

  .gallery-board {
    display: grid;
    grid-template-columns: 0.9fr 1.8fr 0.9fr;
    gap: 20px;
    min-height: 372px;
    opacity: 1;
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .gallery-board.is-changing {
    opacity: 0;
    transform: translateY(14px);
  }

  .gallery-tall,
  .gallery-tile {
    overflow: hidden;
    border-radius: 14px;
    background: #f8e39e;
    box-shadow: var(--shadow-card);
  }

  .gallery-tall {
    height: 372px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-tile {
    height: 178px;
  }

  .gallery-tall img,
  .gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
  }

  .gallery-tall:hover img,
  .gallery-tile:hover img {
    transform: scale(1.06);
  }

  /* Gallery Responsive CSS */
  @media (max-width: 900px) {
    .gallery-board {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }

    .gallery-tall {
      height: 320px;
    }
  }

  @media (max-width: 680px) {
    .gallery-controls {
      flex-direction: column;
      gap: 16px;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .gallery-tile {
      height: 230px;
    }
  }

  /* Advertisement Section CSS */
  .closing-cta {
    position: relative;
    background: var(--cream);
    overflow: hidden;
  }

  .cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    align-items: center;
    gap: 40px;
    padding: 70px 0 30px;
  }

  .cta-copy p:not(.section-kicker) {
    max-width: 600px;
    margin: 26px 0 30px;
    color: #1d2d1d;
    font-size: 1.05rem;
    font-weight: 850;
  }

  .cta-photo {
    position: relative;
    min-height: 520px;
  }

  .cta-photo::before {
    content: "";
    position: absolute;
    inset: 24px auto auto 0;
    width: 82%;
    aspect-ratio: 1;
    border: 8px solid rgba(255, 196, 0, 0.48);
    border-radius: 999px;
  }

  .cta-photo img {
    position: absolute;
    inset: 0 0 auto auto;
    width: min(100%, 520px);
    height: 520px;
    object-fit: cover;
    border-radius: 0 0 0 210px;
    box-shadow: var(--shadow-soft);
  }

  /* Advertisement Responsive CSS */
  @media (max-width: 1120px) {
    .cta-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 900px) {
    .cta-copy h2 {
      font-size: 2.35rem;
    }

    .cta-photo {
      min-height: 420px;
    }

    .cta-photo img {
      height: 420px;
    }
  }

  @media (max-width: 680px) {
    .cta-copy h2 {
      font-size: 2rem;
    }

    .cta-copy p:not(.section-kicker) {
      font-size: 0.98rem;
    }

    .cta-grid {
      gap: 34px;
    }
  }

  @media (max-width: 440px) {
    .cta-copy h2 {
      font-size: 1.72rem;
    }
  }

/* Home page title sizing */
.home-page {
  --home-section-title: clamp(2.15rem, 3vw, 3rem);
}

.home-page .section-heading h2,
.home-page .about-copy h2,
.home-page .pricing-copy h2,
.home-page .cta-copy h2,
.home-page .stories-heading h2 {
  font-size: var(--home-section-title);
  line-height: 1.18;
  letter-spacing: 0;
}

@media (max-width: 680px) {
  .home-page {
    --home-section-title: 2rem;
  }
}

@media (max-width: 440px) {
  .home-page {
    --home-section-title: 1.72rem;
  }
}

/* Deadline polish: dynamic home content and richer image presentation */
.home-page .km-dynamic-title-line {
  display: block;
  color: inherit !important;
}

.home-page .km-dynamic-title-line > span {
  color: var(--gold, #ffc400) !important;
}

.trust-pill span:not(.trust-icon):not(.trust-heart-line),
.stats-bar span:not(.stat-icon) {
  white-space: pre-line;
}

.profile-slide {
  gap: clamp(18px, 1.8vw, 30px);
}

.profile-card {
  border: 1px solid rgba(18, 63, 28, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: 0 18px 42px rgba(18, 63, 28, 0.12);
}

.profile-card:hover {
  box-shadow: 0 24px 54px rgba(18, 63, 28, 0.18);
}

.profile-card__image {
  aspect-ratio: 4 / 5;
  min-height: 280px;
}

.profile-card__body {
  padding: 18px 18px 20px;
}

.story-card.is-active img {
  width: 250px;
  height: 250px;
}

.gallery-tall,
.gallery-tile {
  border: 1px solid rgba(18, 63, 28, 0.08);
  box-shadow: 0 20px 44px rgba(18, 63, 28, 0.16);
}

.gallery-tall {
  height: 420px;
}

.gallery-board {
  min-height: 420px;
}

.gallery-tile {
  height: 202px;
}

@media (max-width: 1180px) {
  .profile-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .profile-slide {
    grid-template-columns: 1fr;
  }

  .profile-card__image {
    min-height: 340px;
  }

  .story-card.is-active img {
    width: 190px;
    height: 190px;
  }
}


/* =========================================================
   ICON PLACEHOLDER FIX - proper small image sizes
   Put your manual icon in: assets/icons/icon-placeholder.png
   ========================================================= */
.icon-img,
.icon-placeholder-img {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  object-fit: contain !important;
  object-position: center !important;
  vertical-align: middle !important;
  flex: 0 0 auto !important;
}

.primary-action .icon-img,
.ghost-action .icon-img,
.search-submit .icon-img,
.pay-button .icon-img,
.secure-note .icon-img,
.profile-card__actions a .icon-img,
.profile-card__actions button .icon-img,
.story-nav .icon-img,
.circle-arrow .icon-img,
.gallery-controls .icon-img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
}

.trust-icon .icon-img,
.search-icon .icon-img,
.feature-row article > span .icon-img,
.stat-icon .icon-img,
.secure-row article > span .icon-img,
.plan-icon .icon-img,
.billing-card h3 span .icon-img {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
}

.match-search label > span:first-child .icon-img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
}

.payment-logo-badge .icon-img {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
}

/* important: stop placeholder from becoming huge inside buttons/cards */
.primary-action,
.ghost-action,
.search-submit,
.pay-button,
.profile-card__actions a,
.profile-card__actions button,
.story-nav,
.circle-arrow {
  overflow: hidden;
}

/* hide any old inline svg icon if browser still keeps it */
.primary-action svg,
.ghost-action svg,
.match-search svg,
.feature-row svg,
.stats-bar svg,
.secure-row svg,
.plan-icon svg,
.billing-card svg,
.pay-button svg,
.secure-note svg,
.profile-card__actions svg,
.story-nav svg,
.circle-arrow svg,
.gallery-controls svg,
.closing-cta svg {
  display: none !important;
}

/* profile carousel generated icons also same size */
.profile-card__actions a img,
.profile-card__actions button img,
.arrow-group button img,
.gallery-controls button img,
.story-nav img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  object-fit: contain !important;
}


/* =========================================================
   FINAL MARKED ICON PLACEHOLDER FIX
   Manual replace image paths:
   assets/icons/arrow-placeholder.png
   assets/icons/heart-placeholder.png
   assets/icons/payment-placeholder.png
   assets/icons/visa-placeholder.png
   assets/icons/rupay-placeholder.png
   assets/icons/upi-placeholder.png
   ========================================================= */
.profile-arrow-icon,
.profile-card__actions a .profile-arrow-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  object-fit: contain !important;
  display: inline-block !important;
  margin-left: 4px !important;
  vertical-align: middle !important;
}

.profile-heart-icon,
.profile-card__actions button .profile-heart-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.profile-card__actions button {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.profile-card__actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  overflow: hidden !important;
}

.pricing-top-image {
  width: min(100%, 360px) !important;
  max-height: 320px !important;
  display: block !important;
  margin: 0 auto 22px !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: drop-shadow(0 14px 24px rgba(18, 63, 28, 0.10));
}

.pricing-illustration {
  display: none !important;
}

.payment-logos {
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 22px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 196, 0, 0.5) !important;
}

.payment-logo,
.payment-logos .payment-logo {
  width: 68px !important;
  height: 42px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  max-height: 42px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 7px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 18px rgba(18, 63, 28, 0.10) !important;
}

.payment-logo-badge {
  display: none !important;
}

@media (max-width: 1180px) {
  .pricing-side {
    grid-template-columns: minmax(220px, 300px) 1fr;
  }
  .pricing-top-image {
    width: min(100%, 300px) !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 820px) {
  .pricing-side {
    grid-template-columns: 1fr;
  }
  .pricing-top-image {
    width: min(100%, 260px) !important;
    margin: 0 auto 18px !important;
  }
}


/* =========================================================
   PROFILE CARD ARROW + ROUND HEART PLACEHOLDER FINAL FIX
   Arrow inside yellow "முழு விவரம் காண" button = image placeholder
   Round button near arrow = heart image placeholder
   Replace images manually:
   assets/icons/arrow-placeholder.png
   assets/icons/heart-placeholder.png
   ========================================================= */
.profile-card__actions{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px !important;
  gap: 10px !important;
  align-items: center !important;
}

.profile-card__actions a{
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 9px 12px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.profile-card__actions a .profile-arrow-icon{
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  max-width: 17px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: inline-block !important;
  margin: 0 !important;
}

.profile-card__actions button,
.profile-card__actions .profile-heart-btn{
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  cursor: pointer !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.72) !important;
}

.profile-card__actions button .profile-heart-icon,
.profile-card__actions .profile-heart-btn .profile-heart-icon{
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: 0 auto !important;
}

.profile-card__actions a span,
.profile-card__actions button svg{
  display: none !important;
}

.about-section .small-action{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.btn-arrow-placeholder{
  width: 24px !important;
  height: 24px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}

.about-arrow-placeholder{
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 440px){
  .profile-card__actions{
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }
}


/* =========================================================
   FINAL PROFILE CARD PLACEHOLDER ICON FIX
   - Yellow button arrow uses image placeholder
   - Round side button uses image placeholder for heart PNG
   ========================================================= */
.icon-img,
.icon-placeholder-img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

.profile-card__actions{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) 38px !important;
  align-items:center !important;
  gap:10px !important;
  margin-top:14px !important;
}

.profile-card__actions a{
  position:relative !important;
  min-height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  padding:9px 38px 9px 16px !important;
  border-radius:999px !important;
  background:var(--gold, #ffc400) !important;
  color:var(--green, #123f1c) !important;
  font-size:0.78rem !important;
  font-weight:950 !important;
  line-height:1 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  overflow:hidden !important;
}

.profile-action-arrow-wrap{
  position:absolute !important;
  right:8px !important;
  top:50% !important;
  width:22px !important;
  height:22px !important;
  transform:translateY(-50%) !important;
  display:grid !important;
  place-items:center !important;
  border-radius:6px !important;
  background:rgba(255, 196, 0, 0.96) !important;
  flex:0 0 auto !important;
  overflow:hidden !important;
}

.profile-action-arrow-img{
  width:14px !important;
  height:14px !important;
  object-fit:contain !important;
  display:block !important;
}

.profile-card__actions button.profile-heart-btn{
  width:38px !important;
  height:38px !important;
  min-width:38px !important;
  min-height:38px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:999px !important;
  background:#f8e39e !important;
  display:grid !important;
  place-items:center !important;
  cursor:pointer !important;
  overflow:hidden !important;
  box-shadow:none !important;
}

.profile-card__actions button.profile-heart-btn .profile-heart-img{
  width:18px !important;
  height:18px !important;
  object-fit:contain !important;
  display:block !important;
}

.profile-card__actions button.profile-heart-btn svg,
.profile-card__actions a svg,
.profile-card__actions a > span:not(.profile-action-arrow-wrap){
  display:none !important;
}

.circle-arrow img,
.story-nav img,
.gallery-controls .circle-arrow img{
  width:18px !important;
  height:18px !important;
  object-fit:contain !important;
  display:block !important;
}

.small-action .btn-arrow-placeholder{
  width:24px !important;
  height:24px !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 auto !important;
}

.small-action .about-arrow-placeholder{
  width:16px !important;
  height:16px !important;
  object-fit:contain !important;
  display:block !important;
}

@media (max-width:440px){
  .profile-card__actions{
    grid-template-columns:minmax(0,1fr) 38px !important;
  }
}


/* =========================================================
   FINAL FIX - PROFILE CARD PLACEHOLDER SAME AS SLIDER BUTTON
   Yellow button arrow + side round button image placeholder
   ========================================================= */
.profile-card__actions{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 40px !important;
  align-items:center !important;
  gap:10px !important;
  margin-top:14px !important;
}

.profile-card__actions a{
  position:relative !important;
  min-width:0 !important;
  min-height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  padding:9px 40px 9px 16px !important;
  border:0 !important;
  border-radius:999px !important;
  background:var(--gold,#ffc400) !important;
  color:var(--green,#123f1c) !important;
  font-size:0.78rem !important;
  font-weight:950 !important;
  line-height:1 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  overflow:hidden !important;
}

.profile-card__actions a svg,
.profile-card__actions a > span:not(.profile-action-arrow-wrap){
  display:none !important;
}

.profile-action-arrow-wrap{
  position:absolute !important;
  right:7px !important;
  top:50% !important;
  width:24px !important;
  height:24px !important;
  min-width:24px !important;
  max-width:24px !important;
  transform:translateY(-50%) !important;
  display:grid !important;
  place-items:center !important;
  border-radius:6px !important;
  background:#f8e39e !important;
  border:2px solid rgba(255,255,255,.72) !important;
  overflow:hidden !important;
  line-height:0 !important;
}

.profile-action-arrow-img{
  width:16px !important;
  height:16px !important;
  min-width:16px !important;
  max-width:16px !important;
  max-height:16px !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
  margin:0 !important;
  padding:0 !important;
}

.profile-card__actions button.profile-heart-btn{
  width:40px !important;
  height:40px !important;
  min-width:40px !important;
  max-width:40px !important;
  min-height:40px !important;
  max-height:40px !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:999px !important;
  background:#f8e39e !important;
  display:grid !important;
  place-items:center !important;
  overflow:hidden !important;
  cursor:pointer !important;
  line-height:0 !important;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.72) !important;
}

.profile-card__actions button.profile-heart-btn svg,
.profile-card__actions button.profile-heart-btn span{
  display:none !important;
}

.profile-heart-img{
  width:18px !important;
  height:18px !important;
  min-width:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
  margin:0 !important;
  padding:0 !important;
}

.circle-arrow img,
.story-nav img,
.gallery-controls .circle-arrow img{
  width:18px !important;
  height:18px !important;
  min-width:18px !important;
  max-width:18px !important;
  object-fit:contain !important;
  display:block !important;
}

@media (max-width:440px){
  .profile-card__actions{
    grid-template-columns:minmax(0,1fr) 40px !important;
  }
}

/* Second Photo Style Icon Placeholder Final Replacement */
.icon-img {
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  flex: 0 0 auto !important;
  pointer-events: none !important;
}

.primary-action .icon-img,
.ghost-action .icon-img,
.search-submit .icon-img,
.pay-button .icon-img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
}

.trust-icon .icon-img,
.search-icon .icon-img,
.feature-row article > span .icon-img,
.stat-icon .icon-img,
.secure-row span .icon-img,
.plan-icon .icon-img,
.billing-card h3 span .icon-img {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
}

.match-search label > span:first-child .icon-img,
.secure-note .icon-img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
}

.about-arrow-placeholder {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  max-width: 17px !important;
}

.profile-card__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 38px !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 14px !important;
}

.profile-card__actions a {
  min-width: 0 !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 8px 10px 8px 18px !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
  color: var(--green, #123f1c) !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.profile-action-text {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.profile-action-arrow-wrap {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
}

.profile-arrow-img {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
}

.profile-card__actions button.profile-heart-btn {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  min-height: 38px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  color: var(--green, #123f1c) !important;
  box-shadow: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
}

.profile-heart-img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
}

.profile-card__actions a svg,
.profile-card__actions button svg,
.profile-card__actions a > span:not(.profile-action-text):not(.profile-action-arrow-wrap) {
  display: none !important;
}

.carousel-controls .arrow-group {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}

.circle-arrow,
.story-nav,
.gallery-controls .circle-arrow {
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  color: var(--green, #123f1c) !important;
  box-shadow: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
}

.circle-arrow {
  width: 40px !important;
  height: 40px !important;
}

.story-nav {
  width: 42px !important;
  height: 42px !important;
}

.circle-arrow img,
.story-nav img,
.gallery-controls .circle-arrow img,
.story-heart-img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
}

.gallery-controls {
  min-height: 54px !important;
  margin-top: 22px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 14px !important;
}

.gallery-controls .dots {
  grid-column: 2 !important;
  justify-self: center !important;
}

.gallery-controls .circle-arrow {
  grid-column: 3 !important;
  width: 48px !important;
  height: 48px !important;
}

.gallery-controls #galleryPrev {
  justify-self: end !important;
  margin-right: 58px !important;
}

.gallery-controls #galleryNext {
  justify-self: end !important;
}

@media (max-width: 680px) {
  .profile-card__actions {
    grid-template-columns: minmax(0, 1fr) 38px !important;
  }

  .gallery-controls {
    grid-template-columns: auto auto !important;
    justify-content: center !important;
    gap: 12px 16px !important;
  }

  .gallery-controls .dots {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }

  .gallery-controls #galleryPrev,
  .gallery-controls #galleryNext {
    grid-row: 2 !important;
    justify-self: center !important;
    margin: 0 !important;
  }

  .gallery-controls #galleryPrev {
    grid-column: 1 !important;
  }

  .gallery-controls #galleryNext {
    grid-column: 2 !important;
  }
}

/* Final profile generated icon visibility patch */
.profile-action-text {
  display: inline-block !important;
}

.profile-action-arrow-wrap {
  display: inline-grid !important;
}

.profile-card__actions button.profile-heart-btn .profile-heart-img,
.profile-card__actions .profile-heart-btn .profile-heart-img,
.profile-card__actions .profile-arrow-img {
  display: block !important;
}

.plan-dynamic-img {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
}
/* =========================================================
   FINAL PROFILE CARD REPLACEMENT - IMAGE + ARROW + HEART
   Paste is already integrated in this replacement file.
   Required real image/icon paths:
   assets/profile-karthikeyan.png
   assets/icons/profile-arrow-placeholder.png
   assets/icons/profile-heart-placeholder.png
   ========================================================= */
.profile-card {
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.profile-card:hover {
  box-shadow: none !important;
}

.profile-card__image {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1.36 / 1 !important;
  overflow: hidden !important;
  background: #f6e7b7 !important;
}

.profile-card__photo,
.profile-card__image img.profile-card__photo {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}

.profile-card:hover .profile-card__photo {
  transform: scale(1.04) !important;
}

.profile-card__body {
  padding: 14px 18px 18px !important;
}

.profile-card h3 {
  margin: 0 0 11px !important;
  color: var(--green, #123f1c) !important;
  font-size: 1.02rem !important;
  font-weight: 950 !important;
  font-style: italic !important;
  line-height: 1.2 !important;
}

.profile-meta {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.profile-meta span,
.profile-card p {
  color: #102616 !important;
  font-size: 0.77rem !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
}

.profile-card p {
  margin: 6px 0 !important;
}

.profile-card__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

.profile-view-btn,
.profile-card__actions a.profile-view-btn {
  position: relative !important;
  min-width: 0 !important;
  min-height: 34px !important;
  display: inline-grid !important;
  grid-template-columns: minmax(0, auto) 28px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 5px 8px 5px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
  color: var(--green, #123f1c) !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.profile-action-text,
.profile-card__actions a > span.profile-action-text {
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.profile-action-arrow-wrap,
.profile-card__actions a > span.profile-action-arrow-wrap {
  position: static !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
  line-height: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: hidden !important;
}

.profile-arrow-img,
.profile-card__actions .profile-arrow-img {
  width: 19px !important;
  height: 19px !important;
  min-width: 19px !important;
  max-width: 19px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  border: 0 !important;
  transform: none !important;
}

.profile-heart-btn,
.profile-card__actions button.profile-heart-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  color: var(--green, #123f1c) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72) !important;
  cursor: pointer !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.profile-heart-img,
.profile-card__actions button.profile-heart-btn > .profile-heart-img {
  width: 19px !important;
  height: 19px !important;
  min-width: 19px !important;
  max-width: 19px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  border: 0 !important;
  transform: none !important;
}

.profile-card__actions svg,
.profile-card__actions button svg,
.profile-card__actions button span,
.profile-card__actions a > span:not(.profile-action-text):not(.profile-action-arrow-wrap) {
  display: none !important;
}

@media (max-width: 440px) {
  .profile-card__actions {
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }
}
/* =========================================================
   FINAL PROFILE ACTION PNG PLACEHOLDER FIX
   Full Tamil text + arrow PNG + heart PNG

   Required PNG files:
   assets/icons/profile-arrow-placeholder.png
   assets/icons/profile-heart-placeholder.png
   ========================================================= */
.profile-card__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 16px !important;
  overflow: visible !important;
}

.profile-card__actions a.profile-view-btn,
.profile-card__actions .profile-view-btn,
.profile-view-btn {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 34px !important;
  display: grid !important;
  grid-template-columns: max-content 24px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 6px 10px 6px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
  color: var(--green, #123f1c) !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.profile-card__actions a.profile-view-btn > span.profile-action-text,
.profile-card__actions .profile-action-text,
.profile-action-text {
  display: block !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--green, #123f1c) !important;
}

.profile-card__actions a.profile-view-btn > span.profile-action-arrow-wrap,
.profile-card__actions .profile-action-arrow-wrap,
.profile-action-arrow-wrap {
  position: static !important;
  inset: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  overflow: hidden !important;
  line-height: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.profile-card__actions .profile-arrow-img,
.profile-card__actions a.profile-view-btn .profile-arrow-img,
.profile-arrow-img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.profile-card__actions button.profile-heart-btn,
.profile-card__actions .profile-heart-btn,
.profile-heart-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  color: var(--green, #123f1c) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72) !important;
  cursor: pointer !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.profile-card__actions button.profile-heart-btn > img.profile-heart-img,
.profile-card__actions .profile-heart-img,
.profile-heart-img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.profile-card__actions a.profile-view-btn svg,
.profile-card__actions button.profile-heart-btn svg,
.profile-card__actions button.profile-heart-btn span,
.profile-card__actions a.profile-view-btn > span:not(.profile-action-text):not(.profile-action-arrow-wrap) {
  display: none !important;
}

@media (max-width: 440px) {
  .profile-card__actions {
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }

  .profile-card__actions a.profile-view-btn,
  .profile-view-btn {
    grid-template-columns: max-content 22px !important;
    gap: 8px !important;
    padding-inline: 14px 8px !important;
    font-size: 0.78rem !important;
  }
}

/* About title letter cut / image overlap fix */
.home-page .about-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1fr);
  gap: clamp(28px, 3vw, 52px);
}

.home-page .about-copy {
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.home-page .about-copy h2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(2rem, 2.35vw, 2.82rem);
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.home-page .about-copy h2 .about-title-line {
  display: block;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.home-page .about-copy h2 .about-accent {
  display: inline;
  white-space: nowrap;
}

.home-page .about-photo {
  min-width: 0;
}

@media (min-width: 1181px) and (max-width: 1460px) {
  .home-page .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
    gap: 30px;
  }

  .home-page .about-copy {
    max-width: 650px;
  }

  .home-page .about-copy h2 {
    font-size: clamp(1.88rem, 2.18vw, 2.55rem);
  }
}

@media (max-width: 1180px) {
  .home-page .about-grid {
    grid-template-columns: 1fr;
  }

  .home-page .about-copy {
    max-width: 820px;
  }

  .home-page .about-copy h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
}

@media (max-width: 680px) {
  .home-page .about-copy h2 {
    font-size: 2rem;
  }
}

@media (max-width: 440px) {
  .home-page .about-copy h2 {
    font-size: 1.72rem;
  }
}

/* Gallery slider buttons - keep both arrows together like profile slider */
.home-page .gallery-shell {
  position: relative;
}

.home-page .gallery-controls {
  min-height: 56px !important;
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(120px, 1fr) !important;
  grid-template-rows: 56px !important;
  align-items: center !important;
  gap: 12px !important;
}

.home-page .gallery-controls .dots {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  align-self: center !important;
}

.home-page .gallery-controls #galleryPrev,
.home-page .gallery-controls #galleryNext {
  grid-column: 3 !important;
  grid-row: 1 !important;
  align-self: center !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72) !important;
}

.home-page .gallery-controls #galleryPrev {
  justify-self: end !important;
  transform: translateX(-58px) !important;
}

.home-page .gallery-controls #galleryNext {
  justify-self: end !important;
  transform: translateX(0) !important;
}

.home-page .gallery-controls .circle-arrow img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 680px) {
  .home-page .gallery-controls {
    grid-template-columns: auto auto !important;
    grid-template-rows: auto 52px !important;
    justify-content: center !important;
    gap: 14px 14px !important;
  }

  .home-page .gallery-controls .dots {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }

  .home-page .gallery-controls #galleryPrev,
  .home-page .gallery-controls #galleryNext {
    grid-row: 2 !important;
    justify-self: center !important;
    transform: none !important;
  }

  .home-page .gallery-controls #galleryPrev {
    grid-column: 1 !important;
  }

  .home-page .gallery-controls #galleryNext {
    grid-column: 2 !important;
  }
}
/* Paste at the very bottom of home.css */

.profile-card {
  overflow: hidden !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.profile-card__image {
  width: 100% !important;
  aspect-ratio: 1.36 / 1 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #f6e7b7 !important;
}

.profile-card__photo,
.profile-card__image img.profile-card__photo {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.profile-card__body {
  padding: 14px 18px 18px !important;
}

.profile-card h3 {
  margin: 0 0 11px !important;
  color: var(--green, #123f1c) !important;
  font-size: 1.02rem !important;
  font-weight: 950 !important;
  font-style: italic !important;
  line-height: 1.2 !important;
}

.profile-meta {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.profile-meta span,
.profile-card p {
  color: #102616 !important;
  font-size: 0.77rem !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
}

.profile-card p {
  margin: 6px 0 !important;
}

.profile-card__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 16px !important;
  overflow: visible !important;
}

.profile-view-btn,
.profile-card__actions a.profile-view-btn {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 34px !important;
  display: grid !important;
  grid-template-columns: max-content 24px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 6px 10px 6px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
  color: var(--green, #123f1c) !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.profile-action-text,
.profile-card__actions a.profile-view-btn > .profile-action-text {
  display: block !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--green, #123f1c) !important;
}

.profile-action-arrow-wrap,
.profile-card__actions a.profile-view-btn > .profile-action-arrow-wrap {
  position: static !important;
  inset: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  overflow: hidden !important;
  line-height: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.profile-arrow-img,
.profile-card__actions .profile-arrow-img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.profile-heart-btn,
.profile-card__actions button.profile-heart-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
  color: var(--green, #123f1c) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72) !important;
  cursor: pointer !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.profile-heart-img,
.profile-card__actions button.profile-heart-btn > .profile-heart-img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.profile-card__actions a.profile-view-btn svg,
.profile-card__actions button.profile-heart-btn svg,
.profile-card__actions button.profile-heart-btn span,
.profile-card__actions a.profile-view-btn > span:not(.profile-action-text):not(.profile-action-arrow-wrap) {
  display: none !important;
}

@media (max-width: 440px) {
  .profile-card__actions {
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }

  .profile-view-btn,
  .profile-card__actions a.profile-view-btn {
    grid-template-columns: max-content 22px !important;
    gap: 8px !important;
    padding-inline: 14px 8px !important;
    font-size: 0.78rem !important;
  }
}


/* Home Events + Blog Preview Sections */
.home-events-preview,
.home-blog-preview {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-2, #fff8e8), var(--cream, #fff3d6));
}

.home-blog-preview {
  background: linear-gradient(180deg, var(--cream, #fff3d6), #fff9ea);
}

.home-index-heading {
  width: min(100% - 44px, 1487px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.home-index-heading h2 {
  max-width: 840px;
  margin: 0;
  color: var(--green, #123f1c);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
}

.home-index-heading h2 span {
  color: var(--gold, #ffc400);
}

.home-index-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(18, 63, 28, 0.82);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.7;
}

.home-index-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--green, #123f1c);
  color: #fff8e8;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 34px rgba(18, 63, 28, 0.16);
}

.home-index-link .icon-img {
  width: 18px !important;
  height: 18px !important;
}

.home-index-events-shell,
.home-index-blog-shell {
  width: min(100% - 44px, 1487px);
  margin-inline: auto;
}

.home-index-events-shell {
  padding: 26px;
  border: 1px solid rgba(18, 63, 28, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 22px 58px rgba(18, 63, 28, 0.1);
}

.home-index-filterbar,
.home-index-blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.home-index-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(18, 63, 28, 0.16);
  border-radius: 18px;
  background: #fffaf0;
}

.home-index-tabs button {
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid rgba(18, 63, 28, 0.12);
  background: transparent;
  color: var(--green, #123f1c);
  font-size: 0.96rem;
  font-weight: 950;
  cursor: pointer;
}

.home-index-tabs button:last-child {
  border-right: 0;
}

.home-index-tabs button.is-active {
  background: var(--green, #123f1c);
  color: #fff8e8;
  box-shadow: inset 0 -4px 0 var(--gold, #ffc400);
}

.home-index-select,
.home-index-search {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(18, 63, 28, 0.14);
  border-radius: 16px;
  background: #fffaf0;
  color: var(--green, #123f1c);
  font-weight: 950;
}

.home-index-select .icon-img,
.home-index-search .icon-img {
  width: 20px !important;
  height: 20px !important;
}

.home-index-select select,
.home-index-search input {
  min-width: 170px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--green, #123f1c);
  font: inherit;
}

.home-index-search {
  flex: 1;
  max-width: 520px;
}

.home-index-search input {
  width: 100%;
  min-width: 0;
}

.home-index-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-index-event-card,
.home-index-blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 28, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(18, 63, 28, 0.09);
}

.home-index-event-card {
  display: grid;
  grid-template-rows: 216px 1fr;
}

.home-index-event-card > img,
.home-index-blog-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms ease;
}

.home-index-event-card:hover > img,
.home-index-blog-card:hover > a img {
  transform: scale(1.06);
}

.home-index-event-card > div:last-child {
  padding: 22px;
}

.home-index-event-date {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 66px;
  height: 72px;
  display: grid;
  place-items: center;
  gap: 0;
  border-radius: 18px;
  background: rgba(255, 196, 0, 0.94);
  color: var(--green, #123f1c);
  box-shadow: 0 12px 24px rgba(18, 63, 28, 0.18);
}

.home-index-event-date strong {
  display: block;
  font-size: 1.44rem;
  line-height: 1;
  font-weight: 950;
}

.home-index-event-date span {
  display: block;
  margin-top: -8px;
  font-size: 0.76rem;
  font-weight: 950;
}

.home-index-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff0b4;
  color: #9b6900;
  font-size: 0.8rem;
  font-weight: 950;
}

.home-index-event-card h3,
.home-index-blog-card h3 {
  margin: 14px 0 10px;
  color: var(--green, #123f1c);
  font-size: 1.2rem;
  line-height: 1.38;
  font-weight: 950;
}

.home-index-event-card p,
.home-index-blog-card p {
  margin: 0;
  color: rgba(18, 63, 28, 0.78);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.65;
}

.home-index-event-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(18, 63, 28, 0.88);
  font-size: 0.88rem;
  font-weight: 900;
}

.home-index-event-card[hidden],
.home-index-blog-card[hidden],
.home-index-empty[hidden] {
  display: none !important;
}

.home-index-empty {
  margin: 22px 0 0;
  padding: 18px;
  border-radius: 16px;
  background: #fff0b4;
  color: var(--green, #123f1c);
  font-weight: 950;
  text-align: center;
}

.home-index-blog-toolbar {
  padding: 20px;
  border-radius: 22px;
  background: var(--green, #123f1c);
  box-shadow: 0 22px 58px rgba(18, 63, 28, 0.14);
}

.home-index-blog-toolbar .home-index-select,
.home-index-blog-toolbar .home-index-search {
  background: rgba(255, 255, 255, 0.98);
}

.home-index-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-index-blog-card {
  display: grid;
  grid-template-rows: 230px 1fr;
}

.home-index-blog-card > a {
  display: block;
  overflow: hidden;
}

.home-index-blog-card > div {
  padding: 22px;
}

.home-index-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-index-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: rgba(18, 63, 28, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
}

.home-index-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px) auto;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: #fffaf0;
  border: 1px solid rgba(18, 63, 28, 0.12);
}

.home-index-newsletter strong,
.home-index-newsletter span {
  display: block;
}

.home-index-newsletter strong {
  color: var(--green, #123f1c);
  font-size: 1.08rem;
  font-weight: 950;
}

.home-index-newsletter span {
  margin-top: 4px;
  color: rgba(18, 63, 28, 0.74);
  font-size: 0.9rem;
  font-weight: 780;
}

.home-index-newsletter label {
  display: block;
}

.home-index-newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(18, 63, 28, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--green, #123f1c);
  font-weight: 850;
  outline: none;
}

.home-index-newsletter button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gold, #ffc400);
  color: var(--green, #123f1c);
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

.home-index-newsletter button .icon-img {
  width: 18px !important;
  height: 18px !important;
}

.home-index-newsletter p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green, #123f1c);
  font-weight: 950;
}

@media (max-width: 1180px) {
  .home-index-event-grid,
  .home-index-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-index-newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-index-heading,
  .home-index-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-index-filterbar,
  .home-index-blog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .home-index-tabs {
    grid-template-columns: 1fr;
  }

  .home-index-tabs button {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 63, 28, 0.12);
  }

  .home-index-tabs button:last-child {
    border-bottom: 0;
  }

  .home-index-select,
  .home-index-search {
    width: 100%;
    max-width: none;
  }

  .home-index-event-grid,
  .home-index-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-index-events-shell,
  .home-index-blog-shell,
  .home-index-heading {
    width: min(100% - 28px, 1487px);
  }

  .home-index-events-shell {
    padding: 18px;
    border-radius: 20px;
  }
}



/* Latest Events + Blog polish requested updates */
.home-page .home-events-preview .home-index-heading--split,
.home-page .home-blog-preview .home-index-heading--split {
  align-items: center;
}

.home-page .home-events-preview .home-index-heading--split > div,
.home-page .home-blog-preview .home-index-heading--split > div {
  min-width: 0;
  max-width: 900px;
}

.home-page .home-events-preview .home-index-heading h2,
.home-page .home-blog-preview .home-index-heading h2 {
  max-width: 920px;
}

.home-page .home-index-events-shell {
  padding: 30px 32px 34px;
  border-radius: 30px;
}

.home-page .home-index-event-grid {
  gap: 24px;
}

.home-page .home-index-event-card {
  grid-template-rows: 320px 1fr;
  border-radius: 22px;
}

.home-page .home-index-event-card > img {
  object-fit: cover;
  object-position: center 28%;
}

.home-page .home-index-event-card > div:last-child {
  padding: 26px 28px 30px;
}

.home-page .home-index-blog-toolbar {
  width: fit-content;
  max-width: 100%;
  justify-content: flex-start;
  padding: 16px 18px;
  margin-bottom: 28px;
}

.home-page .home-index-blog-toolbar .home-index-search {
  display: none !important;
}

.home-page .home-index-blog-grid {
  gap: 26px;
}

.home-page .home-index-blog-card {
  grid-template-rows: 286px 1fr;
  border-radius: 22px;
}

.home-page .home-index-blog-card > a {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff7df;
}

.home-page .home-index-blog-card > a img {
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.home-page .home-index-blog-card:hover > a img {
  transform: none !important;
}

.home-index-register-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 26px 28px;
  border: 1px solid rgba(18, 63, 28, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 196, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #fff4d8 100%);
  box-shadow: 0 20px 50px rgba(18, 63, 28, 0.1);
}

.home-index-register-cta > div {
  min-width: 0;
}

.home-index-cta-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 9px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.22);
  color: #9b6900;
  font-size: 0.78rem;
  font-weight: 950;
}

.home-index-register-cta strong {
  display: block;
  color: var(--green, #123f1c);
  font-size: clamp(1.22rem, 2vw, 1.78rem);
  line-height: 1.38;
  font-weight: 950;
}

.home-index-register-cta p {
  max-width: 820px;
  margin: 8px 0 0;
  color: rgba(18, 63, 28, 0.76);
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.7;
}

.home-index-register-cta > a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--gold, #ffc400);
  color: var(--green, #123f1c);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(255, 196, 0, 0.24);
}

.home-index-register-cta > a .icon-img {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 1180px) {
  .home-page .home-index-event-card {
    grid-template-rows: 280px 1fr;
  }

  .home-page .home-index-blog-card {
    grid-template-rows: 260px 1fr;
  }

  .home-index-register-cta {
    grid-template-columns: 1fr;
  }

  .home-index-register-cta > a {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .home-page .home-index-events-shell {
    padding: 20px;
  }

  .home-page .home-index-event-card {
    grid-template-rows: 250px 1fr;
  }

  .home-page .home-index-blog-card {
    grid-template-rows: 240px 1fr;
  }

  .home-page .home-index-blog-toolbar {
    width: 100%;
  }

  .home-page .home-index-blog-toolbar .home-index-select {
    width: 100%;
  }

  .home-index-register-cta {
    padding: 22px;
  }

  .home-index-register-cta > a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* Quote image placeholder fix - use your Figma PNG here:
   PHP/JS src path: assets/img/double-quotes.png
   CSS relative path: ../img/double-quotes.png */
.home-page .quote-bubble strong {
  display: none !important;
}

.home-page .quote-bubble .quote-image-placeholder {
  position: relative !important;
  width: 58px !important;
  height: 44px !important;
  min-width: 58px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 auto 4px !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.home-page .quote-bubble .quote-image-placeholder::before,
.home-page .quote-bubble .quote-image-placeholder::after {
  content: none !important;
  display: none !important;
}

.home-page .quote-bubble .quote-placeholder-img {
  width: 54px !important;
  height: 38px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.home-page .quote-bubble .quote-heart-line {
  width: 76px !important;
  height: 19px !important;
  position: relative !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.home-page .quote-bubble .quote-heart-line::before,
.home-page .quote-bubble .quote-heart-line::after {
  content: "" !important;
  position: absolute !important;
  top: 8px !important;
  width: 30px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
}

.home-page .quote-bubble .quote-heart-line::before {
  left: 0 !important;
}

.home-page .quote-bubble .quote-heart-line::after {
  right: 0 !important;
}

.home-page .quote-bubble .quote-heart-line i {
  position: absolute !important;
  left: 50% !important;
  top: 4px !important;
  width: 15px !important;
  height: 15px !important;
  background: var(--gold, #ffc400) !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

.home-page .quote-bubble .quote-heart-line i::before,
.home-page .quote-bubble .quote-heart-line i::after {
  content: "" !important;
  position: absolute !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
}

.home-page .quote-bubble .quote-heart-line i::before {
  top: -7px !important;
  left: 0 !important;
}

.home-page .quote-bubble .quote-heart-line i::after {
  top: 0 !important;
  left: 7px !important;
}

.home-page .story-card blockquote::before {
  content: none !important;
  display: none !important;
}

.home-page .story-quote-image-placeholder {
  width: 62px !important;
  height: 44px !important;
  display: block !important;
  margin: 0 0 10px !important;
  line-height: 0 !important;
}

.home-page .story-quote-placeholder-img,
.home-page .story-card.is-active .story-quote-placeholder-img {
  width: 58px !important;
  height: 40px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.home-page .story-card:not(.is-active) .story-quote-image-placeholder {
  display: none !important;
}

/* About quote icon as direct HTML image placeholder */
.home-page .quote-bubble > img.quote-placeholder-img {
  width: 54px !important;
  height: 38px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto 4px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  line-height: 0 !important;
}

.home-page .quote-bubble > img.quote-placeholder-img + p {
  margin-top: 0 !important;
}

/* =========================================================
   FINAL ABOUT QUOTE ROUND FIX
   Quote icon path in HTML: assets/img/double-quotes.png
   Paste-safe override: keeps bubble round and stops icon stretching.
   ========================================================= */
.home-page .about-photo {
  position: relative !important;
  min-height: 500px !important;
  padding: 0 78px 98px 0 !important;
}

.home-page .about-photo > .about-main-img,
.home-page .about-photo > img:not(.quote-placeholder-img) {
  display: block !important;
  width: 100% !important;
  min-height: 450px !important;
  max-height: 540px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 24px !important;
  box-shadow: 0 22px 36px rgba(23, 52, 23, 0.16) !important;
}

.home-page .quote-bubble {
  position: absolute !important;
  right: 0 !important;
  bottom: 36px !important;
  width: 238px !important;
  height: 238px !important;
  min-width: 238px !important;
  min-height: 238px !important;
  max-width: 238px !important;
  max-height: 238px !important;
  aspect-ratio: 1 / 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 26px 24px 22px !important;
  border: 3px solid var(--gold, #ffc400) !important;
  border-radius: 50% !important;
  background: rgba(255, 248, 232, 0.96) !important;
  color: var(--green, #123f1c) !important;
  text-align: center !important;
  box-shadow: 0 18px 34px rgba(23, 52, 23, 0.16) !important;
  overflow: hidden !important;
  animation: none !important;
  transform: none !important;
}

.home-page .quote-bubble strong {
  display: none !important;
}

.home-page .quote-image-placeholder {
  width: 56px !important;
  height: 38px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  margin: 0 auto 2px !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.home-page .quote-image-placeholder::before,
.home-page .quote-image-placeholder::after {
  content: none !important;
  display: none !important;
}

.home-page .quote-bubble .quote-placeholder-img {
  display: block !important;
  width: 52px !important;
  height: 34px !important;
  min-width: 52px !important;
  min-height: 0 !important;
  max-width: 52px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.home-page .quote-bubble p {
  width: 100% !important;
  max-width: 176px !important;
  margin: 0 auto !important;
  color: var(--green, #123f1c) !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.home-page .quote-heart-line {
  position: relative !important;
  width: 76px !important;
  height: 19px !important;
  display: block !important;
  flex: 0 0 auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.home-page .quote-heart-line::before,
.home-page .quote-heart-line::after {
  content: "" !important;
  position: absolute !important;
  top: 8px !important;
  width: 30px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
}

.home-page .quote-heart-line::before {
  left: 0 !important;
}

.home-page .quote-heart-line::after {
  right: 0 !important;
}

.home-page .quote-heart-line i {
  position: absolute !important;
  left: 50% !important;
  top: 4px !important;
  width: 15px !important;
  height: 15px !important;
  background: var(--gold, #ffc400) !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

.home-page .quote-heart-line i::before,
.home-page .quote-heart-line i::after {
  content: "" !important;
  position: absolute !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 999px !important;
  background: var(--gold, #ffc400) !important;
}

.home-page .quote-heart-line i::before {
  top: -7px !important;
  left: 0 !important;
}

.home-page .quote-heart-line i::after {
  top: 0 !important;
  left: 7px !important;
}

@media (max-width: 700px) {
  .home-page .about-photo {
    min-height: auto !important;
    padding: 0 0 132px !important;
  }

  .home-page .about-photo > .about-main-img,
  .home-page .about-photo > img:not(.quote-placeholder-img) {
    min-height: 320px !important;
  }

  .home-page .quote-bubble {
    left: 50% !important;
    right: auto !important;
    bottom: 0 !important;
    width: 196px !important;
    height: 196px !important;
    min-width: 196px !important;
    min-height: 196px !important;
    max-width: 196px !important;
    max-height: 196px !important;
    padding: 22px 18px 18px !important;
    transform: translateX(-50%) !important;
  }

  .home-page .quote-bubble p {
    max-width: 148px !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }
}

/* Index pricing payment details replacement */
.home-page .pricing-section {
  scroll-margin-top: 150px;
}

.home-page .pricing-section .pricing-grid.container {
  grid-template-columns: 1fr !important;
  gap: 34px !important;
  max-width: 1487px;
}

.home-page .pricing-copy {
  width: 100%;
}

.home-page .plan-card {
  cursor: pointer;
}

.home-page .plan-card:focus {
  outline: 3px solid rgba(255, 196, 0, 0.28);
  outline-offset: 5px;
}

.home-page .plan-start-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--green, #123f1c);
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.9);
  color: var(--green, #123f1c);
  font-size: 0.95rem;
  font-weight: 950;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-page .plan-card.active .plan-start-button,
.home-page .plan-start-button:hover {
  border-color: var(--gold, #ffc400);
  background: var(--gold, #ffc400);
  box-shadow: 0 13px 26px rgba(255, 196, 0, 0.22);
}

.home-page .home-payment-details {
  width: min(100%, 1320px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.72fr);
  gap: 26px;
  align-items: stretch;
  scroll-margin-top: 190px;
}

.home-page .home-bank-card,
.home-page .home-summary-card {
  border: 1px solid rgba(234, 223, 202, 0.95);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 22px 55px rgba(0, 63, 34, 0.08);
}

.home-page .home-bank-card {
  min-height: 520px;
  padding: 30px 34px;
}

.home-page .home-bank-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.home-page .home-bank-head > span,
.home-page .home-summary-card h3 > span {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #f8e39e !important;
}

.home-page .home-bank-head img,
.home-page .home-summary-card h3 span img {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  object-fit: contain !important;
}

.home-page .home-bank-head p {
  margin: 0 0 4px;
  color: rgba(16, 38, 22, 0.68);
  font-size: 0.9rem;
  font-weight: 900;
}

.home-page .home-bank-head h3 {
  margin: 0;
  color: var(--green, #123f1c);
  font-size: clamp(1.28rem, 1.6vw, 1.7rem);
  line-height: 1.35;
  font-weight: 950;
}

.home-page .home-bank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.home-page .home-bank-list div {
  min-height: 82px;
  padding: 15px 16px;
  border: 1px solid rgba(234, 223, 202, 0.95);
  border-radius: 12px;
  background: #fffaf0;
}

.home-page .home-bank-list dt {
  margin: 0 0 8px;
  color: rgba(16, 38, 22, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
}

.home-page .home-bank-list dd {
  margin: 0;
  color: #06170a;
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.45;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.home-page .home-bank-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 196, 0, 0.14);
  color: var(--green, #123f1c);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 900;
}

.home-page .home-summary-card {
  max-width: none !important;
  margin: 0 !important;
  padding: 28px 30px !important;
  border-width: 1px !important;
}

.home-page .home-summary-card h3 {
  margin-bottom: 34px !important;
}

.home-page .home-summary-card .pay-button {
  min-height: 60px;
}

.home-page .home-summary-card .payment-logos {
  justify-content: flex-start !important;
}

.home-page .home-summary-card .payment-logo {
  width: 76px !important;
  height: 40px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  padding: 8px !important;
}

@media (max-width: 1120px) {
  .home-page .home-payment-details {
    grid-template-columns: 1fr;
  }

  .home-page .home-summary-card {
    width: min(100%, 560px);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .home-page .home-payment-details {
    width: 100%;
  }

  .home-page .home-bank-card,
  .home-page .home-summary-card {
    padding: 24px !important;
  }

  .home-page .home-bank-head {
    grid-template-columns: 1fr;
  }

  .home-page .home-bank-list {
    grid-template-columns: 1fr;
  }
}

/* Final index pricing card-only replacement */
.home-page .pricing-section .pricing-grid.container {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px) !important;
  align-items: start !important;
  gap: clamp(32px, 4vw, 72px) !important;
}

.home-page .pricing-side {
  position: sticky !important;
  top: 145px !important;
  display: grid !important;
  gap: 12px !important;
  justify-items: center !important;
}

.home-page .pricing-side .pricing-top-image,
.home-page .pricing-side .home-pricing-image {
  display: block !important;
  width: min(100%, 390px) !important;
  max-width: 390px !important;
  max-height: 300px !important;
  margin: 0 auto 4px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  opacity: 1 !important;
  filter: drop-shadow(0 14px 24px rgba(18, 63, 28, 0.12)) !important;
  animation: homePricingFloat 4.6s ease-in-out infinite !important;
}

.home-page .home-bank-card,
.home-page .home-payment-details {
  display: none !important;
}

.home-page .home-summary-card {
  width: 100% !important;
  max-width: 430px !important;
  margin: 0 !important;
  padding: 28px !important;
  border: 2px solid var(--gold, #ffc400) !important;
  border-radius: 18px !important;
  background: rgba(255, 248, 232, 0.92) !important;
  box-shadow: 0 18px 38px rgba(18, 63, 28, 0.12) !important;
}

.home-page .home-summary-card h3 > span {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
}

.home-page .home-summary-card h3 span img {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
}

.home-page .home-summary-card .pay-button {
  text-decoration: none !important;
}

.home-page .plan-start-button {
  display: none !important;
}

@media (max-width: 1120px) {
  .home-page .pricing-section .pricing-grid.container {
    grid-template-columns: 1fr !important;
  }

  .home-page .pricing-side {
    position: static !important;
    top: auto !important;
  }

  .home-page .pricing-side .pricing-top-image,
  .home-page .pricing-side .home-pricing-image {
    width: min(100%, 320px) !important;
    max-height: 150px !important;
  }

  .home-page .home-summary-card {
    margin-inline: auto !important;
  }
}

@media (max-width: 640px) {
  .home-page .pricing-side .pricing-top-image,
  .home-page .pricing-side .home-pricing-image {
    width: min(100%, 250px) !important;
    max-height: 130px !important;
  }
}

@keyframes homePricingFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =========================================================
   FINAL UPDATE: Hero flower spread + Gallery button zoom
   Paste/replacement safe: overrides older rules above.
   ========================================================= */
.home-page .hero-section {
  overflow: hidden;
  isolation: isolate;
}

.home-page .hero-grid {
  isolation: isolate;
}

.home-page .hero-copy {
  z-index: 8;
}

.home-page .hero-visual {
  isolation: isolate;
  overflow: visible;
}

.home-page .hero-flower {
  z-index: 0 !important;
  right: -96px !important;
  bottom: -10px !important;
  width: min(118%, 820px) !important;
  height: min(118%, 540px) !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  opacity: 0.9 !important;
  pointer-events: none !important;
  filter: saturate(1.06) brightness(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.28) 14%, #000 38%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.28) 14%, #000 38%, #000 100%);
}

.home-page .hero-couple {
  z-index: 2 !important;
}

.home-page .trust-pill {
  z-index: 5 !important;
}

@media (min-width: 1181px) {
  .home-page .hero-visual {
    min-height: 460px;
  }

  .home-page .hero-couple {
    width: min(100%, 548px);
  }
}

@media (max-width: 1120px) {
  .home-page .hero-flower {
    right: 50% !important;
    transform: translateX(50%) !important;
    width: min(112%, 760px) !important;
    height: 500px !important;
    -webkit-mask-image: radial-gradient(circle at 50% 56%, #000 0%, #000 62%, transparent 92%);
    mask-image: radial-gradient(circle at 50% 56%, #000 0%, #000 62%, transparent 92%);
  }
}

@media (max-width: 680px) {
  .home-page .hero-flower {
    right: 50% !important;
    bottom: 0 !important;
    width: 122% !important;
    height: 390px !important;
    opacity: 0.82 !important;
  }
}

/* Gallery slider click light zoom animation */
.home-page .gallery-board {
  transform-origin: center;
  will-change: transform, opacity;
}

.home-page .gallery-board.is-zooming {
  animation: galleryClickZoom 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .gallery-controls .circle-arrow.is-clicked {
  animation: galleryButtonPop 360ms ease;
}

@keyframes galleryClickZoom {
  0% {
    transform: scale(0.985);
    opacity: 0.92;
  }
  55% {
    transform: scale(1.018);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes galleryButtonPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile-only home polish: compact hero badge + one-card sliders */
@media (max-width: 680px) {
  .home-page .hero-section {
    padding: 42px 0 54px !important;
  }

  .home-page .hero-grid {
    gap: 18px !important;
  }

  .home-page .hero-visual {
    min-height: 520px !important;
    display: grid !important;
    align-items: end !important;
    justify-items: center !important;
    padding-bottom: 126px !important;
    overflow: visible !important;
  }

  .home-page .hero-flower {
    right: 50% !important;
    bottom: 88px !important;
    width: min(118%, 430px) !important;
    height: 390px !important;
    transform: translateX(50%) !important;
    object-fit: cover !important;
    object-position: center bottom !important;
    opacity: 0.78 !important;
  }

  .home-page .hero-couple {
    width: min(96%, 352px) !important;
    max-height: 385px !important;
    margin-inline: auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  .home-page .trust-pill {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 6px !important;
    width: min(calc(100% - 30px), 270px) !important;
    min-height: 126px !important;
    transform: translateX(-50%) !important;
    display: grid !important;
    grid-template-columns: 62px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    align-items: center !important;
    justify-items: start !important;
    gap: 4px 14px !important;
    padding: 16px 18px !important;
    border: 2px solid rgba(255, 196, 0, 0.98) !important;
    border-radius: 999px 28px 999px 28px !important;
    background:
      radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.88), transparent 34%),
      linear-gradient(135deg, rgba(255, 247, 199, 0.98), rgba(255, 207, 33, 0.84)) !important;
    box-shadow: 0 18px 38px rgba(18, 63, 28, 0.18) !important;
    backdrop-filter: blur(10px) !important;
    overflow: visible !important;
    text-align: left !important;
  }

  .home-page .trust-pill::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: inherit;
    pointer-events: none;
  }

  .home-page .trust-icon {
    grid-row: 1 / 4 !important;
    width: 56px !important;
    height: 56px !important;
    margin-left: 8px !important;
    border: 3px solid rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 10px 22px rgba(18, 63, 28, 0.16) !important;
  }

  .home-page .trust-pill strong {
    margin: 0 !important;
    color: var(--green, #053719) !important;
    font-size: 1.06rem !important;
    font-style: normal !important;
    line-height: 1 !important;
  }

  .home-page .trust-pill span:not(.trust-icon):not(.trust-heart-line) {
    color: var(--green, #053719) !important;
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }

  .home-page .trust-heart-line {
    grid-column: 2 !important;
    width: 58px !important;
    height: 14px !important;
    margin-top: 2px !important;
  }

  .home-page .profile-viewport {
    overflow: hidden !important;
    padding-inline: 2px !important;
  }

  .home-page .profile-track {
    align-items: stretch !important;
  }

  .home-page .profile-slide {
    min-width: 100% !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  .home-page .profile-card {
    width: 100% !important;
    max-width: 340px !important;
    margin-inline: auto !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 38px rgba(18, 63, 28, 0.12) !important;
  }

  .home-page .gallery-board {
    display: block !important;
    min-height: auto !important;
  }

  .home-page .gallery-board .gallery-grid,
  .home-page .gallery-board .gallery-tall:not(:first-child) {
    display: none !important;
  }

  .home-page .gallery-board .gallery-tall:first-child {
    display: block !important;
    height: 330px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .home-page .gallery-board .gallery-tall:first-child img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .home-page .story-stage {
    min-height: 430px !important;
    overflow: hidden !important;
  }

  .home-page .story-card.is-active {
    width: min(100%, 340px) !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 22px !important;
    border-radius: 22px !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .home-page .story-card.is-active > img.story-photo {
    width: 100% !important;
    height: 220px !important;
    border-radius: 18px !important;
  }

  .home-page .story-card.is-prev,
  .home-page .story-card.is-next,
  .home-page .story-card.is-far-prev,
  .home-page .story-card.is-far-next {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) scale(0.92) !important;
  }

  .home-page .home-index-event-grid,
  .home-page .home-index-blog-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 0 !important;
    padding: 2px 2px 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .home-page .home-index-event-grid::-webkit-scrollbar,
  .home-page .home-index-blog-grid::-webkit-scrollbar {
    display: none !important;
  }

  .home-page .home-index-event-card,
  .home-page .home-index-blog-card {
    flex: 0 0 100% !important;
    min-width: 0 !important;
    scroll-snap-align: center !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 440px) {
  .home-page .hero-visual {
    min-height: 500px !important;
    padding-bottom: 122px !important;
  }

  .home-page .hero-flower {
    bottom: 84px !important;
    width: 124% !important;
    height: 360px !important;
  }

  .home-page .hero-couple {
    width: min(100%, 330px) !important;
    max-height: 360px !important;
  }

  .home-page .trust-pill {
    width: min(calc(100% - 28px), 258px) !important;
    min-height: 118px !important;
    padding: 14px 16px !important;
    border-radius: 999px 24px 999px 24px !important;
  }

  .home-page .profile-card,
  .home-page .story-card.is-active {
    max-width: 100% !important;
  }

  .home-page .gallery-board .gallery-tall:first-child {
    height: 300px !important;
  }
}
/* =========================================================
   FINAL REPLACEMENT: hero flower spread on groom and bride side
   Paste-safe override. Keep this block at the very end of home.css.
   ========================================================= */
.home-page .hero-section {
  overflow: hidden !important;
  isolation: isolate;
}

.home-page .hero-grid {
  isolation: isolate;
}

.home-page .hero-copy {
  position: relative;
  z-index: 8 !important;
}

.home-page .hero-visual {
  position: relative !important;
  isolation: isolate;
  overflow: visible !important;
  min-height: 470px !important;
  display: grid !important;
  place-items: end center !important;
}

.home-page .hero-flower {
  position: absolute !important;
  z-index: 0 !important;
  bottom: -12px !important;
  pointer-events: none !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  filter: saturate(1.08) brightness(1.04) !important;
}

.home-page .hero-flower-right {
  right: -108px !important;
  left: auto !important;
  width: min(120%, 850px) !important;
  height: min(120%, 548px) !important;
  opacity: 0.92 !important;
  animation: floatGlow 5.5s ease-in-out infinite !important;
  transform-origin: center bottom !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 9%, #000 27%, #000 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 9%, #000 27%, #000 100%) !important;
}

.home-page .hero-flower-left {
  left: -132px !important;
  right: auto !important;
  width: min(96%, 665px) !important;
  height: min(116%, 528px) !important;
  opacity: 0.66 !important;
  animation: none !important;
  transform: scaleX(-1) !important;
  transform-origin: center bottom !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.44) 11%, #000 35%, rgba(0, 0, 0, 0.74) 72%, transparent 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.44) 11%, #000 35%, rgba(0, 0, 0, 0.74) 72%, transparent 100%) !important;
}

.home-page .hero-couple {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 548px) !important;
}

.home-page .trust-pill {
  z-index: 5 !important;
}

@media (min-width: 1181px) {
  .home-page .hero-visual {
    min-height: 470px !important;
  }
}

@media (max-width: 1180px) {
  .home-page .hero-flower-left {
    display: none !important;
  }

  .home-page .hero-flower-right {
    right: 50% !important;
    left: auto !important;
    bottom: 0 !important;
    width: min(112%, 760px) !important;
    height: 500px !important;
    opacity: 0.86 !important;
    transform: translateX(50%) !important;
    -webkit-mask-image: radial-gradient(circle at 50% 56%, #000 0%, #000 62%, transparent 92%) !important;
    mask-image: radial-gradient(circle at 50% 56%, #000 0%, #000 62%, transparent 92%) !important;
  }
}

@media (max-width: 680px) {
  .home-page .hero-flower-left {
    display: none !important;
  }

  .home-page .hero-flower-right {
    right: 50% !important;
    left: auto !important;
    bottom: 88px !important;
    width: min(118%, 430px) !important;
    height: 390px !important;
    opacity: 0.78 !important;
    transform: translateX(50%) !important;
  }
}

@media (max-width: 440px) {
  .home-page .hero-flower-right {
    bottom: 84px !important;
    width: 124% !important;
    height: 360px !important;
  }
}
