/* ---------------------------------------------------
   ROOT VARIABLES — Talkspace-style, ocean-sunset calm
--------------------------------------------------- */
:root {
  --font-sans-main: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Brand palette */
  --color-deep-teal: #0f4c5c;
  --color-ocean: #2a9d8f;
  --color-sage: #9caf88;
  --color-terracotta: #c97f63;
  --color-cream: #f7f5f1;
  --color-blush: #e0ddd3;
  --color-soft-gray: #d3d6d9;

  --color-bg: #f4f6f8;
  --color-surface: #ffffff;
  --color-text: #132226;
  --color-muted: #6a757d;

  --color-accent: var(--color-ocean);
  --color-accent-soft: #d5ece9;

  --radius-card: 18px;
  --shadow-soft: 0 14px 36px rgba(5, 33, 40, 0.12);

  --nav-height: 56px;
}
/* ---------------------------------------------------
   FAQ GRID TILES
--------------------------------------------------- */
.faq-section {
  background: #f4f6f8;
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.faq-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
}

.faq-card h3 {
  font-size: 17px;
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
}

.faq-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------------------------------------------------
   GLOBAL RESET
--------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body.lg-body {
  background: #f4f6f8;
  font-family: var(--font-sans-main);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-card);
}

ul {
  list-style: none;
}

.section {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 5rem;
  }
}

/* ---------------------------------------------------
   NAVBAR (Talkspace style)
--------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247, 245, 241, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-ocean), var(--color-sage));
  color: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 600;
}

.nav-logo-tagline {
  font-size: 11px;
  color: var(--color-muted);
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 14px;
  color: #54656c;
}

.nav-links a:hover {
  color: var(--color-deep-teal);
}

.nav-cta {
  display: none;
  padding: 7px 18px;
  font-size: 14px;
  background: var(--color-deep-teal);
  color: #fdfdfd;
  border-radius: 999px;
}

/* Mobile toggle */
.nav-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #1f3136;
  border-radius: 999px;
}

/* Desktop nav */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-block;
  }
  .nav-toggle {
    display: none;
  }
}

/* ---------------------------------------------------
   NAV ACTIONS – Match Hero Buttons
--------------------------------------------------- */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Base style for nav buttons */
.nav-actions a,
.nav-actions button {
  font-family: var(--font-sans-main);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Login / My Portal / Logout hover – soft ocean */
.nav-login-btn:hover {
  background: var(--color-accent-soft); /* light ocean tint */
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/* Main CTA = hero primary button (matches .btn-primary) */
.nav-cta {
  background: linear-gradient(135deg, var(--color-ocean), var(--color-sage));
  color: #fdfdfd;
  box-shadow: 0 8px 20px rgba(5, 74, 90, 0.4);
  border: none;
}

/* Main CTA hover – deeper ocean gradient */
.nav-cta:hover {
  background: linear-gradient(135deg, var(--color-deep-teal), var(--color-ocean));
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(5, 74, 90, 0.55);
}
/* Desktop only: keep nav-actions visible; mobile still uses hamburger */
@media (max-width: 899px) {
  .nav-actions {
    gap: 0.5rem;
  }
}

/* ---------------------------------------------------
   HERO (Talkspace-style: split layout)
--------------------------------------------------- */
.hero {
  background: linear-gradient(
    to bottom,
    #e3eef3 0%,
    #f1f5f7 35%,
    #f3f5f7 100%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-soft-gray);
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  color: var(--color-deep-teal);
}

.hero-secondary-tagline {
  font-size: 16px;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-note {
  font-size: 14px;
  color: var(--color-muted);
}

/* Wellness badge */
.wellness-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(9, 77, 92, 0.3);
  background: rgba(213, 236, 233, 0.6);
  color: var(--color-deep-teal);
}

.hero-visual img {
  border-radius: var(--radius-card);
  box-shadow: 0 24px 50px rgba(12, 55, 70, 0.25);
  max-width: 420px;
  margin: 0 auto;
}

/* Desktop hero */
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */
.btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-ocean), var(--color-sage));
  color: #fdfdfd;
  box-shadow: 0 8px 20px rgba(5, 74, 90, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(5, 74, 90, 0.5);
}

.btn-secondary {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(201, 127, 99, 0.35);
  color: var(--color-terracotta);
}

.btn-ghost:hover {
  background: rgba(244, 223, 216, 0.9);
}

.btn-full {
  width: 100%;
}

/* ---------------------------------------------------
   SECTION HEADINGS
--------------------------------------------------- */
.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: 28px;
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
}

.section-heading p {
  font-size: 16px;
  color: var(--color-muted);
}

/* ---------------------------------------------------
   HOW IT WORKS
--------------------------------------------------- */
.how-it-works {
  background: #f4f6f8;
}

.steps-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.step-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
}

.step-card p {
  font-size: 14px;
  color: var(--color-muted);
}

@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------------------------------------------------
   WHY SECTION (benefits grid)
--------------------------------------------------- */
.why {
  background: #ffffff;
}

.benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.benefit-card {
  background: #f8fafb;
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(180, 190, 195, 0.35);
}

.benefit-card h3 {
  font-size: 17px;
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
}

.benefit-card p {
  font-size: 14px;
  color: var(--color-muted);
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------------------------------------------------
   FEATURES (Talkspace-style alternating rows)
--------------------------------------------------- */
.features {
  background: #f4f6f8;
}

.feature-row {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-text {
  flex: 1;
}

.feature-media {
  flex: 1;
}

.feature-media img {
  max-width: 360px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.feature-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.feature-text h2 {
  font-size: 24px;
  margin-bottom: 0.75rem;
  color: var(--color-deep-teal);
}

.feature-text p {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.feature-list li {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

@media (min-width: 900px) {
  .feature-row {
    flex-direction: row;
    align-items: center;
  }

  .feature-row.reverse {
    flex-direction: row-reverse;
  }

  .feature-media img {
    max-width: 420px;
  }
}

/* ---------------------------------------------------
   PLANS (Talkspace-style cards)
--------------------------------------------------- */
.plans {
  background: #ffffff;
}

.plans-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.plan-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(182, 179, 198, 0.18);
  position: relative;
}

.plan-card h3 {
  font-size: 18px;
  margin-bottom: 0.25rem;
  color: var(--color-deep-teal);
}

.plan-price {
  font-size: 22px;
  font-weight: 700;
  margin: 0.25rem 0 0.75rem;
  color: var(--color-ocean);
}

.plan-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.plan-label {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #fbe7df;
  color: var(--color-terracotta);
  padding: 4px 8px;
  border-radius: 999px;
}

.plan-featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 18px 40px rgba(10, 76, 94, 0.22);
}

.plans-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  max-width: 700px;
  margin: 2rem auto 0;
}

@media (min-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------------------------------------
   TESTIMONIAL
--------------------------------------------------- */
.testimonial {
  background: #f4f6f8;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-deep-teal);
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-size: 14px;
  color: var(--color-muted);
}

/* ---------------------------------------------------
   CONTACT
--------------------------------------------------- */
.contact {
  background: linear-gradient(
    to bottom,
    #e2edf2 0%,
    #f2f5f7 40%,
    #f3f5f7 100%
  );
}


.contact-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-size: 28px;
  margin-bottom: 1rem;
  color: var(--color-deep-teal);
}

.contact-inner p {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.contact-inner a {
  color: var(--color-accent);
}

.contact-img {
  margin-top: 2rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 13px;
  background: #0e3540;
  color: #d7e5ea;
}

.site-footer span {
  color: #ffffff;
}

.footer-links a {
  color: #d7e5ea;
}

.footer-links a:hover {
  color: var(--color-blush);
}

.footer-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.75rem;
  color: #b7d2dc;
}
/* ---------------------------------------------------
   TESTIMONIAL CAROUSEL — CLEAN FADE VERSION
--------------------------------------------------- */
.testimonial-carousel {
  background: #f4f6f8;
  text-align: center;
  padding: 4rem 1.5rem;
}

.carousel-container {
  max-width: 750px;
  margin: 0 auto;
}

.carousel-heading {
  font-size: 26px;
  margin-bottom: 1.5rem;
  color: var(--color-deep-teal);
}

/* Wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: 2rem;
  background: linear-gradient(
    180deg,
    #f9e8ef 0%,
    #f1f8fb 50%,
    #f4f6f8 100%
  );
  box-shadow: 0 12px 30px rgba(10,50,60,0.10);
  border: 1px solid rgba(0,0,0,0.03);
}

/* Slides */
.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 1.5rem;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

/* Stars */
.stars {
  font-size: 22px;
  color: #ffcc66;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Quote */
.carousel-slide blockquote {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-deep-teal);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.carousel-name {
  font-size: 14px;
  color: var(--color-muted);
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.carousel-controls button {
  background: var(--color-accent-soft);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--color-accent);
  cursor: pointer;
  transition: 0.3s;
}

.carousel-controls button:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Dots */
.carousel-dots {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: #cfd6d9;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dot.active {
  background: var(--color-accent);
}
/* ---------------------------------------------------
   AUTH PAGES — Matching Homepage Style
--------------------------------------------------- */

.auth-section {
  padding-top: 3rem;
}

.auth-container {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.auth-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.auth-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.auth-brand-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-inline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.auth-card {
  background: linear-gradient(
    180deg,
    #f9e8ef 0%,
    #f1f8fb 50%,
    #f4f6f8 100%
  );
  padding: 2.5rem 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-card h2 {
  font-size: 26px;
  color: var(--color-deep-teal);
  margin-bottom: 0.3rem;
}

.auth-sub {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.auth-input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d3d7d9;
  background: #ffffff;
  margin-bottom: 1rem;
  font-size: 15px;
}

.auth-alt {
  margin-top: 1.25rem;
  font-size: 14px;
  color: var(--color-muted);
}

.auth-alt a {
  color: var(--color-accent);
  font-weight: 600;
}

.auth-status {
  margin-top: 0.75rem;
  font-size: 14px;
  color: var(--color-terracotta);
}
/* ---------------------------------------------------
   PORTAL PAGE — Mixed Style
--------------------------------------------------- */

.portal-hero {
  background: linear-gradient(
    180deg,
    #f9e8ef 0%,
    #f1f8fb 50%,
    #f4f6f8 100%
  );
  padding: 4rem 1.5rem;
  text-align: center;
}

.portal-hero-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.portal-hero h1 {
  font-size: 30px;
  color: var(--color-deep-teal);
  margin-bottom: 0.4rem;
}

.portal-hero p {
  font-size: 16px;
  color: var(--color-muted);
}

.portal-section {
  padding: 3.5rem 1.5rem;
}

.portal-grid {
  max-width: 900px;
  margin: 0 auto;
  gap: 1.75rem;
  display: grid;
}

@media (min-width: 768px) {
  .portal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portal-tile {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.3s ease;
}

.portal-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,55,70,0.18);
}

.portal-tile-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-soft);
}

.portal-tile h3 {
  font-size: 18px;
  margin-bottom: 0.4rem;
  color: var(--color-deep-teal);
}

.portal-tile p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.tile-link {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
}
/* ---------------------------------------------------
   PORTAL HERO LOGO FIX
--------------------------------------------------- */

.auth-logo-combo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

.auth-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.auth-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.auth-logo-main {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-deep-teal);
}

.auth-logo-sub {
  font-size: 12px;
  color: var(--color-muted);
}
.auth-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
body.portal-body,
body.auth-body {
  background: #f4f6f8;
  font-family: var(--font-sans-main);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}
.portal-body {
  font-family: var(--font-sans-main) !important;
}
.user-greeting {
  margin-top: 0.8rem;
  font-size: 17px;
  color: var(--color-deep-teal);
  font-weight: 500;
  opacity: 0.9;
}
/* ===================== PROFILE PAGE ===================== */

.profile-hero {
  background: linear-gradient(
    180deg,
    #f9e8ef 0%,
    #f1f8fb 50%,
    #f4f6f8 100%
  );
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.profile-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-ocean), var(--color-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.profile-avatar span {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.profile-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.profile-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.profile-hero h1 {
  font-size: 26px;
  color: var(--color-deep-teal);
}

.profile-greeting {
  font-size: 15px;
  color: var(--color-terracotta);
}

/* Profile main section */
.profile-section {
  background: #f4f6f8;
}

.profile-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.profile-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.03);
}

.profile-card.soft {
  background: #f8fafb;
}

.profile-card h2 {
  font-size: 20px;
  color: var(--color-deep-teal);
  margin-bottom: 1rem;
}

.profile-info-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .profile-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.profile-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.profile-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.profile-value {
  font-size: 15px;
  color: var(--color-deep-teal);
}

.profile-status-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.profile-card-text {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.profile-card-text.subtle {
  font-size: 13px;
  opacity: 0.9;
}

.profile-btn-space {
  margin-top: 1rem;
}
.plans-section {
  background: #ffffff;
}

.plans-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(182, 179, 198, 0.18);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(5, 33, 40, 0.2);
}

.plan-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-price {
  font-size: 22px;
  font-weight: 700;
  margin: .4rem 0 1rem;
  color: var(--color-ocean);
}

.plan-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.portal-list {
  margin: 0.75rem 0 0.5rem;
  padding-left: 1.2rem;
  font-size: 13px;
  color: var(--color-muted);
}

.portal-list li {
  margin-bottom: 0.25rem;
}
.portal-list {
  margin: 0.75rem 0 0.5rem;
  padding-left: 1.2rem;
  font-size: 13px;
  color: var(--color-muted);
}

.portal-list li {
  margin-bottom: 0.25rem;
}
