/*
Theme Name:  IQFence
Theme URI:   https://iqfence.com
Author:      IQFence
Description: Operational Intelligence Platform — pixel-perfect WordPress conversion of the IQFence landing page. Dark tech theme with purple accents, Syne + DM Sans fonts, full scroll-reveal animations, fully editable via Customizer.
Version:     1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iqfence
Tags:        dark, technology, custom-menu, custom-logo, full-width-template, one-page
*/

/* ─────────────────────────────────────────────────────────────────
   EXACT CSS FROM ORIGINAL HTML — UNCHANGED
───────────────────────────────────────────────────────────────── */
:root {
  --bg:            #080810;
  --surface:       #0f0f1a;
  --surface2:      #16162a;
  --purple:        #7c3aed;
  --purple-light:  #9d5ff5;
  --purple-dim:    rgba(124,58,237,0.15);
  --purple-border: rgba(124,58,237,0.3);
  --white:         #ffffff;
  --muted:         rgba(255,255,255,0.55);
  --accent-green:  #22c55e;
  --accent-red:    #ef4444;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.03em;
}
.logo span { color: var(--purple-light); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a { color: var(--muted); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
nav ul a:hover { color: var(--white); }
.nav-cta {
  background: var(--purple); color: #fff; border: none; cursor: pointer;
  padding: .55rem 1.4rem; border-radius: 6px; font-family: var(--font-body);
  font-size: .875rem; font-weight: 500; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--purple-light); transform: translateY(-1px); color: #fff; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: var(--purple);
  color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 4px; margin-bottom: 1.4rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 5% 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(124,58,237,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124,58,237,0.10) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.04em; margin-bottom: 1.5rem;
}
.hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600; margin-bottom: 1.5rem; line-height: 1.3;
}
.hero-subline {
  color: var(--muted); font-size: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--purple);
  margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--purple); color: #fff; border: none; cursor: pointer;
  padding: .85rem 2rem; border-radius: 8px; font-family: var(--font-body);
  font-size: 1rem; font-weight: 500; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(124,58,237,0.4);
  display: inline-block;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 0 40px rgba(124,58,237,0.6); color: #fff; }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  padding: .85rem 2rem; border-radius: 8px; font-family: var(--font-body);
  font-size: 1rem; font-weight: 500; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--purple-light); background: var(--purple-dim); color: var(--white); }

/* ── SECTION COMMON ── */
section { padding: 7rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 660px; margin-top: .75rem; }

/* ── MARKET REALITY ── */
#market { background: var(--surface); }
.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.market-card {
  background: var(--surface2);
  border: 1px solid var(--purple-border);
  border-radius: 12px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.market-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(124,58,237,0.15); }
.market-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.card-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.market-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.market-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.market-card strong { color: var(--white); }

/* ── PROBLEM ── */
#problem { background: var(--bg); }
.problem-items { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: grid; grid-template-columns: 100px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0;
  transition: background .2s;
}
.problem-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.problem-num {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: .3rem;
}
.problem-num span {
  width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), #4c1d95);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
}
.problem-text h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.problem-text p { color: var(--muted); font-size: .95rem; max-width: 640px; }
.problem-text strong { color: var(--white); }

/* ── SOLUTION ── */
#solution { background: var(--surface); }
.solution-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.solution-card {
  border-left: 3px solid var(--purple);
  padding: 0 0 0 1.5rem;
}
.solution-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--white); }
.solution-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── COMPARISON ── */
#comparison { background: var(--bg); }
.compare-intro { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; }
.compare-intro strong { color: var(--white); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 1.1rem 1.5rem; text-align: left; font-size: .9rem;
}
.compare-table th { font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .05em; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.1); }
.compare-table td { border-bottom: 1px solid rgba(255,255,255,0.05); }
.compare-table tr:hover td { background: var(--surface); }
.compare-table .col-dim { color: var(--muted); }
.compare-table .col-bad { color: #f87171; }
.compare-table .col-good { color: #86efac; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: .5rem; vertical-align: middle; }
.dot-red { background: var(--accent-red); }
.dot-green { background: var(--accent-green); }
.compare-wrapper {
  border: 1px solid var(--purple-border); border-radius: 14px; overflow: hidden;
  background: var(--surface2);
}

/* ── INTEGRATION ── */
#integration { background: var(--surface); }
.integration-intro { color: var(--muted); margin-bottom: 3rem; }
.integration-items { display: flex; flex-direction: column; gap: 1.5rem; }
.integration-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.5rem; align-items: start;
  padding: 1.75rem;
  background: var(--surface2);
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  transition: transform .2s;
}
.integration-item:hover { transform: translateX(6px); }
.int-num {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  flex-shrink: 0;
}
.int-text h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.int-text p { color: var(--muted); font-size: .9rem; }

/* ── DEPLOYMENT ── */
#deployment { background: var(--bg); }
.deploy-note {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px; padding: 1rem 1.5rem;
  color: #86efac; font-size: .9rem; margin-bottom: 3rem;
}
.deploy-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.deploy-step {
  background: var(--surface2); border: 1px solid var(--purple-border);
  border-radius: 12px; padding: 2rem;
  position: relative;
}
.deploy-step-num {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), #4c1d95);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  margin-bottom: 1rem;
}
.deploy-day { color: var(--purple-light); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.deploy-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.deploy-step p { color: var(--muted); font-size: .85rem; line-height: 1.6; }

/* ── HOW IT WORKS ── */
#howworks { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.step-card {
  background: var(--bg);
  border: 1px solid var(--purple-border);
  border-radius: 14px; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.step-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; color: var(--purple-light); text-transform: uppercase; margin-bottom: .75rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: .75rem; }
.step-card p { color: var(--muted); font-size: .9rem; }

/* ── USE CASES ── */
#usecases { background: var(--bg); }
.usecases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.usecase-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 2rem;
  position: relative;
}
.uc-arrow {
  width: 52px; height: 52px;
  background: linear-gradient(180deg, var(--purple) 0%, #4c1d95 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  margin-bottom: 1.2rem; color: white;
}
.usecase-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.usecase-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ── ROI ── */
#roi { background: var(--surface); }
.roi-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
@media (max-width: 768px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-drivers {
  background: var(--purple);
  border-radius: 14px; padding: 2.5rem;
}
.roi-drivers h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; }
.driver { margin-bottom: 1.5rem; }
.driver h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: #e9d5ff; margin-bottom: .3rem; }
.driver p { font-size: .85rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin: 0; }
.roi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-content: start; }
@media (max-width: 540px) { .roi-stats { grid-template-columns: 1fr; } }
.stat-box {
  background: var(--surface2); border: 1px solid var(--purple-border);
  border-radius: 12px; padding: 2rem; text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--white); line-height: 1;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box .stat-label { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--white); margin: .5rem 0 .4rem; }
.stat-box .stat-sub { color: var(--muted); font-size: .78rem; }
.roi-note {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px; padding: 1rem 1.5rem;
  color: #86efac; font-size: .9rem;
  margin-top: .5rem;
}

/* ── CTA ── */
#cta {
  background: var(--bg);
  text-align: center;
  padding: 8rem 5%;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(124,58,237,0.18) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.2rem;
}
.cta-inner > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 3rem; }
.cta-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; text-align: left; }
.cta-card {
  background: var(--purple);
  border-radius: 14px; padding: 2rem;
  transition: transform .2s, box-shadow .2s;
}
.cta-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(124,58,237,0.3); }
.cta-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; color: #e9d5ff; }
.cta-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.cta-card p { font-size: .88rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }
.cta-tagline { margin-top: 3rem; color: var(--muted); font-size: .9rem; }
.cta-tagline strong { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
footer .logo { font-size: 1.2rem; }
footer p { color: var(--muted); font-size: .8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp .7s ease both; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ─────────────────────────────────────────────────────────────────
   WORDPRESS ADDITIONS (non-breaking extras on top of original)
───────────────────────────────────────────────────────────────── */

/* WP admin bar offset */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

/* Custom logo in nav */
.custom-logo-link img { height: 36px; width: auto; display: block; }

/* Mobile nav */
@media (max-width: 768px) {
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; gap: 1rem; position: fixed; top: 70px; left: 0; right: 0; background: rgba(8,8,16,0.97); backdrop-filter: blur(14px); padding: 2rem 5%; border-bottom: 1px solid rgba(124,58,237,0.2); z-index: 99; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .problem-item { grid-template-columns: 60px 1fr; }
}

/* WP alignment helpers */
.aligncenter { margin: 0 auto; }
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
img.wp-post-image { border-radius: 12px; }

/* Widget area */
.widget-title { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.widget ul { list-style: none; padding: 0; }
.widget ul li { margin-bottom: .5rem; }
.widget ul a { color: var(--muted); font-size: .875rem; }
.widget ul a:hover { color: var(--white); }

/* Entry content (blog posts / pages) */
.entry-content { color: var(--muted); line-height: 1.8; }
.entry-content h2, .entry-content h3 { font-family: var(--font-display); color: var(--white); margin: 2rem 0 .75rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content a { color: var(--purple-light); }
.entry-content strong { color: var(--white); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: .4rem; }

/* Blog grid */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem; }
.post-card { background: var(--surface2); border: 1px solid var(--purple-border); border-radius: 12px; overflow: hidden; transition: transform .2s; }
.post-card:hover { transform: translateY(-4px); }
.post-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-card-meta { font-size: .75rem; color: var(--purple-light); font-weight: 600; margin-bottom: .5rem; }
.post-card-body h2 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.post-card-body h2 a { color: var(--white); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--purple-light); }
.post-card-body p { font-size: .875rem; }
.post-card-read { color: var(--purple-light); font-size: .8rem; font-weight: 600; text-decoration: none; }

/* Pagination */
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--surface2); border: 1px solid var(--purple-border); border-radius: 6px; font-size: .85rem; color: var(--muted); text-decoration: none; transition: all .2s; }
.pagination a:hover, .pagination .current { background: var(--purple); border-color: var(--purple); color: #fff; }

/* 404 */
.error-404-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 5%; }
.error-num { font-family: var(--font-display); font-size: clamp(6rem, 18vw, 11rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--purple) 0%, transparent 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Page hero (inner pages) */
.page-hero { padding: calc(70px + 4rem) 5% 4rem; background: var(--surface); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 65% at 80% 40%, rgba(124,58,237,0.12) 0%, transparent 65%); }
.page-hero .inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.03em; }
.page-hero p { color: var(--muted); font-size: 1.05rem; }

/* Contact form */
.contact-form-wrap { max-width: 760px; margin: 0 auto; }
.iqf-form .form-group { margin-bottom: 1.25rem; }
.iqf-form label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.iqf-form input, .iqf-form textarea, .iqf-form select {
  width: 100%; background: var(--surface2); border: 1px solid var(--purple-border);
  border-radius: 8px; padding: .8rem 1rem; color: var(--white);
  font-family: var(--font-body); font-size: .9375rem; outline: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.iqf-form input::placeholder, .iqf-form textarea::placeholder { color: rgba(255,255,255,.25); }
.iqf-form input:focus, .iqf-form textarea:focus, .iqf-form select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,.15); }
.iqf-form textarea { resize: vertical; min-height: 120px; }
.iqf-form select option { background: var(--surface2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); border-radius: 10px; padding: 1.25rem 1.5rem; color: #86efac; margin-bottom: 1.5rem; }

/* Customizer-driven color overrides output via wp_head */
