/*
Theme Name: TestForge
Theme URI: https://appforge.nl
Author: AppForge
Author URI: https://appforge.nl
Description: Marketing theme for TestForge — QA lifecycle SaaS (landing, features, pricing, login CTA).
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: testforge
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --tf-navy: #0f2744;
  --tf-teal: #1f8a7a;
  --tf-ink: #142033;
  --tf-muted: #5b6b80;
  --tf-bg: #f4f7fb;
  --tf-card: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--tf-ink);
  background: var(--tf-bg);
  line-height: 1.55;
}
a { color: var(--tf-teal); text-decoration: none; }
img { max-width: 100%; height: auto; }
.tf-wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.tf-header {
  background: var(--tf-navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.tf-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.tf-brand { color: #fff; font-weight: 800; letter-spacing: .02em; font-size: 1.2rem; }
.tf-nav { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.tf-nav a { color: #d7e3f4; }
.tf-nav a:hover { color: #fff; }
.tf-btn {
  display: inline-block;
  background: var(--tf-teal);
  color: #fff !important;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}
.tf-btn.ghost { background: transparent; border: 1px solid #7ea0c8; color: #fff !important; }
.tf-hero { background: linear-gradient(160deg, #0f2744 0%, #16455a 70%); color: #fff; padding: 72px 0 80px; }
.tf-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 16px; line-height: 1.15; }
.tf-hero p { max-width: 640px; color: #d7e3f4; font-size: 1.15rem; }
.tf-hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.tf-section { padding: 64px 0; }
.tf-section h2 { margin-top: 0; font-size: 2rem; }
.tf-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tf-card { background: var(--tf-card); border-radius: 16px; padding: 22px; box-shadow: 0 8px 24px rgba(15, 39, 68, .06); }
.tf-card h3 { margin-top: 0; }
.tf-price { font-size: 2.2rem; font-weight: 800; margin: 8px 0; }
.tf-price small { font-size: 1rem; color: var(--tf-muted); font-weight: 500; }
.tf-muted { color: var(--tf-muted); }
.tf-footer { background: var(--tf-navy); color: #d7e3f4; padding: 28px 0; }
.tf-footer a { color: #d7e3f4; }
.tf-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; background: #111827; color: #fff;
  padding: 16px; display: none; z-index: 40;
}
.tf-cookie-inner { width: min(1120px, calc(100% - 16px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.tf-lang { position: relative; }
.tf-lang button { background: #1c3b61; color: #fff; border: 0; border-radius: 8px; padding: 8px 10px; cursor: pointer; }
.tf-lang-menu { display: none; position: absolute; right: 0; background: #fff; color: #142033; min-width: 160px; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.tf-lang.open .tf-lang-menu { display: block; }
.tf-lang-menu a { display: block; padding: 8px 12px; color: #142033; }
.tf-cta { background: #e8f4f2; }
@media (max-width: 720px) {
  .tf-header-inner { flex-direction: column; align-items: flex-start; }
}
