.process-section {
  padding: 80px 0;
  text-align: center;
  color: #e8eaed;
  position: relative;
  z-index: 1;
}
.process-section .section-title { font-size: 2.5em; margin-bottom: 10px; }
.process-section .section-subtitle { max-width: 700px; margin: 0 auto 60px; font-size: 1.1em; color: #c9c9c9; }
.process-bg-video { display: none; }
.process-section::after { display: none; }
.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.timeline-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 3px;
  background-color: rgba(255,255,255,0.3);
  z-index: 1;
}
.timeline-step { flex: 1; text-align: center; position: relative; padding: 0 15px; }
.step-header { margin-bottom: 20px; }
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--step-color);
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 3px solid rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}
.step-title { margin-top: 10px; font-size: 1.3em; color: #ffffff; }
.step-description p { font-size: 0.9em; color: #e0e0e0; line-height: 1.6; }
@media (max-width: 992px) {
  .timeline-container { flex-direction: column; align-items: flex-start; }
  .timeline-container::before {
    left: 36px; top: 20px; bottom: 20px; width: 3px; height: auto; right: auto;
  }
  .timeline-step { text-align: left; padding-left: 80px; margin-bottom: 30px; }
  .step-number { position: absolute; left: 16px; top: 0; }
}
/* =====================
   Reset & Global Styles
   ===================== */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd { margin: 0; padding: 0; }
html, body { height: 100%; }
body { 
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color: #F3F4F6; 
  background-color: #0b0b0c; /* fallback */
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

/* Theme variables derived from the provided PNG */
:root {
  --accent: #4c56e5; /* sunset gold */
  --accent-rgb: 229, 160, 76;
  --surface-bg: rgba(43, 136, 241, 0.08);
  --surface-border: rgba(52, 187, 240, 0.28);
}

img { max-width: 100%; display: block; }
button { font: inherit; border: none; cursor: pointer; color: inherit; background: none; }
input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

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

/* =====================
   Navbar
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--accent-rgb), 0.10);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: none;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.navbar nav a { opacity: 0.85; transition: opacity 0.2s ease, filter 0.2s ease; }
.navbar nav a:hover { opacity: 1; filter: brightness(1.2); }

/* =====================
   Hero Section
   ===================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero .container { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-payoff { font-size: clamp(16px, 2.6vw, 18px); font-weight: 400; opacity: 0.9; margin-bottom: 32px; }
.prompt-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 8px;
}
#project-prompt {
  resize: vertical;
  min-height: 120px;
  padding: 16px 16px 16px 16px;
  border: none;
  outline: none;
  background: transparent;
  color: #F9FAFB;
}
#project-prompt::placeholder { color: rgba(255, 255, 255, 0.7); opacity: 1; }
#project-prompt { caret-color: #ffffff; }
#submit-prompt-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #0b0b0c;
  font-size: 20px;
  border-radius: 9999px;
  transition: filter 0.2s ease, transform 0.06s ease;
}
#submit-prompt-btn:hover { filter: brightness(1.02); }
#submit-prompt-btn:active { transform: scale(0.98); }

/* =====================
   Services Section & Cards
   ===================== */
.services { padding: 64px 0; }
.services .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.card h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.card p { opacity: 0.9; margin-bottom: 16px; }

.buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.buttons-grid button {
  background: rgba(var(--accent-rgb), 0.10);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.06s ease, border-color 0.2s ease;
}
.buttons-grid button:hover {
  background: rgba(var(--accent-rgb), 0.16);
  border-color: rgba(76, 193, 229, 0.42);
}
.buttons-grid button:active { transform: translateY(1px); }

.media { margin: 16px 0; }
.media img { width: 100%; border-radius: 14px; border: 1px solid var(--surface-border); }

/* Added: preview grid for multiple site previews */
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.preview-item img { border-radius: 12px; border: 1px solid var(--surface-border); display: block; width: 100%; height: 100%; object-fit: cover; }

.card .contact-trigger {
  margin-top: 12px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}
.card .contact-trigger .btn-bg-video { display: none; }
.card .contact-trigger .btn-label { display: none; }
.card .contact-trigger::after { display: none; }

/* Gradient button skin */
.btn-grad { background-image: linear-gradient(to right, #f46b45 0%, #eea849 51%, #f46b45 100%); }
.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #ffffff;
  box-shadow: none;
  border: none;
  border-radius: 10px;
  display: block;
}
.btn-grad:hover {
  background-position: right center;
  color: #ffffff;
  text-decoration: none;
}

/* Center CTA inside cards */
.card .contact-trigger.btn-grad {
  display: block;
  padding: 14px 28px;
  margin: 12px 0 0;
  width: 100%;
}

/* =====================
   Modal
   ===================== */
.modal {
  display: none; /* default hidden */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  padding: 24px;
}
.modal-content {
  max-width: 560px;
  margin: 40px auto;
  background: #0f1113; /* opaque for readability */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.close-button {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  opacity: 0.9;
}
.close-button:hover { opacity: 1; cursor: pointer; }

#contact-form { display: grid; gap: 12px; margin-top: 8px; }
#contact-form label { font-size: 14px; opacity: 0.85; }
#contact-form input, #contact-form textarea {
  background: rgba(17, 212, 212, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
}
#contact-form button[type="submit"] {
  margin-top: 4px;
  background: linear-gradient(135deg, #E1725F, #f38a78);
  color: #0b0b0c;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
  .services .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .navbar .container { height: 56px; }
  .navbar .logo { flex-shrink: 0; }
  .navbar .logo img { height: 40px; width: auto; }
  .navbar nav { flex: 1 1 auto; }
  .navbar nav ul { flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
  .services .container { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .prompt-box { grid-template-columns: 1fr; padding: 10px; }
  #submit-prompt-btn { width: 48px; height: 48px; border-radius: 12px; justify-self: end; }
  .buttons-grid { grid-template-columns: 1fr; }
  .card { padding: 20px; }
}
@media (max-width: 480px) {
  .hero-payoff { margin-bottom: 20px; }
}

/* =====================
   Video Background
   ===================== */
.video-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-background-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

body > header,
body > main {
  position: relative;
  z-index: 1;
}

/* =====================
   Ideas Section
   ===================== */
.ideas-section { padding: 64px 0; text-align: center; }
.ideas-section h2 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; margin-bottom: 12px; }
.ideas-section p { max-width: 900px; margin: 0 auto 24px; opacity: 0.9; }
.ideas-section .ideas-video { width: 100%; max-width: 900px; border-radius: 12px; display: block; margin: 0 auto; border: 1px solid var(--surface-border); }

/* =====================
   Footer
   ===================== */
.site-footer {
  background-color: #1C1D1E;
  color: #a0a0a0;
  padding: 50px 0 0;
  font-size: 0.9em;
  position: relative;
  z-index: 1;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}
.footer-column h3, .footer-column h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer-column p { line-height: 1.6; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li a {
  color: #a0a0a0;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-column ul li a:hover { color: #ffffff; }
.social-icons a {
  margin-right: 15px;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover { color: #ffffff; }
.icon-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid #333; border-radius: 8px; color: #a0a0a0; transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
.icon-link:hover { background-color: #262729; color: #ffffff; border-color: #444; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 0.8em;
}
@media (max-width: 768px) {
  .footer-container { flex-direction: column; align-items: center; text-align: center; }
  .footer-column { margin: 20px 0; }
}



