@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@700;800&family=Yatra+One&display=swap');

:root {
  --bg-primary: #0A0F1D;
  --bg-secondary: #111827;
  --bg-card: rgba(26, 36, 57, 0.65);
  --bg-card-hover: rgba(33, 46, 73, 0.85);
  --accent-gold: #D98A29;
  --accent-gold-hover: #F59E0B;
  --accent-gold-rgb: 217, 138, 41;
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border-color: rgba(217, 138, 41, 0.15);
  --border-hover: rgba(217, 138, 41, 0.4);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 15, 29, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(10, 15, 29, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Plus Jakarta Sans', var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo-text {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
}

.setu-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-left: 0.25rem;
  line-height: 1;
  transform: translateY(5px);
}

.setu-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.35rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: lowercase;
  font-style: italic;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.75;
}

.setu-text {
  color: var(--accent-gold);
  font-family: 'Yatra One', cursive;
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: -0.01em;
  line-height: 0.95;
  position: relative;
  padding-top: 4px;
}

.setu-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  right: -8px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 1px;
  box-shadow: 0 0 3px rgba(217, 138, 41, 0.3);
}

.logo-icon {
  width: 28px;
  height: 25.5px;
  display: inline-block;
  flex-shrink: 0;
  transform: translateY(2px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  background-color: var(--accent-gold);
  color: #0A0F1D;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.nav-links a.nav-cta:hover {
  background-color: var(--accent-gold-hover);
  color: #0A0F1D;
  box-shadow: 0 0 15px rgba(217, 138, 41, 0.4);
  transform: translateY(-2px);
}

.nav-links a.nav-cta::after {
  display: none;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background: radial-gradient(circle at 70% 30%, rgba(217, 138, 41, 0.08) 0%, transparent 60%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, #FFF 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-pill {
  background: rgba(217, 138, 41, 0.07);
  border: 1px solid rgba(217, 138, 41, 0.2);
  color: var(--text-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.hero-pill:hover {
  border-color: var(--accent-gold);
  background: rgba(217, 138, 41, 0.15);
  transform: translateY(-2px);
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #0A0F1D;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 8px 24px rgba(217, 138, 41, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(217, 138, 41, 0.05);
  transform: translateY(-2px);
}

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

.bridge-graphic {
  width: 100%;
  max-width: 450px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 30px rgba(217, 138, 41, 0.15));
  animation: float 6s ease-in-out infinite;
}

/* --- Section Layouts --- */
section, .section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 90px;
}

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

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

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

.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- Problem / Solution --- */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.problem-side, .solution-side {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.problem-side {
  background: rgba(239, 68, 68, 0.02);
  border-color: rgba(239, 68, 68, 0.1);
}

.solution-side {
  background: rgba(16, 185, 129, 0.02);
  border-color: rgba(16, 185, 129, 0.1);
}

.side-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.problem-side .side-title {
  color: #EF4444;
}

.solution-side .side-title {
  color: #10B981;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ps-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.ps-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.ps-icon-wrapper {
  background: rgba(217, 138, 41, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(217, 138, 41, 0.2);
}

.problem-side .ps-icon-wrapper {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.problem-side .ps-icon-wrapper svg {
  stroke: #EF4444;
}

.solution-side .ps-icon-wrapper {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.solution-side .ps-icon-wrapper svg {
  stroke: #10B981;
}

.ps-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
  stroke-width: 2;
  fill: none;
}

.ps-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.ps-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Result box */
.result-banner {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(217, 138, 41, 0.1) 0%, rgba(10, 15, 29, 0.6) 100%);
  border: 1px solid rgba(217, 138, 41, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.result-banner strong {
  color: var(--accent-gold);
}

/* --- Benefits Swapper --- */
.benefits-wrapper {
  margin-top: 2rem;
}

.benefits-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

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

.tab-btn.active {
  color: var(--accent-gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
}

.benefits-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.benefits-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.benefits-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.benefit-card .ps-icon-wrapper {
  background: rgba(217, 138, 41, 0.1);
  border-color: rgba(217, 138, 41, 0.2);
}

.benefit-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.benefits-visual {
  background: linear-gradient(135deg, rgba(217, 138, 41, 0.1) 0%, rgba(27, 38, 59, 0.4) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefits-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(217, 138, 41, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.visual-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.visual-sub {
  font-size: 0.95rem;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.visual-decorator {
  position: absolute;
  bottom: 0;
  width: 120%;
  height: auto;
  opacity: 0.15;
  stroke: var(--accent-gold);
  stroke-width: 1.5;
  fill: none;
}

/* --- Interactive Roadmap --- */
.roadmap-container {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, rgba(217, 138, 41, 0.1), var(--accent-gold) 20%, var(--accent-gold) 80%, rgba(217, 138, 41, 0.1));
  transform: translateX(-50%);
}

.roadmap-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.roadmap-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  transition: var(--transition-smooth);
}

.roadmap-content:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.roadmap-step:nth-child(even) .roadmap-content {
  grid-column: 2;
}

.roadmap-step:nth-child(odd) .roadmap-content {
  grid-column: 1;
  text-align: right;
}

.roadmap-badge {
  display: inline-block;
  background: rgba(217, 138, 41, 0.1);
  color: var(--accent-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(217, 138, 41, 0.2);
}

.roadmap-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.roadmap-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roadmap-step:nth-child(odd) .roadmap-content ul {
  align-items: flex-end;
}

.roadmap-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.roadmap-step:nth-child(even) .roadmap-content li {
  padding-left: 1.5rem;
}

.roadmap-step:nth-child(even) .roadmap-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.roadmap-step:nth-child(odd) .roadmap-content li {
  padding-right: 1.5rem;
  padding-left: 0;
}

.roadmap-step:nth-child(odd) .roadmap-content li::after {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.roadmap-node {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--bg-primary);
  border: 4px solid var(--accent-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--accent-gold);
  z-index: 10;
  box-shadow: 0 0 15px rgba(217, 138, 41, 0.3);
}

/* --- Why We Win Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 138, 41, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(217, 138, 41, 0.2);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
  stroke-width: 2;
  fill: none;
}

.stat-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Pricing Section & Interactive Calculator --- */
.pricing-section-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* Calculator Grid Styling */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.calc-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calc-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-option-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.calc-option-btn.active {
  border-color: var(--accent-gold);
  background: rgba(217, 138, 41, 0.1);
  color: var(--text-primary);
}

.calc-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.calc-checkbox-label:hover {
  color: var(--text-primary);
}

.calc-checkbox-label input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.calc-checkbox-label input:checked {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.calc-checkbox-label input:checked::after {
  content: '✓';
  color: #0A0F1D;
  font-size: 0.8rem;
  font-weight: 900;
}

.calc-result {
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid rgba(217, 138, 41, 0.2);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.calc-result-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.calc-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.calc-features-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.calc-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.calc-features-list li::before {
  content: '✦';
  color: var(--accent-gold);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem 2.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.pricing-card.popular {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, rgba(217, 138, 41, 0.1) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--accent-gold);
  color: #0A0F1D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  min-height: 50px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.pricing-card .btn-primary, .pricing-card .btn-secondary {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-item .ps-icon-wrapper {
  background: rgba(217, 138, 41, 0.1);
  border-color: rgba(217, 138, 41, 0.2);
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-link {
  color: inherit;
  transition: var(--transition-smooth);
}

.contact-link:hover {
  color: var(--accent-gold);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(217, 138, 41, 0.2);
}

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

select.form-input {
  background-color: #111827;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(217, 138, 41)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
}

.contact-form-card button[type="submit"] {
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

/* Form success overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: #10B981;
  stroke-width: 2.5;
  fill: none;
}

.form-success-overlay h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #10B981;
}

.form-success-overlay p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* --- Footer --- */
footer {
  background-color: #050810;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: rgba(217, 138, 41, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom p:last-child {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Floating bridge line details (visual eye candy) --- */
.svg-bridge-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  stroke: var(--accent-gold);
  stroke-width: 2;
  fill: none;
}

/* --- Animations --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
/* --- Industry Experts Section --- */
/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
}

.experts-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.experts-track-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Edge */
}

.experts-grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 0;
}

.expert-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 15, 29, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--accent-gold);
  color: #0A0F1D;
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(217, 138, 41, 0.4);
}

.carousel-btn.prev {
  left: -2.5rem;
}

.carousel-btn.next {
  right: -2.5rem;
}

@media (max-width: 1280px) {
  .carousel-btn.prev {
    left: -1rem;
  }
  .carousel-btn.next {
    right: -1rem;
  }
}

.expert-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.expert-avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.expert-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.expert-title {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expert-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.expert-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
}

.expert-skill-tag {
  background: rgba(217, 138, 41, 0.07);
  border: 1px solid rgba(217, 138, 41, 0.15);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.expert-skill-tag:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

/* --- Authentication Modal Styles --- */
.nav-login-btn {
  color: var(--text-secondary) !important;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-login-btn:hover {
  color: var(--accent-gold) !important;
}

.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.auth-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 90%;
  max-width: 440px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(217, 138, 41, 0.05);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: auto;
}

.auth-overlay.active .auth-modal {
  transform: scale(1);
}

.auth-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-close-btn:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.auth-close-btn svg {
  width: 18px;
  height: 18px;
}

.auth-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.auth-logo,
.logo.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 auto 1rem;
  width: fit-content;
  text-align: center;
}

.auth-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 0.35rem 0;
  width: 100%;
}

.auth-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 auto;
  line-height: 1.4;
  width: 100%;
  max-width: 340px;
}

.auth-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.btn-full {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0.85rem 1.5rem;
}

/* Setu tagline uses global classes defined above */

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 4px;
}

.auth-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.auth-tab-btn.active {
  background: var(--accent-gold);
  color: #0A0F1D;
}

.auth-role-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: transparent;
  padding: 0;
}

.auth-role-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-role-btn::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text-secondary);
  display: inline-block;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.auth-role-btn.active {
  background: rgba(217, 138, 41, 0.08);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.auth-role-btn.active::before {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.auth-portal-indicator {
  text-align: center;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  width: 100%;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-pass-link {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-decoration: none;
}

.forgot-pass-link:hover {
  text-decoration: underline;
}

.auth-remember-row {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-gold);
}

.auth-submit-btn {
  width: 100%;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.auth-divider span {
  background: #0D1324; /* matches main bg */
  padding: 0 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.social-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-auth-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-auth-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-auth-btn svg {
  width: 18px;
  height: 18px;
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s ease-in-out infinite;
}

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

/* --- AI Agents Section --- */
.ai-agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ai-agent-card {
  background: linear-gradient(135deg, rgba(217, 138, 41, 0.05) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  align-items: center;
}

.ai-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(217, 138, 41, 0.08);
  border: 1.5px solid rgba(217, 138, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
  box-shadow: 0 0 15px rgba(217, 138, 41, 0.05);
}

.ai-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.ai-agent-card:hover .ai-icon-wrapper {
  background: var(--accent-gold);
  color: #0A0F1D;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(217, 138, 41, 0.4);
  transform: scale(1.05);
}

.ai-agent-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(217, 138, 41, 0.15);
}

.ai-agent-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(217, 138, 41, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.ai-agent-card:hover::before {
  opacity: 1;
}

.ai-badge {
  background: rgba(217, 138, 41, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(217, 138, 41, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.ai-agent-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.ai-agent-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ai-glow-dot {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 5px var(--accent-gold); }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-gold); }
  100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 5px var(--accent-gold); }
}

.ai-btn-disabled {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: not-allowed;
  margin-top: auto; /* Push to the very bottom of the card */
  transition: var(--transition-smooth);
  animation: border-pulse-glow 3s infinite ease-in-out;
}

@keyframes border-pulse-glow {
  0% {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 rgba(217, 138, 41, 0);
  }
  50% {
    border-color: rgba(217, 138, 41, 0.55);
    box-shadow: 0 0 10px rgba(217, 138, 41, 0.2);
    color: var(--text-primary);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 rgba(217, 138, 41, 0);
  }
}

.ai-agent-card:hover .ai-btn-disabled {
  border-color: rgba(217, 138, 41, 0.3);
  color: var(--accent-gold);
  background: rgba(217, 138, 41, 0.04);
}

@media (max-width: 1150px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }

  .navbar {
    position: relative;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: -2rem;
    right: -2rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 100;
  }

  .expert-card {
    flex: 0 0 calc(50% - 1rem);
  }

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

  .hero h1 {
    font-size: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    grid-column: span 2;
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
    scroll-margin-top: 80px;
  }

  .benefits-tabs {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 0.5rem !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
  }

  .benefits-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.95rem !important;
    padding: 0.5rem 1rem !important;
  }

  .tab-btn.active::after {
    bottom: 0px !important;
  }

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

  .hero .container {
    padding: 0 1.25rem !important;
  }

  .hero h1 {
    font-size: 2.25rem !important;
    line-height: 1.25 !important;
  }

  .auth-modal {
    padding: 2rem 1.25rem 1.75rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problem-side, .solution-side {
    padding: 1.25rem;
  }

  .ps-card, .benefit-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .result-banner {
    grid-column: span 1;
    padding: 1.25rem;
    margin-top: 1rem;
  }

  .benefits-content.active {
    grid-template-columns: 1fr;
  }

  .roadmap-line {
    left: 20px;
  }

  .roadmap-node {
    left: 20px;
  }

  .roadmap-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .roadmap-step:nth-child(even) .roadmap-content,
  .roadmap-step:nth-child(odd) .roadmap-content {
    grid-column: 1;
    text-align: left;
    margin-left: 45px;
  }

  .roadmap-step:nth-child(odd) .roadmap-content ul {
    align-items: flex-start;
  }

  .roadmap-step:nth-child(odd) .roadmap-content li {
    padding-left: 1.5rem;
    padding-right: 0;
  }

  .roadmap-step:nth-child(odd) .roadmap-content li::after {
    display: none;
  }

  .roadmap-step:nth-child(odd) .roadmap-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
  }

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

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

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

  .pricing-card.popular {
    grid-column: span 1;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-top: 2rem;
  }

  .expert-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    display: none; /* Swipe natively on mobile */
  }

  .ai-agents-grid {
    grid-template-columns: 1fr;
  }
}

/* University Partnership Callout */
.university-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(217, 138, 41, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 4rem;
  gap: 2rem;
}

.univ-callout-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.univ-callout-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 600px;
}

@media (max-width: 768px) {
  .university-callout {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* Contact Left Column Spacing fills */
.contact-social-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 1rem;
}

.contact-social-section h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-social-section p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-social-grid .social-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.contact-social-grid .social-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.contact-social-grid .social-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.contact-trust-badge {
  display: flex;
  align-items: start;
  gap: 1rem;
  background: rgba(217, 138, 41, 0.03);
  border: 1px solid rgba(217, 138, 41, 0.1);
  padding: 1.25rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.contact-trust-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-trust-badge h5 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-trust-badge p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* --- Campus Hiring Section --- */
.campus-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.campus-offerings {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.offering-card {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.offering-icon {
  background: rgba(217, 138, 41, 0.04);
  border: 1px solid rgba(217, 138, 41, 0.1);
  padding: 0.85rem;
  border-radius: 12px;
  color: var(--accent-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-icon svg {
  width: 24px;
  height: 24px;
}

.offering-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

.campus-metrics-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.campus-metrics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), #FFE082);
}

.metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 0.25rem;
}

.metrics-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.metrics-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(217, 138, 41, 0.12);
  color: var(--accent-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.metric-item:first-child {
  padding-top: 0;
}

.metric-item:last-child {
  border-bottom: none;
  padding-bottom: 1.25rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (max-width: 992px) {
  .campus-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-content.active {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefit-img-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- Dynamic Tab Visual Showcases --- */
.benefits-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(217, 138, 41, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.visual-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.visual-badge {
  align-self: start;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-badge.live {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.visual-header h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
}

.visual-quote-footer {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}

/* Timeline Widget (Colleges) */
.timeline-widget {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
  justify-content: center;
}

.timeline-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.row-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
}

.days-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.days-badge.highlight {
  color: var(--accent-gold);
  opacity: 1;
  font-weight: 600;
}

.progress-track {
  background: rgba(255, 255, 255, 0.03);
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent-gold), #FFE082);
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* Animate progress bars when tab is active */
.benefits-content.active .bar-1 {
  width: 100%;
}
.benefits-content.active .bar-2 {
  width: 75%;
  animation: pulseBar 2s infinite ease-in-out;
}
.benefits-content.active .bar-3 {
  width: 30%;
}

@keyframes pulseBar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* Video/Audio recorded Feed Widget (Students) */
.audio-feed-widget {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.25rem;
  border-radius: 14px;
  flex-grow: 1;
  justify-content: center;
}

.video-preview-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.rec-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #EF4444;
  font-weight: 700;
  text-transform: uppercase;
}

.rec-dot {
  width: 8px;
  height: 8px;
  background-color: #EF4444;
  border-radius: 50%;
  display: inline-block;
  animation: blinkRed 1s infinite alternate;
}

@keyframes blinkRed {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.audio-waves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 50px;
}

.wave-bar {
  width: 4px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: bounceWave 1.2s infinite ease-in-out;
}

.wave-bar.w-1 { animation-delay: 0.1s; }
.wave-bar.w-2 { animation-delay: 0.4s; height: 25px; }
.wave-bar.w-3 { animation-delay: 0.2s; height: 40px; }
.wave-bar.w-4 { animation-delay: 0.6s; height: 15px; }
.wave-bar.w-5 { animation-delay: 0.3s; height: 30px; }
.wave-bar.w-6 { animation-delay: 0.7s; height: 45px; }
.wave-bar.w-7 { animation-delay: 0.5s; height: 20px; }
.wave-bar.w-8 { animation-delay: 0.2s; }

@keyframes bounceWave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(3.5); }
}

.feedback-markers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.feedback-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.feedback-tag.success {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.feedback-tag.warning {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

/* Career Pathway Transition Widget (Professionals) */
.transition-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-grow: 1;
}

.path-node {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.path-node.target {
  background: rgba(217, 138, 41, 0.05);
  border-color: rgba(217, 138, 41, 0.25);
  box-shadow: 0 0 15px rgba(217, 138, 41, 0.1);
}

.node-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.node-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.path-node.target .node-title {
  color: var(--accent-gold);
}

.path-arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 100px;
}

.path-arrow-svg {
  width: 100%;
  height: 20px;
  overflow: visible;
}

.arrow-line {
  stroke: var(--accent-gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

.arrow-dot {
  fill: #FFE082;
  animation: moveDot 2s infinite linear;
}

@keyframes moveDot {
  0% { transform: translateX(-40px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}

.path-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.cloud-tag {
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
}

/* --- Services Overview Section --- */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  text-align: left;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-overview-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(217, 138, 41, 0.05);
}

.service-icon-box {
  background: rgba(217, 138, 41, 0.05);
  border: 1px solid rgba(217, 138, 41, 0.15);
  color: var(--accent-gold);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-overview-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-overview-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-overview-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- Navigation Dropdown --- */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  transition: transform var(--transition-smooth);
  margin-top: 1px;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 15, 29, 0.96);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 190px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Hover bridge gap handler */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
  transition: var(--transition-smooth) !important;
  text-align: left;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  color: var(--accent-gold) !important;
  background: rgba(255, 255, 255, 0.03);
}

/* Mobile dropdown adjustments inside hamburger drawer */
@media (max-width: 1150px) {
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0.5rem auto;
    min-width: 220px;
    width: 90%;
  }

  .dropdown-arrow {
    display: none !important;
  }

  .dropdown-menu a {
    padding: 0.25rem 0 !important;
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    text-align: center !important;
  }
}

/* Micro-responsive alignment for extremely small screens */
@media (max-width: 480px) {
  .path-arrow-wrapper {
    flex: 0 0 60px !important;
  }
  .path-node {
    padding: 0.5rem !important;
  }
  .node-title {
    font-size: 0.75rem !important;
  }
  .node-sub {
    font-size: 0.65rem !important;
  }
  .path-badge {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.35rem !important;
  }
  .benefits-visual {
    padding: 1.5rem !important;
    min-height: 360px !important;
  }
  .visual-quote-footer {
    font-size: 0.8rem !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }
}

/* Micro-responsive typography scaling for narrow viewports */
@media (max-width: 480px) {
  .hero .container {
    padding: 0 1rem !important;
  }
  .hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
}

/* Authentication Modal Notice Card styling */
.auth-notice-card {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.auth-notice-icon-box {
  background: rgba(217, 138, 41, 0.08);
  border: 1px solid rgba(217, 138, 41, 0.2);
  color: var(--accent-gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.auth-notice-icon-box svg {
  width: 28px;
  height: 28px;
}

.auth-notice-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 0;
}

.auth-notice-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  background: rgba(217, 138, 41, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.auth-notice-desc {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.auth-notice-instruction {
  font-size: 0.9rem;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 15, 29, 0.96);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 190px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Hover bridge gap handler */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
  transition: var(--transition-smooth) !important;
  text-align: left;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  color: var(--accent-gold) !important;
  background: rgba(255, 255, 255, 0.03);
}

/* Mobile dropdown adjustments inside hamburger drawer */
@media (max-width: 1150px) {
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0.5rem auto;
    min-width: 220px;
    width: 90%;
  }

  .dropdown-arrow {
    display: none !important;
  }

  .dropdown-menu a {
    padding: 0.25rem 0 !important;
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    text-align: center !important;
  }
}

/* Micro-responsive alignment for extremely small screens */
@media (max-width: 480px) {
  .path-arrow-wrapper {
    flex: 0 0 60px !important;
  }
  .path-node {
    padding: 0.5rem !important;
  }
  .node-title {
    font-size: 0.75rem !important;
  }
  .node-sub {
    font-size: 0.65rem !important;
  }
  .path-badge {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.35rem !important;
  }
  .benefits-visual {
    padding: 1.5rem !important;
    min-height: 360px !important;
  }
  .visual-quote-footer {
    font-size: 0.8rem !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }
}

/* Micro-responsive typography scaling for narrow viewports */
@media (max-width: 480px) {
  .hero .container {
    padding: 0 1rem !important;
  }
  .hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
}

/* Authentication Modal Notice Card styling */
.auth-notice-card {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.auth-notice-icon-box {
  background: rgba(217, 138, 41, 0.08);
  border: 1px solid rgba(217, 138, 41, 0.2);
  color: var(--accent-gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.auth-notice-icon-box svg {
  width: 28px;
  height: 28px;
}

.auth-notice-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 0;
}

.auth-notice-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  background: rgba(217, 138, 41, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.auth-notice-desc {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.auth-notice-instruction {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

#auth-redirect-btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

/* --- Dynamic Text & Bridge Animations --- */

/* Hero Typewriter Cursor */
.typed-cursor {
  color: var(--accent-gold);
  font-weight: 300;
  margin-left: 2px;
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Bridge SVG Labels styling */
.bridge-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  fill: var(--text-secondary);
  opacity: 0.6;
  transition: all var(--transition-smooth);
}

.bridge-graphic:hover .bridge-label {
  opacity: 1;
  fill: #FFF;
  filter: drop-shadow(0 0 2px #FFF) drop-shadow(0 0 8px var(--accent-gold));
}

/* Glowing particles path running along the bridge (Neon Laser pulse) */
.bridge-flow-path {
  stroke-dasharray: 40 180;
  stroke-dashoffset: 220;
  animation: bridgeFlow 4s linear infinite;
  opacity: 0.95;
  filter: drop-shadow(0 0 3px #FFF) drop-shadow(0 0 8px var(--accent-gold)) drop-shadow(0 0 15px var(--accent-gold));
}

@keyframes bridgeFlow {
  0% {
    stroke-dashoffset: 440;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Animated sliding text path on the bridge arc with neon pulse */
.bridge-path-text {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  fill: var(--accent-gold);
  opacity: 0.7;
  text-transform: uppercase;
  pointer-events: none;
  filter: drop-shadow(0 0 2px var(--accent-gold)) drop-shadow(0 0 5px rgba(217, 138, 41, 0.4));
  animation: neonPulse 2.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    opacity: 0.6;
    filter: drop-shadow(0 0 1px var(--accent-gold)) drop-shadow(0 0 3px rgba(217, 138, 41, 0.3));
  }
  100% {
    opacity: 0.85;
    filter: drop-shadow(0 0 3px var(--accent-gold)) drop-shadow(0 0 8px rgba(217, 138, 41, 0.6)) drop-shadow(0 0 12px rgba(217, 138, 41, 0.2));
  }
}

/* Constant neon glow for bridge lines, columns and main towers */
.bridge-graphic line,
.bridge-graphic path:not(.bridge-flow-path):not(#bridge-text-path) {
  transition: filter 0.3s ease, stroke 0.3s ease;
  filter: drop-shadow(0 0 1px rgba(217, 138, 41, 0.4)) drop-shadow(0 0 3px rgba(217, 138, 41, 0.2));
}

/* Enhanced neon glow when user hovers over the bridge area */
.bridge-graphic:hover line,
.bridge-graphic:hover path:not(.bridge-flow-path):not(#bridge-text-path) {
  filter: drop-shadow(0 0 2px var(--accent-gold)) drop-shadow(0 0 7px rgba(217, 138, 41, 0.55)) drop-shadow(0 0 15px rgba(217, 138, 41, 0.25));
}

/* Pulsing connector nodes */
.bridge-graphic circle {
  animation: nodeGlow 3s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes nodeGlow {
  0% {
    r: 3px;
    filter: drop-shadow(0 0 2px var(--accent-gold));
  }
  100% {
    r: 5px;
    filter: drop-shadow(0 0 8px var(--accent-gold)) drop-shadow(0 0 15px var(--accent-gold));
  }
}

/* Subtle glow for Hero Typewriter text to match the theme */
#typed-text {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.15), 0 0 15px rgba(217, 138, 41, 0.4);
}

/* Logo Interactive hover enhancements */
.logo:hover .setu-tagline {
  color: var(--accent-gold);
  opacity: 1;
  transform: scale(1.05);
  transition: all var(--transition-smooth);
}

.logo:hover .setu-text {
  text-shadow: 0 0 10px rgba(217, 138, 41, 0.7);
  transition: all var(--transition-smooth);
}

/* --- Dedicated Services Page Styles --- */
.services-hero {
  padding: 8rem 0 4rem;
  background: radial-gradient(circle at 50% 20%, rgba(217, 138, 41, 0.08) 0%, transparent 65%), var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-nav-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.service-nav-pill:hover {
  background: rgba(217, 138, 41, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.service-detail-section {
  scroll-margin-top: 5rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.service-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.service-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.s-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.s-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217, 138, 41, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.s-feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.s-feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-action-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-guarantee-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Service Preview Cards */
.service-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.status-badge.live {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.status-badge.gold {
  background: rgba(217, 138, 41, 0.15);
  color: var(--accent-gold);
}

.before-after-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ba-side {
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
}

.ba-side.before {
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #EF4444;
  color: #FCA5A5;
}

.ba-side.after {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid #10B981;
  color: #A7F3D0;
}

.ba-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.ats-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.check-val.text-green { color: #10B981; font-weight: 700; }
.check-val.text-gold { color: var(--accent-gold); font-weight: 700; }
.check-val.text-gray { color: var(--text-secondary); }

/* LinkedIn Preview Widget */
.linkedin-preview-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
}

.li-header-mock {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.li-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0A0F1D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.li-meta h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.li-meta p { font-size: 0.8rem; color: var(--text-secondary); }

.li-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.li-stat-box {
  background: rgba(217, 138, 41, 0.08);
  border: 1px solid rgba(217, 138, 41, 0.2);
  border-radius: 8px;
  padding: 0.88rem;
  text-align: center;
}

.li-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--accent-gold); }
.li-stat-lbl { font-size: 0.75rem; color: var(--text-secondary); }

/* Rubric Grid */
.rubric-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rubric-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.r-name { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.r-bar { height: 8px; background: rgba(255, 255, 255, 0.08); border-radius: 50px; overflow: hidden; }
.r-fill { height: 100%; background: linear-gradient(90deg, var(--accent-gold), #FFE082); border-radius: 50px; }
.r-score { font-size: 0.78rem; font-weight: 800; color: var(--accent-gold); align-self: flex-end; }

.mentor-note-box {
  background: rgba(217, 138, 41, 0.08);
  border-left: 3px solid var(--accent-gold);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Comp Chart Mock */
.comp-chart-mock {
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  padding: 0.88rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.comp-row.highlight {
  background: rgba(217, 138, 41, 0.12);
  border-color: rgba(217, 138, 41, 0.4);
  font-weight: 700;
}

/* Contact Form Service Pills */
.form-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.service-pill-option {
  cursor: pointer;
  user-select: none;
}

.service-pill-option input[type="checkbox"] {
  display: none;
}

.service-pill-option span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.service-pill-option:hover span {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.service-pill-option input[type="checkbox"]:checked + span {
  background: rgba(217, 138, 41, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(217, 138, 41, 0.2);
}

/* Blogs Page Styling */
.blog-hero {
  padding: 10.5rem 0 3.5rem;
  background: radial-gradient(circle at 50% 0%, rgba(217, 138, 41, 0.08) 0%, transparent 60%);
  text-align: center;
}

.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-content .hero-tagline {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.85rem;
  display: inline-block;
}

.blog-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.blog-hero-content .hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.blog-filter-wrapper {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.blog-search-box {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.blog-search-box svg {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.blog-search-box input {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-smooth);
}

.blog-search-box input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(217, 138, 41, 0.2);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.blog-cat-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.blog-cat-btn:hover, .blog-cat-btn.active {
  background: rgba(217, 138, 41, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Featured Blog Post Card */
.featured-blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.featured-blog-badge {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  background: var(--accent-gold);
  color: #0A0F1D;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.blog-meta-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.blog-tag.gold {
  background: rgba(217, 138, 41, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(217, 138, 41, 0.25);
}

.blog-read-time {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.featured-blog-content h2 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-blog-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0A0F1D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-title {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.blog-title-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

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

/* Code Preview Terminal Widget */
.code-preview-widget {
  background: #060913;
  border: 1px solid rgba(217, 138, 41, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
  font-size: 0.85rem;
}

.code-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.code-header .dot.red { background: #FF5F56; }
.code-header .dot.yellow { background: #FFBD2E; }
.code-header .dot.green { background: #27C93F; }

.code-title {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.code-preview-widget pre {
  padding: 1.25rem;
  margin: 0;
  overflow-x: auto;
  color: #E2E8F0;
  line-height: 1.6;
}

.code-preview-widget .keyword { color: #F59E0B; font-weight: bold; }
.code-preview-widget .func { color: #60A5FA; }
.code-preview-widget .comment { color: #64748B; font-style: italic; }
.code-preview-widget .str { color: #34D399; }

/* Main Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 138, 41, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.blog-card-img {
  height: 180px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
}

.blog-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

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

.avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0A0F1D;
  font-weight: 800;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-author-sm span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.blog-read-link {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

/* Article Modal Reader */
.article-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 29, 0.88);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.article-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.article-modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-deep);
}

.article-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-smooth);
}

.article-close-btn:hover { color: var(--accent-gold); }

.article-modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin: 1rem 0 1.5rem;
  line-height: 1.3;
}

.article-body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.article-lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-body-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.article-callout {
  background: rgba(217, 138, 41, 0.08);
  border-left: 4px solid var(--accent-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.75rem 0;
  color: var(--text-primary);
}

.article-quote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-primary);
}

.article-action-box {
  background: rgba(217, 138, 41, 0.08);
  border: 1px solid rgba(217, 138, 41, 0.25);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.article-action-box h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.article-action-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-blog-grid { grid-template-columns: 1fr; }
  .featured-blog-graphic { display: none; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-modal-container { padding: 1.75rem; }
}

/* Standalone Article Details Page */
.article-details-wrapper {
  padding: 9.5rem 0 4rem;
}

.article-breadcrumbs {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.article-breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

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

.article-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: var(--shadow-subtle);
  max-width: 900px;
  margin: 0 auto;
}

.article-header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.article-page-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 1.75rem;
}

.article-author-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
}

.article-body-content {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.article-body-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.25rem 0 1rem;
}

.article-page-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .article-main-card { padding: 2rem 1.5rem; }
  .article-page-title { font-size: 1.85rem; }
  .article-page-navigation { flex-direction: column; gap: 1rem; }
  .article-page-navigation a { width: 100%; text-align: center; }
}

/* Newsletter Card Alignment */
.newsletter-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.newsletter-card .section-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  text-align: center;
}

.newsletter-card .section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
  text-align: center;
}

.blog-newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto;
}

.blog-newsletter-form .form-input {
  flex: 1;
  height: 52px;
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.blog-newsletter-form .form-input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.07);
}

.blog-newsletter-form .btn-primary {
  height: 52px;
  padding: 0 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  margin: 0;
}

@media (max-width: 640px) {
  .newsletter-card { padding: 2.5rem 1.5rem; }
  .newsletter-card .section-title { font-size: 1.75rem; }
  .blog-newsletter-form { flex-direction: column; width: 100%; }
  .blog-newsletter-form .form-input,
  .blog-newsletter-form .btn-primary { width: 100%; }
}

