/*
Theme Name: Red Media Consulting
Theme URI: https://redmediaconsulting.com
Author: Red Media Consulting
Author URI: https://redmediaconsulting.com
Description: Professional digital marketing & media consulting theme for Red Media Consulting.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: redmedia
Tags: business, marketing, professional, one-page
*/

/* =========================================
   ROOT VARIABLES
========================================= */
:root {
  --primary: #c0392b;
  --primary-dark: #962d22;
  --dark: #0f0f1a;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --accent: #e74c3c;
  --light: #f8f9fc;
  --text: #333344;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --gradient: linear-gradient(135deg, #c0392b 0%, #8e1a0e 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius: 10px;
  --font: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(.22,.61,.36,1);
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: .5; }
  50%      { opacity: .9; }
}

/* Hero entrance (plays on load) */
.hero-fade {
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

/* Scroll reveal (JS adds .in-view) */
.reveal, .stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
.reveal.in-view, .stagger > *.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }

/* =========================================
   LAYOUT
========================================= */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark2); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,0.75); }
.section-light { background: var(--light); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* =========================================
   SECTION HEADERS
========================================= */
.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-dark .section-tag { background: rgba(231,76,60,0.2); color: #ff8a7a; }
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 600px; margin: 0 auto 50px; }

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* =========================================
   NAVBAR
========================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 8px 0;
}
#site-header.scrolled {
  background: rgba(15,15,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: white;
  font-family: var(--font-heading);
}
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: transparent; border: 0; appearance: none; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* =========================================
   HERO (centered)
========================================= */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(142,26,14,0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: -160px; left: 50%;
  width: 620px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(231,76,60,0.16) 0%, transparent 65%);
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 140px 0 90px; }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.35);
  color: #ff8a7a;
  padding: 8px 18px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(231,76,60,0.8);
}
#hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
#hero h1 em { font-style: normal; color: #ff796b; }
#hero .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  font-size: 1.1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-proof {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px;
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 640px;
}
.hero-proof li { color: rgba(255,255,255,0.68); font-size: 0.88rem; font-weight: 600; }
.hero-proof li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #5ee38a;
  vertical-align: 1px;
  box-shadow: 0 0 0 3px rgba(94,227,138,.12);
}
.hero-visual { margin-top: 56px; width: 100%; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  max-width: 620px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-card-kicker { color: #ff8a7a; font-size: 0.74rem; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.hero-card h2 { color: var(--white); font-size: 1.55rem; margin-bottom: 10px; }
.hero-card > p { color: rgba(255,255,255,0.62); font-size: 0.92rem; margin-bottom: 24px; }
.focus-list { display: grid; gap: 14px; }
.focus-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background .25s ease, border-color .25s ease, opacity .65s ease, transform .65s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.focus-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,138,122,0.3); }
.focus-item > span { color: #ff8a7a; font-size: 0.75rem; font-weight: 800; padding-top: 3px; font-family: var(--font-heading); }
.focus-item strong { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 2px; }
.focus-item small { color: rgba(255,255,255,0.52); font-size: 0.78rem; line-height: 1.45; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  z-index: 3;
  transition: border-color .25s;
}
.hero-scroll:hover { border-color: rgba(255,255,255,0.6); }
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: rgba(255,255,255,0.7);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* =========================================
   TRUST STRIP
========================================= */
#trust {
  padding: 44px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-label { color: rgba(255,255,255,0.35); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 24px; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 20px 48px; flex-wrap: wrap; }
.trust-logo {
  color: rgba(255,255,255,0.32);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .65s ease, transform .65s var(--ease-out);
}
.trust-logo:hover { color: rgba(255,255,255,0.65); }

/* =========================================
   SERVICES
========================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, opacity .65s ease;
  transition-delay: var(--rd, 0s);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(192,57,43,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform .3s ease, background .3s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); background: rgba(192,57,43,0.14); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* =========================================
   STATS
========================================= */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.stat-box {
  padding: 52px 32px;
  text-align: center;
  background: var(--dark2);
  transition: background .25s ease, opacity .65s ease, transform .65s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.stat-box:hover { background: rgba(255,255,255,0.045); }
.stat-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 10px; }

/* =========================================
   ABOUT
========================================= */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  background: var(--gradient);
  border-radius: 20px;
  padding: 3px;
}
.about-img-inner {
  background: var(--dark2);
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.about-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px; width: 100%; }
.about-icon-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  transition: background .25s ease, transform .25s ease;
}
.about-icon-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.about-icon-box .num { font-size: 1.8rem; font-weight: 800; color: var(--white); font-family: var(--font-heading); }
.about-icon-box .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gradient);
  color: white;
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
  text-align: center;
}
.about-badge .years { font-size: 2rem; font-weight: 900; display: block; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 30px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.94rem; color: var(--text-muted);
}
.check-list li::before {
  content: '';
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(192,57,43,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
  margin-top: 2px;
}

/* =========================================
   PROCESS
========================================= */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 900; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-step:hover .step-num { transform: scale(1.08); box-shadow: 0 6px 28px rgba(192,57,43,0.55); }
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; color: var(--text-muted); }

/* =========================================
   STANDARDS
========================================= */
.standards-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.standards-layout h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.standards-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.standards-list > div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
  transition: background .25s ease, border-color .25s ease, opacity .65s ease, transform .65s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.standards-list > div:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,138,122,0.25); }
.standards-list strong { display: block; color: var(--white); margin-bottom: 7px; font-family: var(--font-heading); }
.standards-list span { display: block; color: rgba(255,255,255,0.58); font-size: .84rem; line-height: 1.55; }

/* =========================================
   TESTIMONIALS (light section)
========================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform .3s ease, box-shadow .3s ease, opacity .65s ease;
  transition-delay: var(--rd, 0s);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; fill: #f59e0b; }
.testimonial-text { color: var(--text); font-size: 0.93rem; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { color: var(--dark); font-weight: 600; font-size: 0.9rem; }
.author-role { color: var(--text-muted); font-size: 0.78rem; }

/* =========================================
   CONTACT
========================================= */
#contact.section { padding: 0; }
#contact-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
#contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(192,57,43,0.16) 0%, transparent 60%);
}
.contact-inner { position: relative; z-index: 2; text-align: center; padding: 100px 0; }
.contact-inner h2 { color: var(--white); margin-bottom: 16px; }
.contact-inner .lead { margin-bottom: 40px; color: rgba(255,255,255,0.7); max-width: 640px; margin-left: auto; margin-right: auto; }
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: rgba(255,255,255,0.7); font-size: 0.82rem; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: white;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: var(--font);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select option { background: var(--dark2); }
.form-honeypot { position: absolute !important; left: -9999px !important; }
.form-privacy { color: rgba(255,255,255,0.45); font-size: .78rem; line-height: 1.55; text-align: left; margin-bottom: 16px; }
.form-privacy a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.form-notice { max-width: 700px; margin: 0 auto 20px; padding: 14px 18px; border-radius: 8px; font-size: .9rem; }
.form-notice.success { background: rgba(34,197,94,.15); color: #b7f7c9; border: 1px solid rgba(34,197,94,.28); }
.form-notice.error { background: rgba(239,68,68,.15); color: #ffc0c0; border: 1px solid rgba(239,68,68,.28); }
.form-submit { width: 100%; margin-top: 4px; justify-content: center; font-size: 1rem; padding: 16px; }

/* =========================================
   FOOTER
========================================= */
#site-footer { background: #0a0a14; padding: 70px 0 0; color: rgba(255,255,255,0.6); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-top: 14px; line-height: 1.8; max-width: 260px; }
.footer-col h5, .footer-col h2 { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-contact li { font-size: 0.88rem; margin-bottom: 10px; color: rgba(255,255,255,0.45); }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =========================================
   PAGE CONTENT (Blog/Inner Pages)
========================================= */
.page-hero { background: var(--dark); padding: 130px 0 70px; text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); }
.breadcrumb {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb span.sep { opacity: 0.4; }
.page-content { padding: 70px 0; }
.page-content-inner { max-width: 820px; margin: 0 auto; }
.page-content-inner h2 { color: var(--dark); margin: 36px 0 12px; font-size: 1.5rem; }
.page-content-inner h3 { color: var(--dark); margin: 28px 0 10px; font-size: 1.2rem; }
.page-content-inner p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.page-content-inner ul { margin: 0 0 18px 20px; list-style: disc; }
.page-content-inner ul li { color: var(--text-muted); margin-bottom: 8px; }
.page-content-inner a { color: var(--primary); text-decoration: underline; }

/* =========================================
   BLOG CARDS
========================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 2.5rem; }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 12px; }

/* =========================================
   MOBILE NAV
========================================= */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,26,0.98);
  z-index: 1002;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: white; font-size: 1.4rem; font-weight: 600; text-decoration: none; }
.mobile-nav .close-nav { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: white; cursor: pointer; background: none; border: none; }

/* =========================================
   UTILITIES
========================================= */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link:focus { position: fixed; width: auto; height: auto; clip: auto; top: 12px; left: 12px; z-index: 2000; background: var(--white); color: var(--dark); padding: 10px 14px; border-radius: 6px; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .standards-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 36px; }
  .process-steps::before { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.2rem; }
  .hero-content { padding: 120px 0 70px; }
  #hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { flex-direction: column; gap: 10px; align-items: center; }
  .hero-card { padding: 26px; }
  .standards-list { grid-template-columns: 1fr; }
  .about-badge { right: 8px; bottom: -16px; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .logo-text { font-size: .92rem; }
  .logo-text span { font-size: .56rem; letter-spacing: 1px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
  .contact-form-wrap { padding: 26px 20px; }
  .about-icon-grid { gap: 10px; padding: 20px; }
  .about-icon-box .num { font-size: 1.4rem; }
}

/* =========================================
   REDUCED MOTION
========================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-fade, .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}
