/* GetProCenter — Modern landing styles */
:root {
  --bg: #0d0f14;
  --bg-card: #161a22;
  --bg-elevated: #1c2129;
  --text: #e6e9ef;
  --text-muted: #9ca3b4;
  --accent: #7dd3fc;
  --accent-hover: #38bdf8;
  --accent-soft: rgba(125, 211, 252, 0.12);
  --border: #2d333b;
  --success: #4ade80;
  --error: #f87171;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--accent); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}
.burger span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-soft) 0%, transparent 55%);
}
.hero-inner { text-align: center; }
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--border);
  color: var(--text);
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* About */
.about { background: var(--bg-card); }
.about-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.about-inner p { color: var(--text-muted); margin-bottom: 1rem; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.about-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text);
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Contact form */
.contact { padding-bottom: 5rem; }
.contact-intro {
  text-align: center;
  color: var(--text-muted);
  margin: -1rem 0 2rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 500;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); opacity: 0.8; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-consent {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-consent a { color: var(--accent); text-decoration: none; }
.form-consent a:hover { text-decoration: underline; }
.form-status {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand { flex: 1 1 280px; }
.footer-brand p { margin: 0 0 0.25rem; color: var(--text-muted); font-size: 0.9rem; }
.footer-brand p:last-child { margin-bottom: 0; }
.footer p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.footer-nav {
  display: flex;
  gap: 1.25rem;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: var(--accent); }

/* Policy pages */
.policy-page { padding: 3rem 0 4rem; min-height: 60vh; }
.policy-content {
  max-width: 720px;
  margin: 0 auto;
}
.policy-content h1 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}
.policy-updated {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.policy-content section { margin-bottom: 2rem; }
.policy-content h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.policy-content p, .policy-content ul { margin: 0 0 0.75rem; color: var(--text-muted); }
.policy-content ul { padding-left: 1.5rem; }
.policy-content a {
  color: var(--accent);
  text-decoration: none;
}
.policy-content a:hover { text-decoration: underline; }

/* Cookie modal */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s ease;
}
.cookie-modal[hidden] { display: none !important; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-content { max-width: 640px; margin: 0 auto; }
.cookie-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.cookie-content p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.cookie-content a { color: var(--accent); text-decoration: none; }
.cookie-content a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elevated);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .burger { display: flex; }
  .hero { padding: 3rem 0 4rem; }
  .section { padding: 3rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
