/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #0a0e1a;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===========================
   VARIABLES
=========================== */
:root {
  --blue:       #3b82f6;
  --blue-dark:  #2563eb;
  --blue-glow:  rgba(59,130,246,0.25);
  --accent:     #06b6d4;
  --bg:         #0a0e1a;
  --bg-card:    #111827;
  --bg-card2:   #1a2235;
  --border:     rgba(255,255,255,0.07);
  --text:       #e2e8f0;
  --muted:      #94a3b8;
  --radius:     14px;
  --shadow:     0 4px 40px rgba(0,0,0,0.4);
}

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 24px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===========================
   SECTION SHARED
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(59,130,246,0.12);
  color: var(--blue);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}

.logo-icon {
  color: var(--blue);
  font-size: 16px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px var(--blue-glow);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; left: -200px;
}

.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: 10%; right: -100px;
}

.shape-3 {
  width: 300px; height: 300px;
  background: #8b5cf6;
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
}

.hero-content { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-block;
  background: rgba(59,130,246,0.12);
  color: var(--blue);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: left; }

.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Browser Mockup */
.hero-visual {
  flex: 0 0 440px;
  max-width: 440px;
}

.browser-mockup {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  animation: float 6s ease-in-out infinite;
}

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

.browser-bar {
  background: #1e2a3d;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 6px; }

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  font-family: monospace;
}

.browser-body { padding: 20px; }

.mock-header {
  height: 36px;
  background: linear-gradient(90deg, var(--blue-dark), var(--accent));
  border-radius: 8px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.mock-hero-block {
  height: 120px;
  background: rgba(59,130,246,0.1);
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(59,130,246,0.15);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mock-card {
  height: 64px;
  background: var(--bg-card2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.mock-text-lines { display: flex; flex-direction: column; gap: 8px; }

.mock-line {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.mock-line.long   { width: 100%; }
.mock-line.medium { width: 72%; }
.mock-line.short  { width: 48%; }

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(59,130,246,0.1);
}

.service-card.featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(160deg, #111f3a 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(59,130,246,0.1);
}

.service-icon {
  font-size: 36px;
  line-height: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  flex: 1;
}

.service-features li {
  font-size: 14px;
  color: #cbd5e1;
  display: flex;
  gap: 8px;
}

.service-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  margin-top: 8px;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

/* ===========================
   PRICING
=========================== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(59,130,246,0.03) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-card.highlight {
  border-color: var(--blue);
  background: linear-gradient(160deg, #0f2040 0%, var(--bg-card) 100%);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
  transform: scale(1.04);
}

.pricing-card.highlight:hover { transform: scale(1.04) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-range {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-from {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.price-sep {
  font-size: 20px;
  color: var(--muted);
}

.price-to {
  font-size: 38px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.price-period-label {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  margin-left: -4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-note {
  font-size: 12px;
  color: #64748b;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px 14px;
  border-left: 3px solid var(--blue-dark);
  line-height: 1.5;
}

/* ===========================
   WHY US
=========================== */
.why-us {
  padding: 100px 0;
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.25);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   PROCESS
=========================== */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.03), transparent);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(59,130,246,0.2);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: rgba(59,130,246,0.3);
  padding-top: 20px;
  flex-shrink: 0;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { padding-top: 10px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.contact-icon { font-size: 18px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--muted);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #475569;
}

.form-group select option {
  background: #1e293b;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-disclaimer {
  font-size: 12px;
  color: #475569;
  text-align: center;
  margin-top: -6px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #070b14;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: #475569;
}

/* ===========================
   TOAST NOTIFICATION
=========================== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e293b;
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 4px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { align-items: center; display: flex; flex-direction: column; }
  .hero-subtitle { text-align: center; }
  .hero-visual { flex: none; max-width: 480px; width: 100%; }
  .services-grid,
  .pricing-grid,
  .why-grid { grid-template-columns: 1fr; }
  .pricing-card.highlight { transform: none; }
  .pricing-card.highlight:hover { transform: translateY(-4px); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info .section-title,
  .contact-info .section-subtitle { text-align: center !important; }
  .contact-details { align-items: center; }
  .trust-badges { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .hamburger { display: flex; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-stats { justify-content: center; gap: 20px; }
  .contact-form-wrapper { padding: 24px; }
}
