/* Base & Variables */
:root {
  --bg: #0b0f14;
  --bg-soft: #111823;
  --text: #e6edf5;
  --text-muted: #9fb0c6;
  --primary: #3b82f6;
  --primary-600: #2563eb;
  --accent: #22d3ee;
  --border: #1f2a38;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --radius: 12px;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.6);
  --container: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 10% -10%, #0f1724 0%, #0b0f14 60%, #070a0f 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #f2f6ff;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: #06101a;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: #2a3b52;
  background: rgba(255, 255, 255, 0.03);
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.2px;
}

.accent {
  color: var(--accent);
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-toggle {
  display: grid;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 14px;
}

.hero-subtitle {
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero-visual {
  display: none;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-visual {
    display: block;
  }
}

/* Hero mock browser */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, #0f1724, #0b1119);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.mock-browser {
  background: #0a0f16;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.mock-header {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #0d1420;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mock-body {
  padding: 16px;
}

.mock-line {
  height: 10px;
  background: #152033;
  border-radius: 6px;
  margin-bottom: 10px;
}

.mock-line.short { width: 40%; }
.mock-line.long { width: 80%; }

.floating-badge {
  position: absolute;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  backdrop-filter: blur(6px);
}

.badge-1 { top: 20%; left: -10%; }
.badge-2 { bottom: 25%; right: -8%; }
.badge-3 { top: 55%; left: -6%; }

/* Sections */
.section {
  padding: 70px 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: linear-gradient(180deg, #0f1724, #0b1119);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.service-list {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  background: linear-gradient(180deg, #0f1724, #0b1119);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: linear-gradient(180deg, #0f1724, #0b1119);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: #06101a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.2rem;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f2f6ff;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-features {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-features li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 18px;
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-list {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.about-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.about-card {
  background: linear-gradient(180deg, #0f1724, #0b1119);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f2f6ff;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact-form {
  background: linear-gradient(180deg, #0f1724, #0b1119);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0a0f16;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.contact-details {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details li {
  margin-bottom: 6px;
}

.contact-cta p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  background: rgba(11, 15, 20, 0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1.8fr;
  }
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f2f6ff;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}