/* *{
    scroll-behavior: smooth;

    overscroll-behavior: none;
} */

/* Section Badge - Sparkle Pill */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(6,139,165,0.08), rgba(129,204,207,0.12));
    color: #068BA5;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(6,139,165,0.15);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6,139,165,0.08), transparent);
    animation: badge-shimmer 3s ease-in-out infinite;
}
@keyframes badge-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
.section-badge svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    animation: sparkle-rotate 4s linear infinite;
}
@keyframes sparkle-rotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.15); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}
@media (min-width: 640px) {
    .section-badge {
        padding: 10px 24px;
        font-size: 0.85rem;
        gap: 10px;
        letter-spacing: 1.5px;
    }
    .section-badge svg {
        width: 18px;
        height: 18px;
    }
}

/* =====================================================
   SECTION TITLE ENHANCEMENTS
   ===================================================== */

/* Gradient highlight for key words in titles */
.title-highlight {
    background: linear-gradient(135deg, #068BA5, #45ACBB, #068BA5);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
    display: inline;
}
@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Animated underline beneath highlighted title text */
.title-highlight-underline {
    position: relative;
    display: inline;
}
.title-highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #068BA5, #45ACBB, #81CCCF, #45ACBB, #068BA5);
    background-size: 200% auto;
    border-radius: 2px;
    animation: underline-flow 3s linear infinite;
}
@keyframes underline-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Section title wrapper with decorative side lines */
.section-title-decorated {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}
.section-title-decorated::before,
.section-title-decorated::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #068BA5);
    border-radius: 1px;
}
.section-title-decorated::after {
    background: linear-gradient(90deg, #068BA5, transparent);
}
@media (min-width: 640px) {
    .section-title-decorated::before,
    .section-title-decorated::after {
        max-width: 80px;
    }
}

/* Section subtitle with enhanced styling */
.section-subtitle {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.3px;
    max-width: 36rem;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Decorative dot separator for subtitles */
.section-subtitle-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.section-subtitle-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #068BA5;
    opacity: 0.3;
}
.section-subtitle-dots span:nth-child(2) {
    width: 8px;
    height: 8px;
    opacity: 0.5;
}
.section-subtitle-dots span:nth-child(3) {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    opacity: 0.7;
    background: linear-gradient(90deg, #068BA5, #45ACBB);
}
.section-subtitle-dots span:nth-child(4) {
    width: 8px;
    height: 8px;
    opacity: 0.5;
}
.section-subtitle-dots span:nth-child(5) {
    width: 6px;
    height: 6px;
    opacity: 0.3;
}

/* Hero title special treatment */
.hero-title-glow {
    text-shadow: 0 0 40px rgba(6,139,165,0.08);
}

/* Section header container */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3.5rem;
    }
}

@font-face {
    font-family: "Calibri";
    src: url("../fonts/calibri.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Calibri";
    src: url("../fonts/calibrib.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Calibri";
    src: url("../fonts/calibrii.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Calibri";
    src: url("../fonts/calibriz.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Calibri";
    src: url("../fonts/calibriL.ttf") format("truetype");
    font-weight: lighter;
    font-style: normal;
}

body {
    font-family: "Calibri", Arial;
}

/* Apple-style Glass Morphism Utility Classes */
.glass-pill {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}
.glass-pill:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.55) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Page Load Progress Bar */
.page-load-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #068BA5, #45ACBB, #81CCCF);
    z-index: 99999;
    width: 0;
    transition: width 0.4s ease;
    border-radius: 0 2px 2px 0;
}
.page-load-bar.loading {
    width: 70%;
    transition: width 2s ease-out;
}
.page-load-bar.done {
    width: 100%;
    transition: width 0.3s ease;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.4s 0.3s ease;
}

/* Screen reader only utility for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* --------------------------------- */
/* On-Scroll Animation */
/* --------------------------------- */

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(5vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .block {
    view-timeline-name: --scroll-fade-in-timeline;
    animation-name: slide-fade-in;
    animation-timeline: --scroll-fade-in-timeline;
    animation-range: entry 0% entry 100%;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
  }
}

/* --------------------------------- */

/* --------------------------------- */

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animate-shimmer {
  animation: shimmer 1.5s linear infinite;
}


/* Style for the active tab */
.active {
    color: #0088A3;
    /* Change the text color */
    font-weight: bold;
    /* Optional: Make the text bold */
    text-decoration: underline;
    /* Underline the text */
}

/* --------------------------------- */
/* Custom Styles for the Range Input */
/* --------------------------------- */

input[type="range"] {
    /* Hide default slider appearance */
    -webkit-appearance: none;
    appearance: none;

    /* Track styles */
    height: 8px;
    background: #86CFD1; /* Default background color after the thumb */
    border-radius: 9999px;
    outline: none;
    z-index: 1;
    position: relative;
}

/* Track styling before the thumb (using a pseudo-element) */
input[type="range"]::before {
    content: '';
    position: absolute;
    height: 8px;
    width: var(--thumb-percentage, 0%); /* Dynamically updated width */
    background-color: #0088A3; /* Background color before the thumb */
    border-radius: 9999px;
    z-index: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    /* Thumb styles */
    width: 22px;
    height: 22px;
    background-color: #0088A3; /* White */
    border: 6px solid white;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 0 8px black;
    z-index: 2;
    position: relative;
}

input[type="range"]::-moz-range-thumb {
    /* For Firefox */
    width: 22px;
    height: 22px;
    background-color: #0088A3; /* White */
    border: 6px solid white;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 0 8px black;
}

/* --------------------------------- */
/* --------------------------------- */

#totalCreditsInfoText {
  font-family: "Caveat", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.5rem;
}

#header {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* shinny effect */
.shimmer {
    color: grey;
    display: inline-block;
    mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350% 100%;
    animation: shimmer 5.5s infinite;
    font-size: 50px;
  }


    /* on hover stop effect */
    .shimmer:hover {
        animation: none;
        -webkit-animation: none;
    }
  
  @keyframes shimmer {
    100% {
      mask-position: left
    }
  }


  .stroke-text {
      -webkit-text-stroke: 1px white;
      font-weight: 900;
    }

    .custom-shape-divider-bottom-1750759340 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1750759340 svg {
    position: relative;
    display: block;
    width: calc(127% + 1.3px);
    height: 123px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1750759340 .shape-fill {
    fill: #E4F2F5;
}

.custom-shape-divider-bottom-1750761426 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1750761426 svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1750761426 .shape-fill {
    fill: #ffffff;
}

.custom-shape-divider-top-1750762508 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1750762508 svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 89px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1750762508 .shape-fill {
    fill: #FFFFFF;
}


.custom-shape-divider-top-1750916480 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1750916480 svg {
    position: relative;
    display: block;
    width: calc(278% + 1.3px);
    height: 399px;
}

.custom-shape-divider-top-1750916480 .shape-fill {
    fill: #0A0F22;
}

@media (min-width: 768px) {
  .box {
    --mask:
      radial-gradient(51.43px at calc(100% - 69px) 50%, #000 99%, #0000 101%) 0 calc(50% - 46px)/100% 92px,
      radial-gradient(51.43px at calc(100% + 46px) 50%, #0000 99%, #000 101%) calc(100% - 23px) 50%/100% 92px repeat-y;
    -webkit-mask: var(--mask);
            mask: var(--mask);
  }

  .outer-box {
    border-radius: 40px 0px 0px 0px;
    display: inline-block;
  }
}

/* Show only on mobile (max-width: 767px) */
.is-mobile-view {
  display: block !important;
}

@media (min-width: 768px) {
  .is-mobile-view {
    display: none !important;
  }
}

.is-tablet-view {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .is-tablet-view {
    display: block !important;
  }
}
@media (max-width: 767px), (min-width: 1024px) {
  .is-tablet-view {
    display: none !important;
  }
}

.is-desktop-view {
  display: none !important;
}
@media (min-width: 1024px) {
  .is-desktop-view {
    display: block !important;
  }
}
  

.typewriter1 {
    overflow: hidden;
    /* border-right: .15em solid orange;     */
    animation: typing1 2.5s steps(30, end) infinite, blink-caret1 .75s step-end infinite;
}

@keyframes typing1 {
    from { width: 0ch; }
    to { width: 7.3ch; }
}

@keyframes blink-caret1 {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}


/* Unused typewriter animations removed for better performance */

/* Respect user's motion preferences for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Disable bubble animations */
  .animate-bubble1,
  .animate-bubble2,
  .animate-bubble3,
  .animate-bubble4,
  .animate-bubble5,
  .animate-bubble6 {
    animation: none !important;
  }
}

/* Improved touch targets for mobile (minimum 44x44px) */
@media (max-width: 768px) {
  a, button, input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better spacing on mobile */
  .px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Smooth focus transitions */
*:focus {
  transition: outline-offset 0.2s ease;
}

/* Better focus visibility */
*:focus-visible {
  outline: 2px solid #0088A3;
  outline-offset: 2px;
}

/* =====================================================
   RIPPLE EFFECT FOR BUTTONS
   ===================================================== */

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
  width: 300px;
  height: 300px;
  transition: width 0s, height 0s;
}

/* Scroll reveal animations removed per user request */

/* =====================================================
   LOADING SPINNER
   ===================================================== */

.spinner {
  border: 3px solid rgba(0, 136, 163, 0.3);
  border-top-color: #0088A3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================================================
   SKELETON LOADING SCREENS
   ===================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #e0e0e0 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-text.title {
  height: 24px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton-text.subtitle {
  height: 20px;
  width: 80%;
}

.skeleton-box {
  height: 200px;
  border-radius: 8px;
}

.skeleton-circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.skeleton-button {
  height: 44px;
  width: 120px;
  border-radius: 8px;
}

/* Skeleton for pricing table */
.skeleton-table-row {
  height: 60px;
  margin-bottom: 8px;
  border-radius: 8px;
}

/* Skeleton for blog cards */
.skeleton-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.skeleton-card-image {
  height: 200px;
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #e0e0e0 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-card-content {
  padding: 20px;
}

/* Fade in animation when content loads */
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =====================================================
   SUCCESS ANIMATION
   ===================================================== */

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
  animation: scaleAnimation 0.3s ease;
}

.check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotateCircle 4.25s ease-in;
}

.check-icon::before, .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  transform: rotate(-45deg);
}

.icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: iconLineTip 0.75s;
}

.icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: iconLineLong 0.75s;
}

.icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}

.icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: white;
}

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

@keyframes rotateCircle {
  0% { transform: rotate(-45deg); }
  5% { transform: rotate(-45deg); }
  12% { transform: rotate(-405deg); }
  100% { transform: rotate(-405deg); }
}

@keyframes iconLineTip {
  0% { width: 0; top: 19px; left: -8px; }
  54% { width: 0; top: 19px; left: -8px; }
  70% { width: 50px; top: 37px; left: -8px; }
  84% { width: 17px; top: 48px; left: 21px; }
  100% { width: 25px; top: 45px; left: 14px; }
}

@keyframes iconLineLong {
  0% { width: 0; top: 51px; right: 46px; }
  65% { width: 0; top: 51px; right: 46px; }
  84% { width: 55px; top: 37px; right: 0; }
  100% { width: 47px; top: 38px; right: 8px; }
}


.custom-shape-divider-bottom-1751352135 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1751352135 svg {
    position: relative;
    display: block;
    width: calc(129% + 1.3px);
    height: 38px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1751352135 .shape-fill {
    fill: #CCE7ED;
}


.custom-shape-divider-top-1751523713 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1751523713 svg {
    position: absolute;
    display: block;
    width: calc(139% + 1.3px);
    height: 87px;
}

.custom-shape-divider-top-1751523713 .shape-fill {
    fill: #CCE7ED;
}

/* Small screens */
@media (max-width: 640px) {
  .custom-shape-divider-bottom-1751352135 svg {
    width: 100%;
    height: 55px;
  }
}

/* Medium screens */
@media (min-width: 641px) and (max-width: 1024px) {
  .custom-shape-divider-bottom-1751352135 svg {
    width: 110%;
    height: 32px;
  }
}

/* FAQ Accordion Smooth Animation */
.faq-answer-collapsed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              margin-top 0.3s ease;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer-expanded {
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease 0.05s,
              margin-top 0.3s ease;
  margin-top: 0.75rem;
}

/* ========================================================
   Anniversary Offer — pricing table highlight
   Bonus cell shows: base + extra  then  = total.
   Column header gets a pulsing "OFFER" pill.
   Auto-disables after ANNIVERSARY_OFFER.endDate (js/main.js).
   ======================================================== */
#pricing-table td,
#pricing-table th {
  vertical-align: middle;
}
.anniversary-bonus-cell {
  background: linear-gradient(135deg, #FFF4E5 0%, #FFE4EC 100%) !important;
  padding: 8px 12px !important;
}
.anniversary-bonus-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.15;
}
.anniversary-bonus-line {
  font-size: 0.78rem;
  color: #6b7280;
  white-space: nowrap;
}
.anniversary-bonus-base {
  color: #6b7280;
}
.anniversary-bonus-plus {
  margin: 0 3px;
  color: #9CA3AF;
}
.anniversary-bonus-extra {
  color: #EA580C;
  font-weight: 700;
}
.anniversary-bonus-total {
  font-size: 1rem;
  font-weight: 700;
  color: #0088A3;
  white-space: nowrap;
}
.anniversary-header-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.anniversary-header-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #F97316, #EC4899);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  animation: anniversary-pulse 1.8s ease-in-out infinite;
}
@keyframes anniversary-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5); }
  50%      { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(236, 72, 153, 0); }
}

/* ========================================================
   Integrations page
   ======================================================== */

/* ---- Hero: Integration Hub visual ---- */
.integration-hub {
  position: relative;
  max-width: 600px;
  height: 400px;
  margin: 0 auto;
}
.integration-hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hub-line {
  stroke-dashoffset: 0;
  animation: hub-flow 3s linear infinite;
}
.hub-line-2 { animation-delay: 0.5s; }
.hub-line-3 { animation-delay: 1s; }
.hub-line-4 { animation-delay: 1.5s; }
.hub-line-5 { animation-delay: 2s; }
.hub-line-6 { animation-delay: 2.5s; }
@keyframes hub-flow {
  0%   { stroke-dashoffset: 22; opacity: 0.4; }
  50%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.4; }
}

.hub-orbit {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px -6px rgba(6, 139, 165, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: hub-float 4s ease-in-out infinite;
}
.hub-orbit:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 32px -6px rgba(6, 139, 165, 0.4);
  z-index: 5;
}
.hub-orbit img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Positions match the SVG line endpoints; translate(-50%,-50%) centers on the point. */
.hub-pos-1 { top: 20%;  left: 15%;  transform: translate(-50%, -50%); animation-delay: 0s;    }
.hub-pos-2 { top: 20%;  left: 85%;  transform: translate(-50%, -50%); animation-delay: 0.6s;  }
.hub-pos-3 { top: 50%;  left: 10%;  transform: translate(-50%, -50%); animation-delay: 1.2s;  }
.hub-pos-4 { top: 50%;  left: 90%;  transform: translate(-50%, -50%); animation-delay: 1.8s;  }
.hub-pos-5 { top: 80%;  left: 15%;  transform: translate(-50%, -50%); animation-delay: 2.4s;  }
.hub-pos-6 { top: 80%;  left: 85%;  transform: translate(-50%, -50%); animation-delay: 3s;    }
@keyframes hub-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0);    }
  50%      { transform: translate(-50%, -50%) translateY(-6px); }
}
.hub-orbit:hover { animation-play-state: paused; }

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #E4F2F5 100%);
  box-shadow: 0 0 0 8px rgba(6, 139, 165, 0.08), 0 0 0 18px rgba(6, 139, 165, 0.04), 0 20px 40px -10px rgba(6, 139, 165, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  z-index: 3;
  animation: hub-pulse-ring 2.5s ease-in-out infinite;
}
.hub-center img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
@keyframes hub-pulse-ring {
  0%, 100% { box-shadow: 0 0 0 8px rgba(6, 139, 165, 0.08), 0 0 0 18px rgba(6, 139, 165, 0.04), 0 20px 40px -10px rgba(6, 139, 165, 0.35); }
  50%      { box-shadow: 0 0 0 14px rgba(6, 139, 165, 0.14), 0 0 0 28px rgba(6, 139, 165, 0.06), 0 20px 40px -10px rgba(6, 139, 165, 0.45); }
}

/* Mobile: collapse hub into a simple logo row */
@media (max-width: 768px) {
  .integration-hub {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px;
  }
  .integration-hub-lines,
  .hub-center { display: none; }
  .hub-orbit {
    position: static;
    transform: none !important;
    animation: none;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    padding: 10px;
  }
}

/* ---- Stats strip ---- */
.stat-tile {
  text-align: center;
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-plus {
  font-size: 1.25rem;
  margin-left: 2px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.3px;
}

/* ---- Integration card v2 ---- */
.integration-card-v2 {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.integration-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, #068BA5, #45ACBB, #81CCCF);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.integration-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(6, 139, 165, 0.25);
  border-color: transparent;
}
.integration-card-v2:hover::before { opacity: 1; }

.integration-v2-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.integration-v2-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.integration-v2-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.integration-v2-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
  line-height: 1.2;
}
.integration-v2-tagline {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}
.integration-v2-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

.integration-v2-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.integration-v2-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
}
.integration-v2-features li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: #068BA5;
}

.integration-v2-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
}
.integration-v2-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(6, 139, 165, 0.08);
  color: #068BA5;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.integration-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #068BA5;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}
.integration-v2-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.integration-v2-link:hover {
  color: #056b80;
  gap: 8px;
}
.integration-v2-link:hover svg {
  transform: translateX(2px);
}

/* Ghost card ("More coming soon") */
.integration-card-v2-ghost {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
}
.integration-card-v2-ghost::before { display: none; }
.integration-card-v2-ghost:hover {
  border-color: #068BA5;
  background: rgba(255, 255, 255, 0.8);
}
.integration-v2-ghost-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6, 139, 165, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #068BA5;
  margin-bottom: 12px;
}
.integration-v2-ghost-icon svg {
  width: 28px;
  height: 28px;
}
.integration-v2-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #068BA5;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(6, 139, 165, 0.08);
  transition: background 0.2s ease;
}
.integration-v2-ghost-link:hover {
  background: rgba(6, 139, 165, 0.15);
}
.integration-v2-ghost-link svg { width: 14px; height: 14px; }

/* ---- How it works steps ---- */
.step-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px 24px;
  box-shadow: 0 4px 20px rgba(6, 139, 165, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -4px rgba(6, 139, 165, 0.2);
}
.step-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(6, 139, 165, 0.12);
  letter-spacing: -1px;
  line-height: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px -4px rgba(6, 139, 165, 0.35);
}
.step-icon svg {
  width: 28px;
  height: 28px;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}
.step-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-arrow svg {
  width: 40px;
  height: 20px;
  opacity: 0.6;
}
@media (max-width: 900px) {
  .step-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-arrow { transform: rotate(90deg); }
}

/* ---- FAQ (shared) — moved from src/main/faq.html so every page can use .faq-item ---- */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(6, 139, 165, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(6, 139, 165, 0.1);
  border-color: rgba(6, 139, 165, 0.2);
}
.faq-item[open] {
  border-color: rgba(6, 139, 165, 0.25);
  background: #f8fcfd;
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}
.faq-q-text { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #068BA5;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer-text {
  padding: 0 20px 18px 60px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4B5563;
  animation: faqFadeIn 0.3s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer-text { animation: none; }
}

/* ========================================================
   AI Plan Advisor (pricing page)
   Gradient-bordered card with inputs on left, result panel on right.
   States on #ai-result: data-state="empty" | "loading" | "ready".
   ======================================================== */
.plan-advisor-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 2px; /* gradient-border thickness */
  background: linear-gradient(135deg, #068BA5 0%, #45ACBB 40%, #F97316 75%, #EC4899 100%);
  background-size: 300% 300%;
  box-shadow: 0 20px 60px -20px rgba(6, 139, 165, 0.3);
  animation: advisor-border-shift 9s ease-in-out infinite;
}
@keyframes advisor-border-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.advisor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  min-height: 520px;
}
@media (max-width: 900px) {
  .advisor-grid { grid-template-columns: 1fr; }
}

/* --- Left: inputs --- */
.advisor-inputs {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  border-right: 1px solid rgba(6, 139, 165, 0.08);
}
@media (max-width: 900px) {
  .advisor-inputs { border-right: 0; border-bottom: 1px solid rgba(6, 139, 165, 0.08); }
}
.advisor-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #068BA5;
}
.advisor-kicker-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.advisor-kicker-icon svg { width: 14px; height: 14px; }

.advisor-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.advisor-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.advisor-hint {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 6px;
}

/* Number stepper */
.advisor-number-wrap {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  max-width: 220px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.advisor-number-wrap:focus-within {
  border-color: #068BA5;
  box-shadow: 0 0 0 3px rgba(6, 139, 165, 0.12);
}
.advisor-step {
  width: 42px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #068BA5;
  background: #f8fafc;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.advisor-step:hover { background: #e2f1f5; }
#ai-daily-orders {
  flex: 1;
  width: 100%;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  border: 0;
  outline: none;
  background: transparent;
  padding: 10px 6px;
  -moz-appearance: textfield;
}
#ai-daily-orders::-webkit-outer-spin-button,
#ai-daily-orders::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Duration button group */
.advisor-duration-group {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
}
.advisor-duration-group button {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.advisor-duration-group button:hover { color: #068BA5; }
.advisor-duration-group button.is-active {
  background: #ffffff;
  color: #068BA5;
  box-shadow: 0 2px 6px rgba(6, 139, 165, 0.15);
}

/* Analyze button */
.advisor-analyze-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #068BA5 0%, #45ACBB 55%, #F97316 130%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 10px 24px -8px rgba(6, 139, 165, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.6s ease;
  margin-top: auto;
}
.advisor-analyze-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(236, 72, 153, 0.45);
  background-position: 100% 50%;
}
.advisor-sparkle {
  width: 16px;
  height: 16px;
  animation: advisor-sparkle-spin 3s ease-in-out infinite;
}
@keyframes advisor-sparkle-spin {
  0%, 100% { transform: rotate(0deg)   scale(1); }
  50%      { transform: rotate(180deg) scale(1.15); }
}

/* --- Right: result panel --- */
.advisor-result {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(160deg, #f8fcfd 0%, #eff7f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.advisor-result::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(6, 139, 165, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Only one child is visible based on data-state */
.advisor-empty,
.advisor-loading,
.advisor-recommendation { display: none; width: 100%; }
.advisor-result[data-state="empty"]  .advisor-empty          { display: block; }
.advisor-result[data-state="loading"] .advisor-loading       { display: flex; }
.advisor-result[data-state="ready"]  .advisor-recommendation { display: block; animation: advisor-slide 0.4s ease; }
@keyframes advisor-slide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Empty state */
.advisor-empty { text-align: center; position: relative; z-index: 1; }
.advisor-empty-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 0 0 8px rgba(6, 139, 165, 0.08), 0 10px 24px -4px rgba(6, 139, 165, 0.35);
  animation: advisor-pulse 2.5s ease-in-out infinite;
}
.advisor-empty-orb svg { width: 28px; height: 28px; }
@keyframes advisor-pulse {
  0%, 100% { box-shadow: 0 0 0 8px  rgba(6, 139, 165, 0.08), 0 10px 24px -4px rgba(6, 139, 165, 0.35); }
  50%      { box-shadow: 0 0 0 14px rgba(6, 139, 165, 0.12), 0 10px 24px -4px rgba(6, 139, 165, 0.45); }
}
.advisor-empty-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}
.advisor-empty-sub {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

/* Loading state */
.advisor-loading {
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.advisor-loading-orb {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.advisor-loading-orb span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  animation: advisor-dots 1.2s ease-in-out infinite;
}
.advisor-loading-orb span:nth-child(2) { animation-delay: 0.15s; }
.advisor-loading-orb span:nth-child(3) { animation-delay: 0.3s; }
@keyframes advisor-dots {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1.1); opacity: 1;   }
}
.advisor-loading-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  margin: 0;
}
.advisor-loading-dots {
  display: inline-block;
  animation: advisor-ellipsis 1.4s steps(4, end) infinite;
  width: 1.5em;
  text-align: left;
}
@keyframes advisor-ellipsis {
  0%   { content: '.';    }
  33%  { content: '..';   }
  66%  { content: '...';  }
  100% { content: '';     }
}

/* Recommendation state */
.advisor-recommendation { position: relative; z-index: 1; }
.advisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #F97316, #EC4899);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px -2px rgba(236, 72, 153, 0.35);
}
.advisor-badge svg { width: 12px; height: 12px; }
.advisor-plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advisor-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.advisor-plan-price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}
.advisor-plan-price-unit {
  font-size: 0.78rem;
  color: #64748b;
}

.advisor-breakdown {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.advisor-break-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
}
.advisor-break-label {
  color: #64748b;
  flex: 1;
}
.advisor-break-value {
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}
.advisor-break-strong .advisor-break-label { color: #0f172a; font-weight: 600; }
.advisor-break-strong .advisor-break-value { color: #068BA5; }
.advisor-break-anniversary .advisor-break-value { color: #EA580C; }
.advisor-break-total {
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 4px;
}
.advisor-break-total .advisor-break-label { color: #0f172a; font-weight: 700; }
.advisor-break-total .advisor-break-value {
  color: #16a34a;
  font-size: 0.95rem;
}
.advisor-break-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}

.advisor-why {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
  padding: 10px 12px;
  background: rgba(6, 139, 165, 0.06);
  border-radius: 10px;
  margin: 0 0 16px 0;
}
.advisor-why strong { color: #0f172a; }
.advisor-why a { color: #068BA5; text-decoration: underline; font-weight: 600; }

.advisor-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.advisor-primary-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(6, 139, 165, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 180px;
}
.advisor-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(6, 139, 165, 0.6);
}
.advisor-primary-cta svg { width: 14px; height: 14px; }
.advisor-secondary-cta {
  padding: 12px 18px;
  border-radius: 12px;
  background: transparent;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.advisor-secondary-cta:hover {
  color: #068BA5;
  border-color: #068BA5;
  background: rgba(6, 139, 165, 0.04);
}

/* ========================================================
   Features hub — "Specialised Automation" deep-dive cards
   ======================================================== */
.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px 28px 24px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  isolation: isolate;
}
.hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, #068BA5, #45ACBB, #F97316);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(6, 139, 165, 0.25);
  border-color: transparent;
}
.hub-card:hover::before { opacity: 1; }
.hub-card-ajio::before {
  background: linear-gradient(135deg, #0A0F22, #141b3d, #45ACBB);
}

.hub-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 24px -4px rgba(6, 139, 165, 0.35);
  margin-bottom: 8px;
}
.hub-card-icon svg { width: 28px; height: 28px; }

.hub-card-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #068BA5;
}
.hub-card-d2c .hub-card-kicker { color: #128C7E; }
.hub-card-ajio .hub-card-kicker { color: #334155; }

.hub-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}
.hub-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 2px 0 0;
}
.hub-card-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hub-card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: #475569;
}
.hub-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  box-shadow: 0 0 0 3px rgba(6, 139, 165, 0.1);
}
.hub-card-d2c .hub-card-features li::before { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12); }

.hub-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #068BA5;
  transition: gap 0.25s ease;
}
.hub-card-cta svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.hub-card:hover .hub-card-cta { gap: 10px; }
.hub-card:hover .hub-card-cta svg { transform: translateX(2px); }
.hub-card-d2c .hub-card-cta { color: #128C7E; }
.hub-card-ajio .hub-card-cta { color: #0f172a; }

/* ---- Included-in-every-plan cards (pricing page) ---- */
.included-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.included-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -6px rgba(6, 139, 165, 0.18);
  border-color: rgba(6, 139, 165, 0.25);
}
.included-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px -3px rgba(6, 139, 165, 0.3);
}
.included-icon svg {
  width: 26px;
  height: 26px;
}
.included-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.included-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ========================================================
   Blog list page — redesigned hero search, pills, cards,
   result-meta, empty state, pagination.
   ======================================================== */

/* Search bar */
.blog-search-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto 18px;
}
.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9CA3AF;
  pointer-events: none;
}
.blog-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1.5px solid rgba(6, 139, 165, 0.18);
  box-shadow: 0 8px 24px -6px rgba(6, 139, 165, 0.15);
  border-radius: 14px;
  padding: 14px 48px 14px 50px;
  font-size: 0.95rem;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-search-input::placeholder { color: #94a3b8; }
.blog-search-input:focus {
  outline: none;
  border-color: #068BA5;
  box-shadow: 0 8px 28px -6px rgba(6, 139, 165, 0.3), 0 0 0 4px rgba(6, 139, 165, 0.12);
}
.blog-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(6, 139, 165, 0.08);
  border: 0;
  color: #068BA5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blog-search-clear:hover {
  background: rgba(6, 139, 165, 0.18);
  transform: translateY(-50%) scale(1.05);
}
.blog-search-clear svg { width: 14px; height: 14px; }

/* Category pills */
.blog-category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
  padding: 4px;
}
.blog-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 139, 165, 0.15);
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.blog-pill:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #068BA5;
  border-color: rgba(6, 139, 165, 0.4);
  transform: translateY(-1px);
}
.blog-pill.is-active {
  background: linear-gradient(135deg, #068BA5, #45ACBB);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 16px -4px rgba(6, 139, 165, 0.45);
}
.blog-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(6, 139, 165, 0.1);
  color: #068BA5;
}
.blog-pill.is-active .blog-pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Result meta row */
.blog-results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding: 0 4px;
  font-size: 0.9rem;
  color: #64748b;
}
.blog-results-meta strong { color: #0f172a; font-weight: 700; }
.blog-results-meta em { color: #068BA5; font-style: normal; font-weight: 600; }
.blog-clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(6, 139, 165, 0.08);
  color: #068BA5;
  font-size: 0.8rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.blog-clear-filters:hover { background: rgba(6, 139, 165, 0.18); }
.blog-clear-filters-lg {
  margin-top: 18px;
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Card enhancements (floating category + new badge + icon meta) */
.card-new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #F97316, #EC4899);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px -2px rgba(236, 72, 153, 0.5);
  z-index: 2;
  animation: anniversary-pulse 1.8s ease-in-out infinite;
}
.card-category-float {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #068BA5 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(6, 139, 165, 0.15);
  font-size: 0.64rem !important;
  padding: 4px 10px !important;
  z-index: 2;
}
.blog-card .card-image {
  position: relative;
}
.blog-card .card-top-meta {
  justify-content: flex-start;
  gap: 14px;
  color: #64748b;
  font-size: 0.78rem;
}
.blog-card .card-top-meta .meta-date,
.blog-card .card-top-meta .meta-reading-time {
  font-size: 0.78rem;
  color: #64748b;
}

/* Gradient border glow on hover */
.blog-card {
  position: relative;
  isolation: isolate;
}
.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, #068BA5, #45ACBB, #F97316);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.blog-card:hover::before { opacity: 1; }

/* Empty state */
.blog-empty-state {
  text-align: center;
  padding: 60px 24px;
  background: #ffffff;
  border: 1px dashed rgba(6, 139, 165, 0.25);
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.blog-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(6, 139, 165, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #068BA5;
  margin-bottom: 18px;
}
.blog-empty-icon svg { width: 36px; height: 36px; }
.blog-empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}
.blog-empty-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Pagination polish */
.blog-pagination .page-btn {
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}
.blog-pagination .page-btn:hover {
  background: rgba(6, 139, 165, 0.08) !important;
  border-color: rgba(6, 139, 165, 0.4) !important;
  color: #068BA5 !important;
  transform: translateY(-1px) !important;
}
.blog-pagination .page-btn.active {
  background: linear-gradient(135deg, #068BA5, #45ACBB) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px -4px rgba(6, 139, 165, 0.5) !important;
}

/* ---- Coming soon chips ---- */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.coming-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.coming-chip::after {
  content: 'Soon';
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #F97316, #EC4899);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.coming-chip img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
}
.coming-chip span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}
.coming-chip:hover {
  border-color: #068BA5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(6, 139, 165, 0.18);
}
.coming-chip:hover img { opacity: 1; }
.coming-chip:hover span { color: #068BA5; }

/* Nav "OFFER" badge — appended to Pricing links in header + mobile menu */
.anniversary-nav-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #F97316, #EC4899);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  vertical-align: middle;
  animation: anniversary-pulse 1.8s ease-in-out infinite;
}