/* ===== Design tokens ===== */
:root {
  --navy: #2c3345;
  --navy-800: #232838;
  --navy-700: #3a4257;
  --blue: #188bf6;
  --blue-600: #0f6fd1;
  --blue-light: #eaf4ff;
  --sky: #009ef4;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f8fb;
  --gray-300: #d7dde9;
  --gray-500: #8c8c8c;
  --gray-700: #55596b;
  --success: #2fae6b;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Poppins", var(--font-body);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(44, 51, 69, 0.06);
  --shadow-md: 0 12px 32px rgba(44, 51, 69, 0.12);
  --shadow-lg: 0 24px 60px rgba(44, 51, 69, 0.18);

  --container: 1160px;
}

/* ===== Animations ===== */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .container>* {
  animation: heroIn 0.7s ease both;
}

.hero .container>*:nth-child(1) {
  animation-delay: 0s;
}

.hero .container>*:nth-child(2) {
  animation-delay: 0.08s;
}

.hero .container>*:nth-child(3) {
  animation-delay: 0.16s;
}

.hero .container>*:nth-child(4) {
  animation-delay: 0.24s;
}

.hero .container>*:nth-child(5) {
  animation-delay: 0.32s;
}

.page-hero .container {
  animation: heroIn 0.6s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.plan-card.featured.in-view {
  transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {

  .hero .container>*,
  .page-hero .container {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Reset ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--gray-700);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.lede {
  font-size: 19px;
  color: var(--gray-700);
  max-width: 640px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-300);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: 30px;
}

.logo-badge {
  display: inline-block;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.logo-badge img {
  height: 20px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-700);
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-700);
  padding: 8px 4px;
}

.nav-login svg {
  width: 18px;
  height: 18px;
}

.nav-login:hover {
  color: var(--blue);
}

.nav-more-wrap {
  position: relative;
}

.nav-more-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-700);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-more-link:hover {
  color: var(--blue);
}

.nav-more-link .chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.nav-more-wrap:hover .chevron,
.nav-more-wrap:focus-within .chevron,
.nav-more-wrap.open .chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 200;
}

.nav-more-wrap:hover .nav-dropdown,
.nav-more-wrap:focus-within .nav-dropdown,
.nav-more-wrap.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-700);
}

.nav-dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--gray-300);
  margin: 6px 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--gray-300);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
    padding: 12px 4px;
    font-weight: 600;
    color: var(--navy-700);
    border-bottom: 1px solid #3a425733;
}
/* ================================
   MOBILE MENU
================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;

    width: min(80%, 380px);
    height: 100vh;
    height: 100dvh;

    /* padding: 100px 30px 40px; */

    background: #ffffff;
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;
    gap: 0;

    /* Hidden */
    transform: translate3d(-105%, 0, 0);
    opacity: 0;
    visibility: hidden;

    /* Smooth slide */
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        visibility 0.65s;

    z-index: 99999;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}


/* ================================
   OPEN STATE
================================ */

.mobile-menu.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}


.mobile-menu.open .menu-item,
.mobile-menu.open .nav-login {
    opacity: 1;
    transform: translateX(0);
}


/* Stagger animation */

.mobile-menu.open .menu-item:nth-child(1) {
    transition-delay: 0.15s;
}

.mobile-menu.open .menu-item:nth-child(2) {
    transition-delay: 0.20s;
}

.mobile-menu.open .menu-item:nth-child(3) {
    transition-delay: 0.25s;
}

.mobile-menu.open .menu-item:nth-child(4) {
    transition-delay: 0.30s;
}

.mobile-menu.open .nav-login {
    transition-delay: 0.35s;
}


/* @media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
} */
.mobile-menu .btn {
  margin-top: 12px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-actions .nav-login {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  background-image: url("../assets/hero-light-bg.svg");
  background-size: cover;
  background-position: center;
  color: var(--navy);
  padding: 84px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  background: rgba(24, 139, 246, 0.12);
  color: var(--blue-600);
  box-shadow: 0 1px 2px rgba(24, 139, 246, 0.08);
}

.hero h1 {
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  color: var(--navy-700);
  max-width: 620px;
}

.hero .cta-line {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.arrow-doodle {
  width: 56px;
  height: 40px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .hero {
    padding: 56px 0 40px;
  }
}

/* ===== Persona cards ===== */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.persona-card {
  background: #c9caf6;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.persona-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-md);
}

.persona-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0;
}

.btn-black {
  display: inline-block;
  background: #111318;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 999px;
}

.btn-black:hover {
  background: #000;
}

/* ===== Included section ===== */
.included-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.included-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.included-visual .included-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.included-visual:hover .included-photo-img {
  transform: scale(1.08);
}

.included-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(12, 14, 22, 0) 55%, rgba(12, 14, 22, 0.7) 100%);
}

.included-visual .rec-chip {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
}

.included-visual .rec-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5c5c;
}

.included-visual .caption-chip {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.included-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.included-panel h2 {
  margin-bottom: 24px;
}

.included-item {
  margin-bottom: 26px;
}

.included-item:last-child {
  margin-bottom: 0;
}

.included-item .item-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.included-item .item-title::before {
  content: "✓";
  color: var(--navy);
}

.included-item p {
  font-size: 14px;
  margin: 0;
}

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

  .included-visual {
    min-height: 280px;
  }

  .contact-wrap {
    gap: 25px;
  }
}

/* ===== Special pricing callout ===== */
.special-pricing-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
}

.special-pricing-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
}

.special-pricing-box .accent {
  color: var(--sky);
}

.total-value-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

/* ===== Community banner ===== */
.community-wrap {
  background: var(--white);
  padding: 0px 0 80px;
}

.community-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.community-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.community-section:hover .community-photo-img {
  transform: scale(1.06);
}

.community-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(15, 18, 28, 0.55) 0%, rgba(15, 18, 28, 0.72) 60%, rgba(15, 18, 28, 0.85) 100%),
    linear-gradient(160deg, rgba(24, 30, 46, 0.55) 0%, rgba(12, 14, 22, 0.75) 100%);
}

.community-inner {
  position: relative;
  z-index: 2;
}

.community-section .eyebrow {
  background: rgba(24, 139, 246, 0.18);
  color: var(--sky);
}

.community-section h2 {
  color: var(--white);
}

.community-section .lede {
  color: rgba(255, 255, 255, 0.75);
}

.community-section--lg {
  padding: 96px 48px;
  text-align: center;
}

.community-inner {
  max-width: 720px;
  margin: 0 auto;
}

.community-inner .lede {
  margin: 0 auto;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0 44px;
  flex-wrap: wrap;
}

.community-stat {
  text-align: center;
}

.community-stat strong {
  display: block;
  font-size: 28px;
  font-family: var(--font-head);
  color: var(--white);
}

.community-stat span {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.community-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
}

.community-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ===== Sub / page hero (for non-home pages) ===== */
.page-hero {
  background-image: url("../assets/hero-bg.svg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero .eyebrow {
  background: rgba(24, 139, 246, 0.18);
  color: var(--sky);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.page-hero h1 span {
  color: var(--sky);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto;
}

.page-hero .lead-line {
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  max-width: 640px;
  margin: 18px auto 10px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.plan-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plan-card.featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.plan-price .amount {
  font-size: 38px;
  font-family: var(--font-head);
  color: var(--navy);
}

.plan-price .cadence {
  color: var(--gray-500);
  font-size: 14px;
}

.plan-setup {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--navy-700);
  align-items: flex-start;
}

.plan-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

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

  .plan-card.featured {
    transform: none;
  }
}

/* Add-ons table */
.addon-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.addon-table th,
.addon-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 15px;
}

.addon-table th {
  background: var(--gray-50);
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.addon-table td:last-child,
.addon-table th:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.addon-table tr:last-child td {
  border-bottom: none;
}

.addon-table tbody tr {
  transition: background 0.2s ease;
}

.addon-table tbody tr:hover {
  background: var(--blue-light);
}

/* À la carte mini cards */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.mini-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.mini-card .amount {
  font-size: 28px;
  font-family: var(--font-head);
  color: var(--blue);
}

.mini-card .cadence {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.mini-card p {
  font-size: 13.5px;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
}

.team-card h3 {
  font-size: 19px;
  margin-bottom: 2px;
}

.team-card .role {
  color: var(--blue);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 14.5px;
}

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

/* ===== Values / mission cards ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 24px;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  background: var(--gray-50);
}

.value-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: transform 0.25s ease;
}

.value-card:hover .icon {
  transform: scale(1.1) rotate(-4deg);
}

.value-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 14px;
  margin-bottom: 0;
}


/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--gray-700);
  padding: 10px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}

.benefit-list li:hover {
  background: var(--blue-light);
  transform: translateX(4px);
}

.benefit-list li strong {
  color: var(--navy);
  font-weight: 700;
}

.benefit-list li::before {
  content: "★";
  color: var(--blue);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--gray-300);
}

.form-price s {
  color: var(--gray-500);
  font-size: 18px;
}

.form-price strong {
  font-size: 30px;
  color: var(--blue);
  font-family: var(--font-head);
}

.form-price span {
  font-size: 13px;
  color: var(--gray-500);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--gray-50);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

.field-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.field-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.form-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  background: #e6f7ee;
  color: var(--success);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  margin-bottom: 4px;
  font-size: 28px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cta-banner .btn-primary {
  background: var(--navy);
}

.cta-banner .btn-primary:hover {
  background: var(--navy-700);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== Footer contact form (homepage) ===== */
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-legal-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
}

.footer-legal-inline a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-inline a:hover {
  color: var(--white);
}

.footer-contact-form .field {
  margin-bottom: 14px;
}

.footer-contact-form .field-checkbox,
.footer-contact-form .field-checkbox label {
  color: rgba(255, 255, 255, 0.55);
}

.mobile-menu .sub-link {
  padding-left: 20px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 600;
}

.mobile-menu .menu-label {
  padding: 12px 4px 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

/* ===== Highlight grid (4-point benefit summary) ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  padding: 26px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.highlight-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.highlight-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 13.5px;
  margin-bottom: 0;
}

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

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

/* ===== Resource grid (More page) ===== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.resource-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 4px;
  transition: transform 0.25s ease;
}

.resource-card:hover .icon {
  transform: scale(1.1) rotate(-4deg);
}

.resource-card h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.resource-card p {
  font-size: 14px;
  margin-bottom: 4px;
  flex: 1;
}

.resource-card .resource-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.resource-card:hover .resource-link {
  gap: 9px;
}

.resource-card .resource-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.resource-card.resource-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.resource-card.resource-card--featured h3,
.resource-card.resource-card--featured p {
  color: var(--white);
}

.resource-card.resource-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

.resource-card.resource-card--featured .icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sky);
}

.resource-card.resource-card--featured .resource-link {
  color: var(--sky);
}

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

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

/* ===== Legal pages ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: var(--gray-700);
  font-size: 15px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  display: block;
  margin-bottom: 1em;
}

.legal-content li {
  display: list-item;
  margin-bottom: 6px;
}

.footer-legal-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-legal-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-menu a {
  color: inherit;
  text-decoration: none;
}

.footer-legal-menu a:hover {
  text-decoration: underline;
}

/* Add separator between menu items */
.footer-legal-menu li:not(:last-child)::after {
  content: '|';
  margin-left: 10px;
  color: #ccc;
}


.story-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background-attachment: fixed;
}
.story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.story-section h2 {
    color: #fff;
    margin-bottom: 50px;
}
.story-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border-radius: 6px;
}

.story-images {
  flex: 0 0 320px;
  /* display: flex; */
}

.story-images .single-img {
  width: 100%;
}

.story-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.story-content {
  flex: 1;
  background: #fff;
  padding: 35px 40px;
  border-radius: 4px;
  color: #333;
  line-height: 1.7;
}

.story-content h3 {
  margin-top: 0;
}

.section-heading-highlight {
    margin-bottom: 36px;
    background: #188bf663;
    padding: 20px 25px;
    border-radius: 10px;
    /* border-left: 4px solid #000000; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-heading-highlight h2 {
  margin: 0;
  font-weight: 700;
}

.beloved-client-testimonials {
  background: #fdf6ee;
}

.client-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.client-video {
  position: relative;
  max-width: 100%;
}

.client-content {
  max-width: 480px;
}

.era-grid {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

.era-img {
  flex: 1 1 320px;
  min-width: 280px;
}

.era-content {
  flex: 1 1 400px;
  padding: 20px 24px;
}

.Benefits-wrapper {
  background: #0b9df71c;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cta-bottom-wrapper {
  padding-top: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefits-grid .box2 img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
 
.cd-digital-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
 
.cd-digital-text {
    background: #f1f1f1;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.cd-digital-text h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}
 
.cd-digital-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #333;
}
 
.cd-digital-visual {
    background: #188bf6;
    padding: 40px 40px;
    display: flex;
    align-items: center;
}
 
.cd-digital-visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.appointment-section {
    background-image: url(https://stage.cuselleration.com/contentday/wp-content/uploads/2026/09/tmpp3v_f0hh.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.appointment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000094;
    z-index: -1;
}
  .joincta-wrapper .cta-banner {
    justify-content: center;
    text-align: center;
  }
    .cta-banner h2 {
    font-size: 28px;
    line-height: 1.6;
  }
  .community-section {
    background-image: url('https://stage.cuselleration.com/contentday/wp-content/uploads/2026/08/community-photo-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff2e;
    padding-top: 35px;
}
.content-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}
.buttonBounce {
    margin-top: 50px;
    text-align: center;
}
.testimonial-video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.client-content.more-content {
    max-width: 600px;
}
.appointment-form iframe {
    width: 100%;
}
.arrow-sine {
    transform: rotate(90deg);
    position: absolute;
    top: 15px;
    right: -25px;
    /* transform-origin: 50% 45%; */
}
/* @media (max-width: 767px) {
    .testimonial-video {
        height: 250px;
    }
} */
/* overlay popup start */


/* overlay popup End */
@media (max-width: 991px) {
  .story-wrapper {
    flex-direction: column;
    padding: 20px;
  }

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

  .story-images {
    flex: none;
  }

  .story-images img {
    min-height: 300px;
  }
}

@media (max-width: 880px) {
  .client-grid {
    flex-direction: column;
  }

  .client-content {
    max-width: 100%;
  }
  .client-content.more-content {
    max-width: 100%;
}
}

@media (max-width: 799px) {
  .era-content {
    flex: 1 100%;
    padding: 0px 24px 20px 20px;
    te
  }
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.benefits-grid .box1, .benefits-grid .box3 {
    text-align: center !important;
}
}

@media (max-width: 768px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
.cd-digital-layout {
        grid-template-columns: 1fr;
    }
 .cd-digital-visual img {
    height: 100%;
}
    .cd-digital-text {
        padding: 40px 25px;
    }
 
    .cd-digital-text h2 {
        font-size: 25px;
    }
 
    .cd-digital-text p {
        font-size: 15px;
    }
 
    .cd-digital-visual {
        padding: 25px 25px;
    }
  .client-content {
    text-align: center;
  }

  .success-grid img {
    height: 100% !important;
  }

  .success-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .form-card {
    padding: 25px;
  }

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

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

  .footer-brand p {
    max-width: 100%;
  }

  .site-footer .reveal.in-view {
    text-align: center;
  }

  .footer-legal-inline {
    justify-content: center;
  }

  .joincta-wrapper .cta-banner {
    justify-content: center;
    text-align: center;
  }



  .story-content {
    padding: 30px 30px;
  }

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

  .cta-banner.industry-cta {
    padding: 50px 20px !important;
    border-radius: unset;
  }

  .cta-banner.industry-cta h2 {
    font-size: 26px !important;
    line-height: 1.4;
  }

  .cta-banner.industry-cta p {
    font-size: 16px !important;
    line-height: 1.4;
  }

  .cta-banner {
    padding: 45px 25px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-banner h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .addon-table td {
    padding: 12px 10px;
  }

  .page-hero {
    padding: 50px 0 50px;
  }

  .community-wrap {
    padding: 0px 0 50px;
  }

  .community-section--lg {
    padding: 56px 24px;
  }

  .community-stats {
    gap: 28px;
  }

  .community-divider {
    display: none;
  }

  section {
    padding: 50px 0;
  }

  .special-pricing-row {
    justify-content: center;
    gap: 20px;
  }

  .special-pricing-row .arrow-doodle {
    display: none;
  }

  .special-pricing-box {
    padding: 15px 25px;
    font-size: 16px;
  }

  .included-panel {
    padding: 30px;
  }

}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
    color: #46b450;
    text-align: center;
}