/* ==========================================
   Kuemar — styles.css
   Palette: #0A0E17 bg | #111827 surface | #1F2937 border
            #06D6A0 accent | #E5E7EB text | #6B7280 muted
   ========================================== */

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

:root {
  --bg: #0A0E17;
  --surface: #111827;
  --border: #1F2937;
  --accent: #06D6A0;
  --accent-dim: rgba(6, 214, 160, 0.12);
  --text: #E5E7EB;
  --text-dim: #9CA3AF;
  --muted: #6B7280;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  image-rendering: auto;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.3rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent) !important;
}

.nav-cta:hover {
  background: var(--accent-dim) !important;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 41, 55, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 55, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.cursor-blink {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.hero-sla {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.pill {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.pill-icon {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pill strong {
  color: var(--text);
  font-weight: 600;
}

.pill small {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-jumps {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.jump-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.2s;
}

.jump-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #0A0E17;
}

.btn-primary:hover {
  background: #05c090;
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--accent);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.btn-full {
  display: block;
  text-align: center;
  margin-top: auto;
}

/* ========== SECTIONS ========== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-alt {
  background: rgba(17, 24, 39, 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
  padding-left: calc((100% - 1200px) / 2 + 2rem);
  padding-right: calc((100% - 1200px) / 2 + 2rem);
}

.section-title {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

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

.section-desc {
  text-align: center;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ========== CARD GRID ========== */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

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

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.card-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-dim);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-list li::before {
  content: '› ';
  color: var(--accent);
  font-weight: 700;
}

/* ========== TIMELINE ========== */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-marker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 55px;
  text-align: center;
}

.step-marker.ongoing {
  background: rgba(6, 214, 160, 0.22);
  animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { background: rgba(6, 214, 160, 0.22); }
  50% { background: rgba(6, 214, 160, 0.35); }
}

.step-content h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== CLOUD BADGES ========== */
.cloud-tier {
  margin-bottom: 2.5rem;
}

.cloud-tier:last-child {
  margin-bottom: 0;
}

.cloud-tier-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1rem;
}

.cloud-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cloud-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  min-width: 120px;
  transition: border-color 0.3s;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.cloud-badge:hover {
  border-color: var(--accent);
}

.cloud-logo {
  height: 28px;
  width: auto;
  transition: opacity 0.3s;
}

.cloud-logo-mono {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(0.8);
  transition: filter 0.3s;
}

.cloud-badge:hover .cloud-logo-mono {
  filter: brightness(0) invert(1);
}

.cloud-logo-text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ========== PRICING ========== */
.currency-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.currency-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.25rem;
}

.currency-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.currency-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.currency-btn.active {
  background: var(--accent);
  color: #0A0E17;
  border-color: var(--accent);
}

.sme-callout {
  display: none;
  max-width: 650px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  background: rgba(6, 214, 160, 0.06);
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.sme-callout.visible {
  display: block;
}

.sme-callout strong {
  color: var(--accent);
}

.sme-callout a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sme-callout a:hover {
  opacity: 0.8;
}

.pricing-card {
  position: relative;
  padding: 2rem;
}

.price-period {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.15rem;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(6, 214, 160, 0.08);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: #0A0E17;
  background: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  margin: 0.75rem 0 0.5rem;
  color: var(--text-dim);
  font-size: 1rem;
}

.price-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

.price-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-footnote a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-footnote a:hover {
  text-decoration: underline;
}

/* ========== CONTACT ========== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.contact-form .btn {
  margin-top: 0.5rem;
}

.form-confirmation {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  text-align: center;
}

.form-confirmation.visible {
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-email-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-email-link:hover {
  opacity: 0.8;
}

.footer-phone-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone-link:hover {
  color: var(--accent);
}

.footer-address {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .three-col {
    grid-template-columns: 1fr;
  }

  .section-alt {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .timeline-step {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .nav-links {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-bottom {
    padding: 1rem 1.5rem;
  }
}

/* ========== SERVICE PHASES ========== */
.service-phase {
  margin-bottom: 4rem;
  padding-top: 1rem;
}
.service-phase:last-child {
  margin-bottom: 0;
}
.phase-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.phase-header h3 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.phase-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phase-desc {
  color: var(--text-dim);
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.card h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-numbers {
  list-style: none;
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-numbers li strong {
  color: var(--text);
  font-weight: 600;
}

/* ========== FAQ ========== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: var(--accent);
}
.faq-item h4 {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 4rem 1.25rem;
  }
}
/* ==========================================
   Kuemar — Blog Styles
   Added to styles.css
   ========================================== */

