/* BladderCare Design System - Clean, Warm Health-Tech for Women 45+ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --bg-primary: #FDFDFC;
  --bg-secondary: #F4F7F6;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFEFD;
  --bg-tint-teal: #EAF5F4;
  --bg-tint-coral: #FDF1ED;
  --bg-tint-blue: #EEF3F8;

  --text-main: #162938;
  --text-muted: #4B5E6D;
  --text-light: #7E909A;
  --text-inverse: #FFFFFF;

  --brand-teal: #2C8A84;
  --brand-teal-hover: #226F6A;
  --brand-teal-light: #EAF5F4;
  --brand-coral: #E3735E;
  --brand-coral-hover: #CF614C;
  --brand-coral-light: #FDF1ED;
  --brand-navy: #162938;
  --brand-blue: #3A6EA5;

  --border-subtle: #E2ECE9;
  --border-card: #E8EFEB;
  --border-focus: #2C8A84;

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(22, 41, 56, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(22, 41, 56, 0.06), 0 4px 12px -2px rgba(22, 41, 56, 0.03);
  --shadow-lg: 0 20px 45px -10px rgba(22, 41, 56, 0.09), 0 8px 18px -4px rgba(22, 41, 56, 0.04);
  --shadow-float: 0 18px 36px -6px rgba(44, 138, 132, 0.15);

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
  --header-height: 84px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-main);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.3rem, 4vw + 1rem, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
}

h2 {
  font-size: clamp(1.85rem, 3vw + 0.5rem, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.4rem, 2vw + 0.3rem, 1.8rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-main);
}

a {
  color: var(--brand-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-teal-hover);
}

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

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

li {
  margin-bottom: 0.5rem;
}

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

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-bg-secondary {
  background-color: var(--bg-secondary);
}

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

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-teal {
  background-color: var(--brand-teal-light);
  color: var(--brand-teal);
  border: 1px solid rgba(44, 138, 132, 0.2);
}

.badge-coral {
  background-color: var(--brand-coral-light);
  color: var(--brand-coral);
  border: 1px solid rgba(227, 115, 94, 0.25);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(253, 253, 252, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 1280px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(44, 138, 132, 0.25);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo-text span.brand-name {
  color: var(--brand-navy);
  font-size: 1.45rem;
}

.brand-logo-text span.brand-tagline {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.25vw, 1.35rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  position: relative;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-teal);
}

.nav-link-partner {
  gap: 0.5rem;
  overflow: hidden;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(72, 203, 191, 0.4);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #173644 0%, #236F6C 54%, #2C8A84 100%);
  color: #FFFFFF;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 20px rgba(44, 138, 132, 0.2);
  isolation: isolate;
}

.nav-link-partner:hover {
  border-color: rgba(72, 203, 191, 0.75);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 11px 24px rgba(44, 138, 132, 0.28);
}

.nav-link-partner i,
.nav-link-partner span {
  position: relative;
  z-index: 1;
}

.nav-link-partner i {
  color: #FFD8CE;
  font-size: 0.82rem;
}

.nav-link-partner::after {
  content: '';
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -45%;
  width: 32%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(7px);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.nav-link-partner:hover::after {
  left: 118%;
}

.nav-link.active:not(.nav-link-partner)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
}

.header-cta-group .btn {
  padding: 0.72rem 1.25rem;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-coral) 0%, var(--brand-coral-hover) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(227, 115, 94, 0.25);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(227, 115, 94, 0.35);
}

.btn-teal {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-hover) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(44, 138, 132, 0.25);
}

.btn-teal:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(44, 138, 132, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.2rem;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: #000000;
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid #333333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-appstore:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-appstore i {
  font-size: 2rem;
  line-height: 1;
}

.btn-appstore-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.btn-appstore-text span.small {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: #D1D5DB;
  font-weight: 500;
}

.btn-appstore-text span.title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4.5rem 0 6rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, rgba(215, 243, 240, 0.5) 0%, rgba(253, 253, 252, 0) 60%),
              radial-gradient(circle at 15% 70%, rgba(255, 235, 227, 0.45) 0%, rgba(253, 253, 252, 0) 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  margin-bottom: 1.4rem;
}

.hero-title span.highlight-teal {
  color: var(--brand-teal);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.trust-item i {
  color: var(--brand-teal);
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-phone-img {
  width: 100%;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 40px rgba(22, 41, 56, 0.14));
  animation: float-slow 7s ease-in-out infinite;
}

/* Floating Badges in Hero */
.floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  animation: float-badge 6s ease-in-out infinite;
}

.badge-top-left {
  top: 15%;
  left: -8%;
  animation-delay: 0s;
}

.badge-bottom-right {
  bottom: 20%;
  right: -8%;
  animation-delay: -3s;
}

.floating-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-badge-icon.teal {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.floating-badge-icon.coral {
  background: var(--brand-coral-light);
  color: var(--brand-coral);
}

.floating-badge-text {
  display: flex;
  flex-direction: column;
}

.floating-badge-text span.title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.floating-badge-text span.sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-badge {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

/* Empathy / "Does this sound familiar?" Grid */
.familiar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.familiar-card {
  background: var(--bg-card);
  padding: 2.2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.familiar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.familiar-icon-wrap.teal {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.familiar-icon-wrap.coral {
  background: var(--brand-coral-light);
  color: var(--brand-coral);
}

.familiar-icon-wrap.blue {
  background: var(--bg-tint-blue);
  color: var(--brand-blue);
}

.familiar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.familiar-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Old Way vs Modern Way Comparison */
.comparison-container {
  background: linear-gradient(135deg, #FAF7F5 0%, #F4F8F7 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--border-card);
  margin: 3rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.comparison-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.comparison-box.highlight {
  border: 2px solid var(--brand-teal);
  box-shadow: var(--shadow-float);
  position: relative;
}

.comparison-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-box-header h4 {
  font-size: 1.35rem;
  font-weight: 700;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.comparison-list li i.fa-xmark {
  color: #D9534F;
  margin-top: 4px;
}

.comparison-list li i.fa-check {
  color: var(--brand-teal);
  margin-top: 4px;
}

/* Feature Showcase Rows */
.feature-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

.feature-showcase-row:nth-child(even) {
  direction: rtl;
}

.feature-showcase-row:nth-child(even) .feature-text-block {
  direction: ltr;
}

.feature-showcase-row:nth-child(even) .feature-image-block {
  direction: ltr;
}

.feature-showcase-row:last-child {
  margin-bottom: 0;
}

.feature-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  transition: transform var(--transition-smooth);
}

.feature-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-text-block h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-points-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}

.feature-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.feature-points-list li i {
  color: var(--brand-teal);
  font-size: 1.15rem;
  margin-top: 4px;
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-hover) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 6px 16px rgba(44, 138, 132, 0.3);
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Privacy Assurance Banner */
.privacy-banner {
  background: linear-gradient(135deg, #162938 0%, #1F3B50 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
  margin: 4rem 0;
}

.privacy-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.privacy-banner h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.privacy-banner p {
  color: #CFDAE3;
  font-size: 1.15rem;
  line-height: 1.65;
}

.privacy-guarantees {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.privacy-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-pill i {
  color: #48CBBF;
  font-size: 1.35rem;
}

.privacy-pill-text {
  display: flex;
  flex-direction: column;
}

.privacy-pill-text strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.privacy-pill-text span {
  color: #A4B8C7;
  font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--brand-teal);
  box-shadow: var(--shadow-float);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAF9 100%);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-coral);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(227, 115, 94, 0.3);
}

.pricing-plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  min-height: 48px;
  margin-bottom: 1.5rem;
}

.pricing-price-box {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-savings {
  display: inline-block;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  margin-top: 0.5rem;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  color: var(--text-main);
}

.pricing-features-list li i {
  color: var(--brand-teal);
  margin-top: 4px;
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  margin: 3.5rem 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 1.05rem;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-card);
}

.comparison-table th {
  background: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.15rem;
}

.comparison-table th.col-highlight {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.comparison-table td.col-highlight {
  background: rgba(235, 246, 245, 0.4);
  font-weight: 600;
}

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

/* Articles Hub & Cards */
.articles-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brand-teal);
  color: #ffffff;
  border-color: var(--brand-teal);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.article-card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.article-card:hover .article-card-thumb img {
  transform: scale(1.03);
}

.article-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-light);
}

.article-card-category {
  font-weight: 700;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.article-card-title a {
  color: var(--text-main);
}

.article-card-title a:hover {
  color: var(--brand-teal);
}

.article-card-excerpt {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-card);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Article Template Inner Styles */
.article-header {
  padding: 3rem 0 2rem 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--brand-teal);
}

.article-meta-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-takeaways-box {
  background: var(--brand-teal-light);
  border-left: 4px solid var(--brand-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem;
  margin: 2.5rem 0;
}

.key-takeaways-box h3 {
  color: var(--brand-navy);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.key-takeaways-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.key-takeaways-box li {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.article-body {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-main);
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 3rem 0 1.2rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-card);
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem 0;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-main);
}

.article-checklist-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}

.article-checklist-box h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-teal);
}

.article-app-bridge {
  background: linear-gradient(135deg, #F5FAF9 0%, #FDF4F0 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3.5rem 0;
  border: 1px solid var(--border-subtle);
}

.article-app-bridge h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-sources-box {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* FAQ Accordions */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--brand-teal);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--brand-teal);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--brand-teal);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.faq-answer-inner {
  padding: 0 1.75rem 1.75rem 1.75rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #162938 0%, #203E54 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 5rem;
}

.final-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  margin-bottom: 1.2rem;
}

.final-cta p {
  color: #D1DEE8;
  font-size: 1.25rem;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

/* Forms (Contact, Support) */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(44, 138, 132, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
.site-footer {
  background: #11202D;
  color: #A2B4C2;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .brand-logo-text span.brand-name {
  color: #ffffff;
}

.footer-brand p {
  color: #98ABB9;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #98ABB9;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-company-info strong {
  color: #CFDAE3;
}

.footer-company-info a {
  color: #A2B4C2;
}

.footer-company-info a:hover {
  color: #48CBBF;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #A2B4C2;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #48CBBF;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.footer-disclaimer-box p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #8C9FA7;
  margin: 0;
}

.footer-disclaimer-box strong {
  color: #CFDAE3;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: #7B8E9C;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 440px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  z-index: 9999;
  display: none;
  animation: slide-up 0.4s ease-out;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
  }
  .feature-showcase-row,
  .feature-showcase-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 74px;
  }
  body {
    font-size: 1.05rem;
  }
  .main-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .privacy-banner-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .floating-badge {
    display: none;
  }
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 100%;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(22, 41, 56, 0.5);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.open {
  display: block;
  opacity: 1;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--brand-teal);
}

.mobile-nav-links .nav-link-partner {
  display: inline-flex;
  width: fit-content;
  padding: 0.65rem 1rem;
  color: #FFFFFF;
  font-size: 1.05rem;
}


/* Real App Screenshots & Brand Logo Integration */
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(44, 138, 132, 0.2);
  flex-shrink: 0;
}

.hero-phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 100%;
  max-width: 320px;
  border-radius: 44px;
  background: #1A202C;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(22, 41, 56, 0.25), 0 0 0 3px #E2E8F0;
  position: relative;
  transition: transform var(--transition-smooth);
}

.phone-frame:hover {
  transform: translateY(-4px);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 34px;
  display: block;
  background: #F8FAFC;
}

.phone-frame-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.phone-frame-sm {
  max-width: 240px;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 15px 35px -10px rgba(22, 41, 56, 0.15), 0 0 0 2px #E2E8F0;
}

.phone-frame-sm img {
  border-radius: 28px;
}

.feature-screenshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.feature-screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hero-dual-phones {
  position: relative;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.hero-phone-primary {
  z-index: 2;
  animation: float-slow 7s ease-in-out infinite;
}

.hero-phone-secondary {
  z-index: 1;
  margin-top: 2rem;
  animation: float-reverse 7s ease-in-out infinite;
}
