/* ==========================================================================
   NotarPrime Website Design System & Styling
   Theme: Editorial Terra & Modern Notary Slate
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #FBF9F5;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F4EFE6;
  --bg-dark: #1E1B18;
  
  --text-main: #2C2623;
  --text-muted: #6B625B;
  --text-light: #9E948B;
  --text-white: #FFFFFF;

  --accent-terra: #B35436;
  --accent-terra-hover: #984227;
  --accent-terra-light: #FDF3EF;
  --accent-amber: #D97706;
  --accent-navy: #1E293B;
  --accent-green: #137333;

  --border-color: #E8E2D8;
  --border-focus: #B35436;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 4px rgba(44, 38, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 38, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 38, 35, 0.12);
  --glow-terra: 0 10px 30px rgba(179, 84, 54, 0.2);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.small-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--accent-terra) 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-terra);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(179, 84, 54, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-terra-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 84, 54, 0.4);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-card-alt);
  border-color: var(--accent-terra);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 226, 216, 0.6);
  padding: 16px 0;
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-main);
}

.scale-icon {
  color: var(--accent-terra);
}

.brand-name span {
  color: var(--accent-terra);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 80px 0;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(179, 84, 54, 0.14) 0%, rgba(251, 249, 245, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-terra-light);
  border: 1px solid rgba(179, 84, 54, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-terra);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-terra);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-terra);
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* Mockup Window */
.hero-mockup-wrapper {
  max-width: 1050px;
  margin: 0 auto;
}

.window-frame {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--glow-terra);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.5s ease;
}

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

.window-header {
  background: #141210;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.window-title {
  color: #A19991;
  font-size: 0.85rem;
  font-weight: 500;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #27C93F;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: #27C93F;
  border-radius: 50%;
}

.window-content {
  background: #F7F3EC;
}

.mockup-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Authenticity & Founder Story Section */
.story-section {
  padding: 40px 0 80px 0;
}

.story-card {
  background: linear-gradient(135deg, #F4EFE6 0%, #EFE9DD 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.story-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}

.story-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.story-quote-box {
  background: #FFF;
  border-left: 4px solid var(--accent-terra);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent-terra);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 16px;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px !important;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-terra);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-badge-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-pill-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.trust-pill-card.highlight {
  border-color: var(--accent-terra);
  box-shadow: 0 4px 16px rgba(179, 84, 54, 0.12);
}

.tp-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.trust-pill-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.trust-pill-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Add-On Banner Section */
.banner-section {
  padding: 20px 0 60px 0;
}

.banner-box {
  background: linear-gradient(135deg, #1E1B18 0%, #2D2723 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(179, 84, 54, 0.3);
}

.banner-icon {
  font-size: 2.2rem;
  background: rgba(179, 84, 54, 0.2);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-text h3 {
  color: #FFF;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.banner-text p {
  color: #C2B9B0;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Grid System & General Sections */
.section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 54px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-terra);
  margin-bottom: 12px;
}

.section-tag.alt {
  color: var(--accent-amber);
}

.section-title {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }

/* Benefits Cards */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-terra);
  box-shadow: var(--shadow-md);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--accent-terra-light);
  color: var(--accent-terra);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Workflow Section & Builder Mockup */
.workflows-section {
  background-color: #F4EFE6;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.wf-text h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.wf-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.wf-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wf-item {
  display: flex;
  gap: 16px;
}

.wf-icon {
  font-size: 1.4rem;
  background: var(--bg-card);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.wf-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.wf-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.wf-builder-mockup {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.wf-header {
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 18px;
  color: var(--accent-terra);
}

.wf-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.wf-step .step-num {
  width: 24px;
  height: 24px;
  background: var(--accent-terra);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-right: 10px;
}

.status-ok { color: var(--accent-green); font-size: 0.8rem; font-weight: 700; }
.status-now { background: var(--accent-terra); color: #FFF; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; }
.status-next { background: #FEF7E0; color: #B06000; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; }
.status-wait { color: var(--text-light); font-size: 0.8rem; }

.wf-branch-box {
  margin: 12px 0 12px 20px;
  padding-left: 16px;
  border-left: 3px dashed var(--accent-terra);
}

.branch-trigger {
  font-size: 0.82rem;
  color: var(--accent-terra);
  margin-bottom: 8px;
  background: var(--accent-terra-light);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* Feature Tabs */
.feature-tabs-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 36px;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--accent-terra);
  background-color: var(--accent-terra-light);
}

.tab-btn.active {
  background-color: var(--accent-terra);
  color: var(--text-white);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

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

.tab-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.tab-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.feature-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-terra);
  font-weight: bold;
}

/* Visual Tab Previews */
.visual-card {
  background: #F9F6F0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
}

.email-demo-box {
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.88rem;
}
.em-head { padding-bottom: 8px; border-bottom: 1px solid #F0ECE4; margin-bottom: 8px; }
.em-subj { font-weight: 700; margin-bottom: 8px; color: var(--accent-terra); }
.em-body { color: var(--text-muted); margin-bottom: 14px; font-style: italic; }
.em-action { text-align: right; }

.cal-demo-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cal-day {
  background: #FFF;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-terra);
  display: flex;
  flex-direction: column;
}

.cal-day.urgency-high { border-left-color: #D93025; background: #FCE8E6; }
.cal-day.urgency-medium { border-left-color: #F9AB00; background: #FEF7E0; }

.cal-day .time { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); }
.cal-day .title { font-weight: 600; font-size: 0.9rem; }

.xnp-box {
  background: #1E1B18;
  color: #FFF;
  padding: 20px;
  border-radius: var(--radius-sm);
}
.xnp-status { color: #27C93F; font-size: 0.85rem; font-weight: bold; margin-bottom: 8px; }
.xnp-box code { color: #FFBD2E; font-family: monospace; display: block; font-size: 0.82rem; }

.popup-toast {
  background: #FFF;
  border: 2px solid var(--accent-terra);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.toast-head { font-weight: 800; color: var(--accent-terra); font-size: 0.9rem; margin-bottom: 6px; }
.toast-body { font-size: 0.9rem; color: var(--text-main); }

/* Security Section */
.security-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.sec-text h2 {
  color: var(--text-white);
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.sec-text p {
  color: #A19991;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.sec-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec-item {
  display: flex;
  gap: 16px;
}

.sec-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-item h4 {
  color: var(--text-white);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.sec-item p {
  color: #8C847D;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.sec-card {
  background: #272320;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.sec-badge-ok {
  background: #E6F4EA;
  color: #137333;
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.sec-log {
  background: #141210;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.82rem;
  color: #A19991;
}
.log-line { margin-bottom: 6px; }
.log-line span { color: #6B625B; }
.log-line.highlight { color: #27C93F; font-weight: bold; }

/* Demo Request Form Section */
.demo-card-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 60px;
}

.demo-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.demo-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-item {
  font-weight: 600;
  color: var(--accent-terra);
}

.demo-form-box {
  background: var(--bg-main);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-terra);
  box-shadow: 0 0 0 3px rgba(179, 84, 54, 0.15);
}

.privacy-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

.form-success-msg {
  text-align: center;
  padding: 36px 20px;
}

.form-success-msg .success-icon {
  width: 60px;
  height: 60px;
  background-color: #E6F4EA;
  color: #137333;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.form-success-msg h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success-msg p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hidden { display: none !important; }

/* FAQ Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.accordion-header .icon {
  font-size: 1.4rem;
  color: var(--accent-terra);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

.accordion-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Footer */
.footer {
  background-color: #141210;
  color: #A19991;
  padding: 80px 0 0 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
}

.footer-brand .brand-logo { color: #FFF; }

.footer-links {
  display: flex;
  gap: 60px;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-col h4 {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 8px;
}

.f-col a {
  color: #8C847D;
}
.f-col a:hover { color: var(--accent-terra); }

.footer-bottom {
  padding: 24px 0;
}

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

.v-tag { font-size: 0.8rem; opacity: 0.7; }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .story-card { padding: 36px; }
  .demo-card-wrapper { padding: 32px; }
  .banner-box { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 600px) {
  .navbar-inner { flex-direction: column; gap: 12px; }
  .nav-links { gap: 14px; font-size: 0.82rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-lg { width: 100%; }
  .tabs-nav { flex-wrap: nowrap; }
}
