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

:root {
  /* Vercel & Linear Premium Design Tokens */
  --bg-main: #000000; /* OLED Black */
  --surface: #09090b; /* Deep charcoal surface */
  --surface-hover: #121215;
  --surface-card: #08080a;
  --border: rgba(255, 255, 255, 0.06); /* Ultra-fine border */
  --border-focus: rgba(255, 255, 255, 0.15);
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa; /* Zinc-400 */
  --text-muted: #52525b; /* Zinc-600 */
  
  /* Accents */
  --accent: #6366f1; /* Indigo */
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.15);
  
  /* Alert / State colors (minimal and sharp) */
  --color-green: #10b981;
  --color-red: #ef4444;
  --color-yellow: #f59e0b;
  --color-blue: #3b82f6;
  --color-meta: #1877F2;
  --color-purple: #8b5cf6;
  --color-ai: #06b6d4;
  
  --radius: 8px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Linear-style Background Grid Pattern */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  z-index: -3;
  pointer-events: none;
}

/* Subtle glowing backdrops behind central hero sections */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
}

.blob1 {
  background: var(--accent);
  width: 600px;
  height: 400px;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

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

/* Vercel-style Buttons */
.glow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.glow-btn-primary {
  background: #ffffff; /* Ultra contrast white btn */
  color: #000000;
  border: 1px solid #ffffff;
}

.glow-btn-primary:hover {
  background: #e4e4e7;
  border-color: #e4e4e7;
  transform: translateY(-1px);
}

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

.glow-btn-secondary:hover {
  background: var(--surface);
  border-color: var(--border-focus);
}

/* Navigation Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-mark-small {
  width: 26px;
  height: 26px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1rem;
}

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
}

/* Hero Section */
.hero {
  padding-top: 130px;
  padding-bottom: 60px;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 5px;
  height: 5px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.8rem;
  }
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* MacBook / Screen Frames */
.device-wrapper {
  width: 100%;
}

.macbook-frame {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
  padding: 8px 8px 0 8px;
  max-width: 580px;
  margin: 0 auto;
}

.macbook-screen {
  background: var(--bg-main);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding-top: 36px;
  height: 310px;
}

.screen-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: #08080a;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 0.8rem;
  gap: 0.75rem;
}

.screen-dots {
  display: flex;
  gap: 5px;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2e2e33;
}

.screen-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex-grow: 1;
  text-align: center;
}

.screen-url {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: monospace;
  background: #000000;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Concept Otonom Flow simulator on Hero */
.hero-mock-ui {
  width: 100%;
  height: 100%;
  padding: 0.8rem;
  background: #000000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.45rem;
}

.mock-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-logo-mark {
  width: 22px;
  height: 22px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 0.75rem;
}

.mock-header-text h4 {
  font-size: 0.78rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.mock-header-text p {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.mock-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--text-secondary);
  background: #08080a;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.mock-status-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-green);
  border-radius: 50%;
}

.mock-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mock-card {
  background: #08080a;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem;
  transition: all 0.25s ease;
}

.mock-card.active {
  border-color: var(--accent);
  background: #0c0c10;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.mock-card-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.15rem;
}

.m-icon {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.m-lbl {
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 500;
}

.m-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.m-sub {
  font-size: 0.52rem;
  color: var(--text-muted);
}

.mock-console {
  background: #020203;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.6rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
  height: 95px;
}

.mock-console-title {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  padding-bottom: 0.15rem;
}

.mock-console-lines {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: monospace;
  font-size: 0.62rem;
  color: var(--color-green);
}

.mock-line {
  opacity: 0.35;
  transition: all 0.2s;
  display: flex;
  gap: 0.35rem;
}

.mock-line.active {
  opacity: 1;
  color: var(--text-primary);
}

.m-time {
  color: var(--accent);
}

/* 9 Apps Showcase Section */
.section-padd {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.8rem;
  }
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Vercel/Linear mouse tracking card grid */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-showcase-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Dynamic Radial Aura Hover tracking values via JS */
.app-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.04), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.app-showcase-card:hover {
  border-color: var(--border-focus);
}

.app-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.accent-line { background: var(--accent); }
.meta-line { background: var(--color-meta); }
.purple-line { background: var(--color-purple); }
.ai-line { background: var(--color-ai); }
.yellow-line { background: var(--color-yellow); }
.green-line { background: var(--color-green); }

.app-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  z-index: 2;
}

.badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

.badge.stable { background: rgba(16, 185, 129, 0.1); color: var(--color-green); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge.ai-badge { background: rgba(6, 182, 212, 0.1); color: var(--color-ai); border: 1px solid rgba(6, 182, 212, 0.2); }
.badge.agent-badge { background: rgba(139, 92, 246, 0.1); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.2); }
.badge.chat-badge { background: rgba(99, 102, 241, 0.1); color: var(--accent-light); border: 1px solid rgba(99, 102, 241, 0.25); }
.badge.creative-badge { background: rgba(6, 182, 212, 0.1); color: var(--color-ai); border: 1px solid rgba(6, 182, 212, 0.2); }
.badge.trend-badge { background: rgba(245, 158, 11, 0.1); color: var(--color-yellow); border: 1px solid rgba(245, 158, 11, 0.25); }
.badge.plan-badge { background: rgba(139, 92, 246, 0.1); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.2); }
.badge.social-badge { background: rgba(6, 182, 212, 0.1); color: var(--color-ai); border: 1px solid rgba(6, 182, 212, 0.2); }
.badge.shopify-badge { background: rgba(16, 185, 129, 0.1); color: var(--color-green); border: 1px solid rgba(16, 185, 129, 0.2); }

.app-showcase-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-main);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid var(--border);
}

.app-showcase-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.app-showcase-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  z-index: 2;
}

.app-showcase-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  min-height: 40px;
  z-index: 2;
}

.app-showcase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  z-index: 2;
}

.app-showcase-features li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-showcase-features li span {
  color: var(--text-primary);
  font-weight: bold;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.integration-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.integration-card:hover {
  background: var(--surface);
  border-color: var(--border-focus);
}

.integration-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}

.integration-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.integration-card span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Early Access / Newsletter CTA card */
.cta-section {
  border-top: 1px solid var(--border);
  background: #000000;
}

.cta-box {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4.5rem 1.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.04em;
}

.cta-box p {
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 2.2rem;
  font-size: 0.98rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-form {
    flex-direction: row;
    background: #000000;
    border: 1px solid var(--border);
    padding: 0.25rem;
    border-radius: 6px;
  }
  
  .cta-form:focus-within {
    border-color: var(--border-focus);
  }
}

.cta-input {
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-input {
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    flex-grow: 1;
    padding: 0.65rem 1rem;
  }
}

.cta-submit {
  flex-shrink: 0;
  border-radius: 6px;
  padding: 0.75rem 1.4rem;
}

.form-msg {
  font-size: 0.85rem;
  margin-top: 1rem;
  min-height: 20px;
}

.form-msg.success { color: var(--color-green); }
.form-msg.error { color: var(--color-red); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.2rem;
  background-color: #000000;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 260px;
}

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

.footer-nav h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

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

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-credit a {
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Mobile responsive menu */
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.8rem;
    transition: left var(--transition-normal);
    border-top: 1px solid var(--border);
  }
  
  .nav-links.mobile-active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }
}

/* Contact Grid & Cards Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Coordinates aura for hover card borders */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.04), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.contact-card:hover {
  border-color: var(--border-focus);
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-main);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-action-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  padding: 0.5rem 0;
  width: fit-content;
}

.contact-action-link svg {
  transition: transform var(--transition-normal);
  color: var(--btn-accent, var(--accent));
}

.contact-action-link:hover {
  color: var(--btn-accent, var(--accent-light));
}

.contact-action-link:hover svg {
  transform: translateX(4px);
}

/* FAQ Section & Accordion Styles */
.faq-section {
  border-top: 1px solid var(--border);
  background: #000000;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.faq-item[open] {
  border-color: var(--border-focus);
}

.faq-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1rem;
}
