/*
Theme Name: Cinetmon
Theme URI: https://cinetmon.com
Author: Cinetmon LLC
Author URI: https://cinetmon.com
Description: A modern, professional managed-services theme for Cinetmon LLC. Charcoal + cyan brand palette, full-width sections, built-in contact form, and pages for Home, Services, About, and Contact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cinetmon
*/

/* ============================================================
   1. Design tokens
   ============================================================ */
:root {
  --c-charcoal: #1b1f24;
  --c-charcoal-2: #23282f;
  --c-charcoal-3: #2d333c;
  --c-cyan: #21a9e1;
  --c-cyan-dark: #1789bc;
  --c-cyan-soft: #e8f6fd;
  --c-text: #1b1f24;
  --c-text-muted: #5b636e;
  --c-bg: #ffffff;
  --c-bg-alt: #f5f8fb;
  --c-border: #e4e9ef;
  --c-white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(27, 31, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(27, 31, 36, 0.14);
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================================
   2. Reset & base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-cyan-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-cyan); }
h1, h2, h3, h4 { color: var(--c-charcoal); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-charcoal); color: #cfd6df; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

/* ============================================================
   3. Buttons & helpers
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--c-cyan);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(33, 169, 225, 0.28);
}
.btn:hover { background: var(--c-cyan-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(33, 169, 225, 0.36); }
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; box-shadow: none; }
.btn-outline {
  background: transparent;
  color: var(--c-cyan-dark);
  border: 1.5px solid var(--c-cyan);
  box-shadow: none;
}
.btn-outline:hover { background: var(--c-cyan); color: #fff; box-shadow: none; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-cyan);
  margin-bottom: 14px;
}
.lead { font-size: 1.18rem; color: var(--c-text-muted); max-width: 680px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

/* ============================================================
   4. Header / navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-name { font-weight: 800; font-size: 1.35rem; color: var(--c-charcoal); letter-spacing: -0.02em; }
.brand-name span { color: var(--c-cyan); }
.nav-menu { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  color: var(--c-charcoal);
  font-weight: 500;
  font-size: .98rem;
  padding: 8px 16px;
  border-radius: 8px;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--c-cyan-dark); background: var(--c-cyan-soft); }
.nav-cta { margin-left: 8px; }
.nav-cta a { background: var(--c-cyan); color: #fff !important; padding: 10px 22px !important; }
.nav-cta a:hover { background: var(--c-cyan-dark); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--c-charcoal); margin: 5px 0; transition: .3s; }

/* ============================================================
   5. Hero
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(33,169,225,0.18), transparent 60%), var(--c-charcoal);
  color: #fff;
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -160px;
  width: 520px; height: 520px;
  border: 60px solid rgba(33,169,225,0.10);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 span { color: var(--c-cyan); }
.hero p { font-size: 1.22rem; color: #c7cdd6; max-width: 640px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 46px; display: flex; gap: 34px; flex-wrap: wrap; color: #9aa3ae; font-size: .92rem; }
.hero-trust strong { display: block; color: #fff; font-size: 1.7rem; font-weight: 800; }

/* ============================================================
   6. Cards / grids
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--c-cyan-soft);
  color: var(--c-cyan-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--c-text-muted); margin: 0; font-size: .98rem; }

/* feature row */
.feature-grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 56px; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; }
.feature-list li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.feature-list .tick {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-cyan); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 3px;
}
.feature-list strong { display: block; color: var(--c-charcoal); }
.feature-list span { color: var(--c-text-muted); font-size: .96rem; }
.media-frame {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-charcoal), var(--c-charcoal-3));
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.media-frame .stat { font-size: 3rem; font-weight: 800; color: var(--c-cyan); }
.media-frame hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 22px 0; }

/* ============================================================
   7. Steps / process
   ============================================================ */
.steps { counter-reset: step; }
.step .num {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--c-charcoal); color: var(--c-cyan);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ============================================================
   8. CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--c-cyan), var(--c-cyan-dark));
  color: #fff;
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn { background: #fff; color: var(--c-cyan-dark); box-shadow: none; }
.cta-band .btn:hover { background: var(--c-charcoal); color: #fff; }

/* ============================================================
   9. Services detail
   ============================================================ */
.svc-detail { border-bottom: 1px solid var(--c-border); padding: 54px 0; }
.svc-detail:last-child { border-bottom: none; }
.svc-detail .row { display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start; }
.svc-detail .big-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--c-cyan-soft); color: var(--c-cyan-dark);
  display: flex; align-items: center; justify-content: center;
}
.svc-detail .big-icon svg { width: 34px; height: 34px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tag { background: var(--c-bg-alt); border: 1px solid var(--c-border); color: var(--c-text-muted); padding: 6px 14px; border-radius: 999px; font-size: .86rem; font-weight: 500; }

/* ============================================================
   10. Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .info-item .ic {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px;
  background: var(--c-cyan-soft); color: var(--c-cyan-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-info .info-item strong { display: block; color: var(--c-charcoal); }
.contact-info .info-item span, .contact-info .info-item a { color: var(--c-text-muted); }
.form-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--c-charcoal); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(33,169,225,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--c-text-muted); margin-top: 6px; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: .96rem; }
.alert-success { background: #e7f7ee; color: #1b7a4b; border: 1px solid #b9e8cd; }
.alert-error { background: #fdecec; color: #b5302a; border: 1px solid #f5c4c1; }

/* ============================================================
   11. Page hero (inner pages)
   ============================================================ */
.page-hero {
  background: radial-gradient(900px 400px at 85% -20%, rgba(33,169,225,0.16), transparent 60%), var(--c-charcoal);
  color: #fff;
  padding: 86px 0 72px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #c7cdd6; max-width: 620px; margin: 0 auto; font-size: 1.12rem; }

/* ============================================================
   12. Footer
   ============================================================ */
.site-footer { background: var(--c-charcoal); color: #9aa3ae; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.site-footer .brand-name { color: #fff; }
.site-footer p { color: #9aa3ae; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #9aa3ae; font-size: .95rem; }
.footer-col a:hover { color: var(--c-cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .88rem; }

/* ============================================================
   13. Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--c-border);
    padding: 12px; gap: 4px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-detail .row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
