/* ============================================
   VECTOR TENSOR IP — Patent Practice Website
   Color: Dark navy #0f172a + Gold #d4a843
   Desktop-primary, refined & authoritative
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --accent: #d4a843;
  --accent-hover: #e0b84f;
  --accent-dark: #a6832e;
  --accent-subtle: rgba(212, 168, 67, 0.1);
  --border-color: #334155;
  --font-stack: 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
  --max-width: 1100px;
  --header-height: 72px;

  /* Mavacy-inspired additions for new pages */
  --bg-light: #f8fafc;
  --bg-white: #fff;
  --card-bg-light: #fff;
  --linkedin-blue: #0077b5;
  --orange-badge: #fe8423;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --shadow-card: 8px 8px 30px 0 rgba(0, 0, 0, 0.1);
  --shadow-card-hover: 8px 8px 40px 0 rgba(0, 0, 0, 0.15);
  --radius-card: 8px;
  --radius-button-round: 45px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-stack);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-hover);
}

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

ul {
  list-style: none;
}

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

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.logo svg {
  width: 28px;
  height: 28px;
}

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

.logo .logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-cta {
  background: transparent;
  color: var(--accent) !important;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: all 0.2s !important;
  font-size: 0.875rem;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

/* --- Hero Section --- */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.hero-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-stack);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* --- Section Base --- */
.section {
  padding: 100px 24px;
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.service-card .card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Industries Section --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.industry-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

.industry-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Credentials Bar --- */
.credentials-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.credential-card {
  text-align: center;
  padding: 32px 20px;
}

.credential-card .cred-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.credential-card .cred-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Bio Section --- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.bio-photo {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.bio-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.bio-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.bio-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-subtle);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.bio-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

/* --- Process / How It Works --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-color);
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--text-primary);
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-disclaimer {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* --- Inner Page Hero --- */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-photo {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-text ul {
  margin-bottom: 16px;
}

.about-text li {
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}

.about-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 36px 28px;
}

.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-stack);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* --- Services Detail Page --- */
.services-detail {
  max-width: 800px;
  margin: 0 auto;
}

.services-detail h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}

.services-detail h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--accent);
}

.services-detail p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.services-detail ul {
  margin-bottom: 16px;
}

.services-detail li {
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
}

.services-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Design --- */

@media (width >= 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .bio-grid {
    grid-template-columns: 280px 1fr;
  }

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

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

  .about-grid {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }
}

@media (width >= 960px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .bio-grid {
    grid-template-columns: 320px 1fr;
    gap: 60px;
  }

  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width <= 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }

  .hero {
    padding: 120px 20px 60px;
  }

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

  .section {
    padding: 60px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   MAVACY-INSPIRED COMPONENTS
   Light theme cards for Team, Resources, Payment pages
   ============================================ */

/* --- Light Background Sections --- */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--text-dark);
}

.section-light p,
.section-light li {
  color: var(--text-gray);
}

/* --- Light Card Component --- */
.card-light {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.card-light:hover {
  box-shadow: var(--shadow-card-hover);
}

/* --- Team Page Styles --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-card {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-info .team-title {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.team-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--text-gray);
  flex-shrink: 0;
}

.team-contact-item a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-contact-item a:hover {
  color: var(--linkedin-blue);
}

/* --- LinkedIn Button --- */
.linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--linkedin-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-button-round);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.linkedin-button:hover {
  background-color: #005a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
  color: white;
}

.linkedin-button svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* --- Team Bio Section --- */
.team-bio {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  max-width: var(--max-width);
  margin: 3rem auto 0;
}

.team-bio h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.team-bio h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.team-bio p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.team-bio ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.team-bio li {
  color: var(--text-gray);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.team-bio li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* --- Blog/Resources Page Styles --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-card {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-featured-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  background-color: var(--orange-badge);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-gray);
  font-size: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date svg {
  width: 16px;
  height: 16px;
  fill: var(--text-gray);
}

.blog-read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.blog-read-more:hover {
  color: var(--accent-hover);
}

/* --- Podcast Card (Coming Soon) --- */
.podcast-placeholder {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.podcast-placeholder h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.podcast-placeholder p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Payment Page Styles --- */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.payment-card {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  text-align: center;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

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

.payment-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-subtle);
  border-radius: 50%;
}

.payment-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.payment-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.payment-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.payment-card .btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg-primary);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.payment-card .btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

/* --- Payment FAQ --- */
.payment-faq {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.payment-faq h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* --- Article Page Styles (for blog posts) --- */
.article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.article-category {
  display: inline-block;
  background-color: var(--orange-badge);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

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

.article-meta-item svg {
  width: 18px;
  height: 18px;
  fill: var(--text-gray);
}

.article-content {
  background-color: var(--card-bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.article-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.article-content a:hover {
  color: var(--accent-hover);
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-gray);
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  margin: 2rem 0;
}

/* --- Author Bio Callout --- */
.author-bio {
  background-color: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.author-info p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Responsive Adjustments for Light Components --- */
@media (width <= 768px) {
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-content {
    padding: 2rem 1.5rem;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .team-bio {
    padding: 1.5rem;
  }
}
