/*
Theme Name: Connectfy
Theme URI: https://www.connectfy.net
Author: Connectfy
Author URI: https://www.connectfy.net
Description: Official WordPress theme for Connectfy — Secure & Cost-Effective Integration Solutions. Replicates connectfy.net exactly.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: connectfy
Tags: dark, technology, business, custom-menu, full-width-template
*/

/* ─── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #07080f;
  color: #c9d1e0;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── VARIABLES ────────────────────────────────────── */
:root {
  --accent:        #8b5cf6;   /* violet / purple */
  --accent-light:  #a78bfa;
  --accent-hover:  #7c3aed;
  --bg-dark:       #07080f;
  --bg-mid:        #0e1120;
  --bg-card:       #131828;
  --bg-card-hover: #182036;
  --border:        rgba(139,92,246,0.18);
  --border-soft:   rgba(255,255,255,0.07);
  --text-white:    #ffffff;
  --text-body:     #c9d1e0;
  --text-muted:    #7d8fa8;
  --nav-h:         70px;
  --max-w:         1200px;
  --pad-section:   90px 0;
  --radius:        12px;
}

/* ─── NAVIGATION ───────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(7,8,15,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center;
  padding: 0 5%;
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-white); white-space: nowrap;
}
.site-logo img { height: 30px; width: auto; }
.site-logo span { color: var(--accent-light); }

/* Primary nav */
#primary-menu {
  display: flex; align-items: center; gap: 0.1rem;
  flex-wrap: wrap;
}
#primary-menu > li { position: relative; }
#primary-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 7px 11px; border-radius: 6px;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a {
  color: #fff; background: rgba(139,92,246,0.15);
}
/* Dropdown */
#primary-menu .sub-menu {
  display: none; position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 200;
}
#primary-menu li:hover > .sub-menu { display: block; }
#primary-menu .sub-menu li a {
  display: block; padding: 9px 14px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-body);
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
#primary-menu .sub-menu li a:hover { color: #fff; background: rgba(139,92,246,0.18); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: var(--accent); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 7px; white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff; }

/* ─── HERO / PAGE BANNER ───────────────────────────── */
.site-hero {
  position: relative; width: 100%;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: calc(var(--nav-h) + 80px) 5% 90px;
}
.page-hero {
  position: relative; width: 100%;
  min-height: 65vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: calc(var(--nav-h) + 60px) 5% 70px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,8,15,0.55) 0%,
    rgba(7,8,15,0.45) 40%,
    rgba(7,8,15,0.72) 100%
  );
}
/* Glowing orb overlay on hero */
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(139,92,246,0.20) 0%, transparent 70%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
}
.hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--text-white);
  line-height: 1.15; margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero-inner h1 strong { color: var(--accent-light); }
.hero-inner p {
  font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,0.82);
  max-width: 760px; margin: 0 auto 2rem;
  line-height: 1.85;
}
.hero-inner ul {
  text-align: left; max-width: 640px; margin: 0 auto 2.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hero-inner ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; color: rgba(255,255,255,0.78);
}
.hero-inner ul li::before {
  content: '›'; color: var(--accent-light);
  font-size: 1.2rem; flex-shrink: 0; margin-top: -1px;
}
.pricing-note {
  font-size: 0.88rem; color: var(--accent-light);
  font-weight: 600; margin: 0 auto 2rem; text-align: center;
}

/* ─── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--accent); color: #fff;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border: 1px solid var(--accent); color: var(--accent-light);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 8px; background: transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-light); font-size: 0.88rem; font-weight: 600;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost::after { content: '→'; transition: margin 0.2s; }
.btn-ghost:hover::after { margin-left: 4px; }

/* ─── SECTIONS ─────────────────────────────────────── */
.section-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.ks-section { padding: var(--pad-section); }
.ks-section--dark  { background: var(--bg-dark); }
.ks-section--mid   { background: var(--bg-mid); }
.ks-section--card  { background: var(--bg-card); }

/* ─── TYPOGRAPHY ───────────────────────────────────── */
.label-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 0.7rem;
  padding: 4px 10px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
}
.section-h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  font-weight: 700; color: var(--text-white);
  line-height: 1.2; margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700; color: var(--text-white);
  line-height: 1.25; margin-bottom: 1rem;
}
.section-body {
  font-size: 0.95rem; color: var(--text-body);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.section-body strong { color: var(--text-white); font-weight: 600; }

/* ─── TWO COLUMN GRID ──────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.two-col.gap-lg { gap: 5rem; }
.two-col.top { align-items: flex-start; }

/* ─── IMAGE WRAPPERS ───────────────────────────────── */
.img-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.img-wrap img { width: 100%; display: block; }
.img-glow {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 0 60px rgba(139,92,246,0.2), 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}
.img-glow img { width: 100%; display: block; }

/* ─── CARDS ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.ks-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.ks-card:hover {
  border-color: rgba(139,92,246,0.5);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 30px rgba(139,92,246,0.12);
}
.ks-card .card-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(139,92,246,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.ks-card .card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent-light); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ks-card h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 0.5rem;
}
.ks-card p { font-size: 0.87rem; color: var(--text-body); line-height: 1.7; }

/* ─── FEATURE LIST ─────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 7px;
}
.feature-item h5 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 3px;
}
.feature-item p { font-size: 0.86rem; color: var(--text-body); line-height: 1.65; }
.feature-item-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 9px;
  background: rgba(139,92,246,0.13);
  display: flex; align-items: center; justify-content: center;
}
.feature-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent-light); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── STATS ────────────────────────────────────────── */
.stats-row { display: flex; gap: 2rem; margin: 2rem 0; }
.stat-box {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); flex: 1;
}
.stat-num {
  font-size: 2.8rem; font-weight: 800;
  color: var(--accent-light); line-height: 1;
  display: block; margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── MARKETPLACE CONNECTORS ───────────────────────── */
.connectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.connector-tile {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  display: block;
}
.connector-tile:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(139,92,246,0.18);
}
.connector-tile img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.connector-label {
  padding: 0.75rem 1rem;
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-white); text-align: center;
  border-top: 1px solid var(--border);
}
.connector-sub {
  font-size: 0.7rem; color: var(--text-muted);
  display: block; margin-top: 2px;
}

/* ─── VIDEO THUMBNAIL ──────────────────────────────── */
.yt-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #000; display: block; cursor: pointer;
  box-shadow: 0 0 40px rgba(139,92,246,0.15), 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.yt-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.yt-wrap:hover img { transform: scale(1.04); }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.yt-play:hover { background: #ff0000; transform: translate(-50%,-50%) scale(1.1); }
.yt-play::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

/* ─── TESTIMONIAL ──────────────────────────────────── */
.testimonial-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 2rem;
  margin-top: 2rem;
}
.testimonial-text {
  font-size: 0.95rem; font-style: italic;
  color: var(--text-body); line-height: 1.8; margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-author img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent);
}
.testimonial-author .author-name {
  font-size: 0.88rem; font-weight: 700; color: var(--text-white);
}
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }

/* ─── SCREENSHOT GALLERY ───────────────────────────── */
.screenshot-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2rem;
}
.screenshot-grid .img-wrap { margin-bottom: 0; }
.screenshot-grid .img-wrap.full { grid-column: 1 / -1; }
.screenshot-caption {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.6rem; font-weight: 600;
}

/* ─── TECH TAGS ────────────────────────────────────── */
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tech-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.28);
  color: var(--accent-light);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 100px;
}

/* ─── ERP LINK LIST ────────────────────────────────── */
.erp-links { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.5rem 0; }
.erp-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--accent-light); font-weight: 600;
  transition: color 0.2s;
}
.erp-link:hover { color: #fff; }
.erp-link::before { content: '→'; }

/* ─── FAQ ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.faq-q {
  font-size: 0.92rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 0.6rem;
}
.faq-a { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* ─── CONTACT FORM ─────────────────────────────────── */
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem;
}
.contact-form-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 1.5rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 8px; font-family: inherit;
  font-size: 0.9rem; color: #fff; outline: none;
  transition: border-color 0.2s, background 0.2s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--accent); background: rgba(139,92,246,0.08);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #4a5568; }
.form-field textarea { min-height: 130px; }
.form-field .req { color: var(--accent-light); }
.btn-submit {
  width: 100%; padding: 13px;
  background: var(--accent); color: #fff;
  font-family: inherit; font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--accent-hover); }

/* ─── NEWSLETTER / EMAIL CAPTURE ───────────────────── */
.email-capture {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  margin-top: 1.5rem;
}
.email-capture h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 0.35rem;
}
.email-capture p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.email-row { display: flex; gap: 8px; flex-wrap: wrap; }
.email-row input {
  flex: 1; min-width: 150px; padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft); border-radius: 7px;
  font-family: inherit; font-size: 0.86rem; color: #fff; outline: none;
  transition: border-color 0.2s;
}
.email-row input:focus { border-color: var(--accent); }
.email-row input::placeholder { color: #4a5568; }
.email-row button {
  padding: 10px 18px; background: var(--accent);
  border: none; border-radius: 7px; color: #fff;
  font-family: inherit; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.email-row button:hover { background: var(--accent-hover); }

/* ─── LOCATION / CONTACT DETAILS ───────────────────── */
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-body);
}
.contact-item-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px;
}
.contact-item a { color: var(--accent-light); transition: color 0.2s; }
.contact-item a:hover { color: #fff; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(139,92,246,0.12);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg {
  width: 16px; height: 16px; stroke: var(--accent-light);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── VALUES GRID ──────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.value-card h5 {
  font-size: 0.9rem; font-weight: 700; color: var(--accent-light); margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.86rem; color: var(--text-body); line-height: 1.65; }

/* ─── DIVIDER ──────────────────────────────────────── */
.divider-glow {
  height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1rem 0;
}

/* ─── FOOTER ───────────────────────────────────────── */
#site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 30px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem;
}
.footer-brand-name span { color: var(--accent-light); }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.footer-col h5 {
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact-p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.footer-contact-p a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact-p a:hover { color: var(--accent-light); }
.footer-newsletter { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-newsletter input {
  flex: 1; min-width: 130px; padding: 9px 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft);
  border-radius: 7px; font-family: inherit; font-size: 0.82rem; color: #fff; outline: none;
}
.footer-newsletter input::placeholder { color: #3d4a5c; }
.footer-newsletter button {
  padding: 9px 14px; background: var(--accent); border: none;
  border-radius: 7px; color: #fff; font-family: inherit;
  font-size: 0.76rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--accent-hover); }
.footer-bottom {
  padding-top: 1.75rem; border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.22); }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col .col-img-first { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 1rem; }
}
@media (max-width: 640px) {
  :root { --pad-section: 60px 0; }
  #primary-menu { display: none; }
  .stats-row { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .connectors-grid { grid-template-columns: 1fr 1fr; }
}
