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

:root {
  --primary: #c9a96e;
  --primary-dark: #a8894e;
  --secondary: #d4af37;
  --dark: #1a1a1e;
  --darker: #0e0e12;
  --light: #f5f0e8;
  --gray: #9a9590;
  --success: #7ea87e;
  --warning: #d4af37;
  --marble: rgba(255, 255, 255, 0.03);
  --border-gold: rgba(201, 169, 110, 0.25);
}

body {
  font-family: "Cormorant Garamond", "Georgia", serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.3s;
  letter-spacing: 2px;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: color 0.3s;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darker);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--darker);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.06;
  top: -300px;
  right: -200px;
  animation: pulse 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.04;
  bottom: -150px;
  left: -150px;
  animation: pulse 6s ease-in-out infinite 3s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.06; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

/* Marble texture overlay */
.hero .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 100px,
      rgba(201, 169, 110, 0.015) 100px,
      rgba(201, 169, 110, 0.015) 200px
    );
  pointer-events: none;
  z-index: 0;
}

/* Centered Hero (unique layout) */
.hero-centered {
  text-align: center;
  padding-bottom: 80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.hero-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero-emblem::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
}

.hero-inner h1 {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-inner h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-centered .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Process / How it Works Section */
.process-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  position: relative;
  border: 1px solid var(--border-gold);
  background: var(--darker);
}

.process-step:first-child { border-radius: 4px 0 0 4px; }
.process-step:last-child { border-radius: 0 4px 4px 0; }

.step-number {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1;
}

.step-body h3 {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.step-body p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.process-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.process-connector::before {
  content: "\25B6";
  color: var(--primary);
  font-size: 1.2rem;
}

/* Studio Preview Section */
.studio-preview {
  padding: 100px 0;
  position: relative;
}

.preview-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.preview-frame {
  position: relative;
}

.frame-arch {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 25px;
  border-top: 2px solid var(--border-gold);
  border-left: 2px solid var(--border-gold);
  border-right: 2px solid var(--border-gold);
  border-radius: 100px 100px 0 0;
}

.preview-caption {
  padding: 20px 0;
}

.preview-caption h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.preview-caption p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Features Duo Layout (horizontal cards) */
.features-duo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-wide {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--dark);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  transition: all 0.3s;
  position: relative;
}

.feature-wide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 4px 0 0 4px;
}

.feature-wide:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.08);
}

.feature-wide .feature-icon {
  flex-shrink: 0;
}

.feature-wide h3 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.feature-wide p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* Stats Ribbon */
.stats-ribbon {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(212, 175, 55, 0.04));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.stat {
  text-align: center;
}

.stat-val {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.stat-lbl {
  display: block;
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}

/* Legacy hero support */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-visual {
  position: relative;
}

/* Main Chat Window on Hero */
.main-chat-window {
  background: var(--dark);
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(201, 169, 110, 0.05);
  display: flex;
  flex-direction: column;
  height: 500px;
  overflow: hidden;
}

.main-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, #2a2520, #1e1b17);
  border-bottom: 1px solid var(--border-gold);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar-main {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar-main svg {
  width: 24px;
  height: 24px;
  stroke: var(--darker);
}

.chat-header-info h4 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.chat-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.9;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.main-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-chat-messages::-webkit-scrollbar { width: 6px; }
.main-chat-messages::-webkit-scrollbar-track { background: transparent; }
.main-chat-messages::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 3px; }

/* Welcome Screen */
.chat-welcome {
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.welcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin-bottom: 20px;
}

.welcome-icon svg { width: 32px; height: 32px; stroke: var(--darker); }

.chat-welcome h3 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.chat-welcome p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 300px;
  line-height: 1.6;
}

.welcome-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  justify-content: center;
}

.suggestion-btn {
  padding: 10px 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  color: var(--light);
  font-size: 0.85rem;
  font-family: "Cinzel", serif;
  cursor: pointer;
  transition: all 0.2s;
}

.suggestion-btn:hover {
  background: rgba(201, 169, 110, 0.25);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Chat Messages */
.main-chat-message {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.6;
  animation: messageSlide 0.3s ease;
}

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

.main-chat-message.user {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darker);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.main-chat-message.bot {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--light);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.main-chat-message .msg-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 8px;
  display: block;
}

.main-chat-message.bot.typing-indicator {
  display: flex;
  gap: 6px;
  padding: 18px 22px;
}

.main-chat-message.bot.typing-indicator span {
  width: 10px;
  height: 10px;
  background: var(--gray);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.main-chat-message.bot.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.main-chat-message.bot.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-8px); opacity: 1; }
}

/* Chat Input */
.main-chat-input {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-gold);
}

.main-chat-input input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background: var(--darker);
  color: var(--light);
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.main-chat-input input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.main-chat-input input::placeholder { color: var(--gray); }

.main-chat-send {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--darker);
}

.main-chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(201, 169, 110, 0.4);
}

.main-chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.main-chat-send svg { width: 22px; height: 22px; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Column decorators */
.column-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  margin: 0 auto 40px;
}

/* Features */
.features {
  padding: 100px 0;
  position: relative;
}

/* Decorative columns on sides */
.features::before,
.features::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}

.features::before { left: 40px; }
.features::after { right: 40px; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.15rem;
}

/* Decorative arch under section title */
.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  margin: 20px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--dark);
  padding: 35px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  transition: all 0.3s;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feature-card p { color: var(--gray); }

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--darker);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.1);
}

.pricing-card.popular::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darker);
  padding: 5px 20px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.price {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "\2726";
  color: var(--primary);
  font-weight: 700;
}

/* Coming Soon Banner */
.coming-soon {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(212, 175, 55, 0.05));
  position: relative;
}

/* Arch decoration */
.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  border-top: 2px solid var(--border-gold);
  border-left: 2px solid var(--border-gold);
  border-right: 2px solid var(--border-gold);
  border-radius: 300px 300px 0 0;
  pointer-events: none;
}

.notify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.notify-icon svg { stroke: var(--darker); }

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

.coming-soon h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.coming-soon p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon .btn-lg {
  padding: 16px 32px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.launch-date {
  margin-top: 25px;
  font-size: 0.9rem !important;
  color: var(--gray) !important;
  margin-bottom: 0 !important;
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand { max-width: 280px; }

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-gold);
  color: var(--gray);
  font-size: 0.9rem;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.menu-overlay.active {
  display: block;
  animation: fadeInOverlay 0.2s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive - Tablets */
@media (max-width: 968px) {
  .container { padding: 0 30px; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-inner h1 { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-centered .hero-buttons { flex-wrap: wrap; }

  .process-steps { flex-direction: column; }
  .process-step:first-child { border-radius: 4px 4px 0 0; }
  .process-step:last-child { border-radius: 0 0 4px 4px; }
  .process-connector { width: auto; height: 30px; }
  .process-connector::before { content: "\25BC"; }

  .preview-layout { grid-template-columns: 1fr; }
  .preview-caption { text-align: center; }
  .frame-arch { display: none; }

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

  .stats-row { flex-wrap: wrap; gap: 30px; }
  .stat-divider { display: none; }

  .main-chat-window { max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .features::before, .features::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 25px; }
  .pricing-card.popular { transform: none; }
  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .section-title h2 { font-size: 2rem; }

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow-y: auto;
    border-left: 1px solid var(--border-gold);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    padding: 15px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-gold);
  }

  nav > .btn { display: none; }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
  .hero-inner h1 { font-size: 1.8rem; margin-bottom: 15px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 25px; }
  .hero-centered .hero-buttons { flex-direction: column; width: 100%; }
  .hero-centered .hero-buttons .btn { width: 100%; text-align: center; }
  .hero-emblem { width: 90px; height: 90px; margin-bottom: 20px; }
  .hero-emblem svg { width: 60px; height: 60px; }
  .badge { font-size: 0.7rem; padding: 5px 10px; }

  .process-section { padding: 60px 0; }
  .process-step { padding: 25px 20px; }
  .step-number { font-size: 2rem; }
  .step-body h3 { font-size: 1rem; }

  .studio-preview { padding: 60px 0; }
  .preview-caption h3 { font-size: 1.4rem; }

  .main-chat-window { height: 400px; border-radius: 4px; }
  .main-chat-header { padding: 14px 16px; }
  .chat-avatar-main { width: 38px; height: 38px; }
  .chat-header-info h4 { font-size: 0.9rem; }
  .chat-status-badge { font-size: 0.75rem; }
  .main-chat-messages { padding: 15px; gap: 12px; }
  .main-chat-input { padding: 12px 15px; gap: 10px; }
  .main-chat-input input { padding: 12px 16px; font-size: 0.9rem; }
  .main-chat-send { width: 44px; height: 44px; }
  .main-chat-message { font-size: 0.9rem; padding: 12px 14px; }

  .features { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-wide { padding: 20px; }
  .feature-card { padding: 25px; }
  .feature-icon { width: 50px; height: 50px; margin-bottom: 15px; }
  .feature-card h3 { font-size: 1.1rem; }
  .feature-card p { font-size: 0.95rem; }

  .stats-ribbon { padding: 40px 0; }
  .stats-row { gap: 25px; }
  .stat-val { font-size: 2rem; }

  .pricing { padding: 60px 0; }
  .pricing-card { padding: 30px 25px; }
  .price { font-size: 2.5rem; }

  .coming-soon { padding: 60px 0; }
  .coming-soon::before { width: 200px; height: 100px; }
  .coming-soon h2 { font-size: 1.8rem; }
  .coming-soon p { font-size: 1rem; }
  .notify-icon { width: 60px; height: 60px; margin-bottom: 20px; }
  .coming-soon .btn-lg { padding: 14px 28px; font-size: 0.85rem; width: 100%; justify-content: center; }

  footer { padding: 60px 0 30px; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand { max-width: 100%; }
  .section-title h2 { font-size: 1.6rem; }
  .section-title p { font-size: 1rem; }

  .nav-links { width: 100%; padding: 100px 30px 30px; }
  .nav-links a { font-size: 0.85rem; }
}

@media (max-width: 380px) {
  .hero { padding-top: 90px; padding-bottom: 50px; }
  .hero-inner h1 { font-size: 1.5rem; }
  .hero-emblem { width: 70px; height: 70px; }
  .hero-emblem svg { width: 45px; height: 45px; }
  .main-chat-window { height: 350px; }
  .btn { padding: 10px 20px; font-size: 0.8rem; }
  .welcome-suggestions { flex-direction: column; }
  .suggestion-btn { width: 100%; }
}
