/*
Theme Name: FiksIT Repair Pro Premium
Theme URI: https://example.com
Author: ChatGPT
Description: Premium bilingual IT repair shop WordPress theme with CRM shortcode support.
Version: 6.4.0
Text Domain: fiksit-repair-pro
*/

:root {
  --bg: #050914;
  --bg2: #081322;
  --bg3: #0d1b2f;
  --panel: rgba(255,255,255,.075);
  --panel-strong: rgba(255,255,255,.12);
  --glass: rgba(8,19,34,.72);
  --text: #f4f8ff;
  --muted: #a7b7cc;
  --soft: #dbeafe;
  --brand: #38bdf8;
  --brand2: #22c55e;
  --brand3: #818cf8;
  --warning: #f59e0b;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.22);
  --paper: #f8fbff;
  --ink: #07111f;
  --ink-soft: #44546a;
  --radius-xl: 34px;
  --shadow: 0 34px 90px rgba(0,0,0,.35);
  --shadow-soft: 0 20px 50px rgba(2,8,23,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(56,189,248,.26), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(34,197,94,.18), transparent 26%),
    radial-gradient(circle at 55% 0%, rgba(129,140,248,.16), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg2) 42%, #07111f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 78%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1320px, calc(100% - 40px)); margin: 0 auto; }
.container.wide { width: min(1520px, calc(100% - 40px)); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5,9,20,.78);
  backdrop-filter: blur(22px);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 950;
  letter-spacing: -.045em;
  font-size: 1.3rem;
}
.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #031120;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), transparent 36%),
    linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 44px rgba(56,189,248,.26);
}
.nav-links {
  display:flex;
  align-items:center;
  gap: 18px;
  color: var(--muted);
  font-weight: 850;
  font-size: .94rem;
}
.nav-links a {
  padding: 9px 10px;
  border-radius: 999px;
  transition: .16s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.nav-actions { display:flex; align-items:center; gap: 10px; }
.lang-toggle, .btn {
  border-radius: 999px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  font-weight: 950;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.lang-toggle {
  background: rgba(255,255,255,.07);
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), transparent 32%),
    linear-gradient(135deg, var(--brand), var(--brand2));
  color: #04111f;
  border-color: transparent;
  box-shadow: 0 18px 46px rgba(56,189,248,.22);
}
.btn.secondary {
  background: rgba(255,255,255,.075);
  color: var(--text);
  border-color: var(--line);
  box-shadow:none;
}
.btn:hover, .lang-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
}

.hero {
  padding: 94px 0 82px;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% 4% auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(56,189,248,.15), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid {
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
  gap: 60px;
  align-items:center;
}
.badge {
  display:inline-flex;
  gap:9px;
  align-items:center;
  border:1px solid rgba(56,189,248,.30);
  background: linear-gradient(135deg, rgba(56,189,248,.12), rgba(34,197,94,.08));
  color:#c8f2ff;
  border-radius:999px;
  padding:9px 13px;
  font-weight:950;
  font-size:.9rem;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand2);
  box-shadow: 0 0 20px var(--brand2);
}
h1 {
  font-size: clamp(2.85rem, 6.9vw, 6.45rem);
  line-height:.90;
  letter-spacing:-.095em;
  margin: 20px 0;
}
.gradient-text {
  background: linear-gradient(135deg, #fff, #bae6fd 44%, #bbf7d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: var(--muted);
  font-size: clamp(1.07rem, 2vw, 1.32rem);
  max-width: 760px;
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 800px;
}
.proof-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 20px;
  padding: 14px 15px;
}
.proof-item strong {
  display: block;
  font-size: 1.04rem;
}
.proof-item span {
  color: var(--muted);
  font-size: .92rem;
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.055)),
    linear-gradient(135deg, rgba(56,189,248,.11), rgba(34,197,94,.08));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.22), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(34,197,94,.16), transparent 34%);
  pointer-events: none;
}
.device-visual {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: rgba(2,8,23,.56);
  border: 1px solid rgba(255,255,255,.13);
}
.laptop-frame {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15,23,42,.95), rgba(15,23,42,.70));
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.screen-bar { height: 9px; width: 90px; border-radius:999px; background: rgba(255,255,255,.16); margin-bottom: 16px; }
.screen-grid { display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.screen-grid div { min-height: 72px; border-radius:16px; background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08); }
.screen-grid div:first-child {
  background: linear-gradient(135deg, rgba(56,189,248,.28), rgba(129,140,248,.14));
}
.screen-grid div:nth-child(2) {
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(56,189,248,.10));
}
.status-row {
  position: relative;
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.status-pill {
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:center;
  border-radius: 18px;
  padding: 12px 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.status-pill b { color: #fff; }
.status-pill span { color: var(--muted); font-size:.92rem; }

.metric {
  position: relative;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.075);
  border:1px solid var(--line);
  margin-top:14px;
}
.metric strong { display:block; font-size:1.22rem; margin-bottom:5px; }
.metric p { margin:0; color:var(--muted); }
.metric-row {
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-top:1px solid var(--line);
  margin-top:12px;
  padding-top:12px;
  color:var(--muted);
}

.section { padding: 92px 0; }
.section-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title {
  font-size: clamp(2.15rem, 4.2vw, 3.75rem);
  letter-spacing:-.075em;
  line-height:.96;
  margin:0 0 14px;
}
.section-lead {
  color: var(--muted);
  max-width:820px;
  margin:0 0 34px;
  font-size:1.1rem;
}
.section-head {
  display:flex;
  justify-content:space-between;
  gap: 28px;
  align-items:end;
  margin-bottom: 34px;
}
.section-kicker {
  color: #7dd3fc;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .13em;
  font-weight: 950;
  margin-bottom: 8px;
}

.grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:22px; }
.grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:42px; align-items: start; }
.card {
  position: relative;
  padding:28px;
  min-height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -15% -30% auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(56,189,248,.12), transparent 62%);
  pointer-events: none;
}
.card h3 { margin:0 0 8px; font-size:1.32rem; letter-spacing:-.02em; }
.card p { margin:0; color:var(--muted); }
.icon {
  width:54px;
  height:54px;
  border-radius:19px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(56,189,248,.20), rgba(34,197,94,.13));
  color:#bae6fd;
  font-weight:950;
  margin-bottom:16px;
  border: 1px solid rgba(255,255,255,.12);
}
.ul { list-style:none; padding:0; margin:16px 0 0; color: var(--muted); }
.ul li { border-top:1px solid var(--line); padding:8px 0; }

.trust-strip {
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.trust-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
}
.trust-card strong {
  display:block;
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.trust-card span {
  color: var(--muted);
}

.price-table {
  display: grid;
  gap: 12px;
}
.price-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.055));
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.price-table-row strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.price-table-row p {
  color: var(--muted);
  margin: 0;
}
.price-table-price {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -.05em;
  white-space: nowrap;
  color: #b9ecff;
}

.form-panel, .light-panel {
  background: var(--paper);
  color: var(--ink);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.28);
}
.form-panel h2, .form-panel h3, .light-panel h2, .light-panel h3 { color: var(--ink); }
.form-panel p, .light-panel p { color:#43536a; }

.ircrm-form input, .ircrm-form textarea, .ircrm-form select {
  width:100%;
  border:1px solid #dbe3ef;
  border-radius:16px;
  padding:14px 15px;
  font:inherit;
  margin-bottom:12px;
  background:#fff;
  color:#07111f;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.ircrm-form input:focus, .ircrm-form textarea:focus, .ircrm-form select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.14);
}
.ircrm-form textarea { min-height:118px; resize:vertical; }
.ircrm-form button {
  width:100%;
  border:0;
  border-radius:999px;
  padding:15px 18px;
  background: linear-gradient(135deg, #0284c7, #16a34a);
  color:#fff;
  font-weight:950;
  cursor:pointer;
  box-shadow: 0 16px 34px rgba(2,132,199,.22);
}
.ircrm-notice {
  padding:12px 14px;
  border-radius:14px;
  margin-bottom:14px;
  background:#dcfce7;
  color:#14532d;
  font-weight:800;
}
.ircrm-status-anchor {
  position: relative;
  top: -100px;
  height: 1px;
}
.ircrm-status-result {
  margin-top: 16px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #07111f;
  border-radius: 18px;
  padding: 18px;
}
.ircrm-status-result:focus {
  outline: 2px solid rgba(56,189,248,.45);
  outline-offset: 4px;
}
.ircrm-public-comment {
  border-top: 1px solid #dbe3ef;
  padding-top: 10px;
  margin-top: 10px;
}

.cta-panel {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(56,189,248,.22), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(34,197,94,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.cta-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.07em;
  margin: 0 0 12px;
}
.cta-panel p { color: var(--muted); margin: 0; }

.footer {
  border-top:1px solid var(--line);
  padding:46px 0;
  color:var(--muted);
  background: rgba(0,0,0,.12);
}
.footer strong { color: var(--text); }

[data-lang="nl"] .en, [data-lang="en"] .nl { display: none !important; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid, .grid-2, .grid-3, .cta-panel { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .nav-links { display:none; }
  .hero { padding-top:54px; }
  .hero-proof, .trust-strip { grid-template-columns: 1fr 1fr; }
  .section-head { display:block; }
}
@media (max-width: 720px) {
  .container, .container.wide { width: min(100% - 28px, 1520px); }
  .hero-proof, .trust-strip { grid-template-columns: 1fr; }
  .price-table-row { grid-template-columns: 1fr; }
  .nav-inner { min-height: 70px; }
  .logo-mark { width: 42px; height: 42px; border-radius: 15px; }
  .nav-actions .btn.secondary { display:none; }
  .form-panel, .light-panel, .cta-panel { padding: 22px; border-radius: 26px; }
  h1 { letter-spacing: -.075em; }
}


/* v6.2 hero visual + footer page links */
.screen-tile {
  min-height: 82px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.screen-tile span {
  color: #a7b7cc;
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.screen-tile strong {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.1;
}
.screen-grid .screen-tile:first-child {
  background: linear-gradient(135deg, rgba(56,189,248,.28), rgba(129,140,248,.14));
}
.screen-grid .screen-tile:nth-child(2) {
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(56,189,248,.10));
}
.screen-grid .screen-tile:nth-child(3) {
  background: linear-gradient(135deg, rgba(245,158,11,.22), rgba(56,189,248,.08));
}
.screen-grid .screen-tile:nth-child(4) {
  background: linear-gradient(135deg, rgba(129,140,248,.22), rgba(255,255,255,.06));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 26px;
  align-items: start;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--text);
}
.footer small {
  display: block;
  margin-top: 22px;
  color: rgba(167,183,204,.75);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* v6.4 legal agreement checkbox */
.ircrm-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #43536a;
  font-size: .94rem;
  margin: 4px 0 14px;
}
.ircrm-consent input {
  width: auto !important;
  margin-top: 4px;
}
.ircrm-consent a {
  color: #0369a1;
  font-weight: 800;
  text-decoration: underline;
}
