/*
Theme Name: CleanRep
Theme URI: https://cleanrep.com
Author: CleanRep Team
Author URI: https://cleanrep.com
Description: Professional reputation removal service theme with dark aesthetic, teal accents, and Elementor compatibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
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: cleanrep
Tags: elementor, one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cr-bg:        #04060e;
  --cr-surface:   #0b0f1e;
  --cr-surface2:  #111829;
  --cr-accent:    #00e5c8;
  --cr-accent2:   #7b5ea7;
  --cr-glow:      rgba(0,229,200,0.15);
  --cr-text:      #e8eaf0;
  --cr-muted:     #7a849a;
  --cr-border:    rgba(255,255,255,0.07);
  --cr-white:     #ffffff;
  --cr-danger:    #ff4f6b;
  --cr-radius:    14px;
  --cr-radius-sm: 8px;
  --cr-font-head: 'Syne', sans-serif;
  --cr-font-body: 'DM Sans', sans-serif;
  --cr-shadow:    0 20px 60px rgba(0,0,0,0.4);
  --cr-transition: all 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--cr-font-body);
  background-color: var(--cr-bg);
  color: var(--cr-text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.35;
}

a { color: var(--cr-accent); text-decoration: none; transition: var(--cr-transition); }
a:hover { color: var(--cr-white); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--cr-font-head);
  color: var(--cr-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--cr-muted); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--cr-white); font-weight: 600; }
em     { font-style: normal; color: var(--cr-accent); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cr-bg); }
::-webkit-scrollbar-thumb { background: var(--cr-accent2); border-radius: 3px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.site-content { position: relative; z-index: 1; }
.container, .cr-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.cr-section { padding: 80px 0; position: relative; }
.cr-section--dark { background: var(--cr-surface); border-top: 1px solid var(--cr-border); border-bottom: 1px solid var(--cr-border); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header,
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(4,6,14,0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--cr-border);
  transition: var(--cr-transition);
  height: 68px;
}
#site-header.scrolled { background: rgba(4,6,14,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}

/* Logo */
.site-logo, .custom-logo-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--cr-font-head); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.03em; color: var(--cr-white); text-decoration: none;
}
.site-logo:hover { color: var(--cr-white); }
.logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cr-accent); box-shadow: 0 0 12px var(--cr-accent);
  animation: pulse-dot 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { transform:scale(1); opacity:1; }
  50%      { transform:scale(1.5); opacity:0.55; }
}
.logo-text-accent { color: var(--cr-accent); }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav > li { position: relative; }
.primary-nav > li > a,
.primary-nav > li > .nav-item-label {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--cr-radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--cr-muted);
  cursor: pointer; transition: var(--cr-transition); white-space: nowrap;
  text-decoration: none;
}
.primary-nav > li > a:hover,
.primary-nav > li > .nav-item-label:hover,
.primary-nav > li:hover > a,
.primary-nav > li:hover > .nav-item-label {
  color: var(--cr-white); background: rgba(255,255,255,0.05);
}
.primary-nav > li > a.active,
.primary-nav > li > .nav-item-label.active { color: var(--cr-accent); }

/* Dropdown */
.primary-nav .sub-menu,
.primary-nav .dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--cr-surface2); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 8px; min-width: 230px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.22s ease; z-index: 1000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.primary-nav > li:hover .sub-menu,
.primary-nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .sub-menu a,
.primary-nav .dropdown a {
  display: block; padding: 9px 14px; font-size: 0.85rem; color: var(--cr-muted);
  border-radius: var(--cr-radius-sm); transition: all 0.15s; text-decoration: none;
}
.primary-nav .sub-menu a:hover,
.primary-nav .dropdown a:hover { color: var(--cr-accent); background: var(--cr-glow); }

.nav-chevron { font-size: 0.65em; opacity: 0.55; margin-left: 2px; }

/* Nav CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile hamburger */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm); padding: 8px 12px; cursor: pointer; color: var(--cr-muted);
}
.nav-toggle:hover { color: var(--cr-white); border-color: var(--cr-accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.cr-btn, .wp-block-button__link, button.cr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--cr-radius-sm);
  font-family: var(--cr-font-body); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; border: none; text-decoration: none;
  transition: var(--cr-transition); line-height: 1;
  white-space: nowrap;
}
.cr-btn--accent {
  background: var(--cr-accent); color: var(--cr-bg); font-weight: 700;
  box-shadow: 0 4px 22px rgba(0,229,200,0.28);
}
.cr-btn--accent:hover {
  background: #00ffd5; box-shadow: 0 6px 32px rgba(0,229,200,0.5);
  transform: translateY(-2px); color: var(--cr-bg);
}
.cr-btn--outline {
  background: transparent; border: 1px solid var(--cr-border); color: var(--cr-muted);
}
.cr-btn--outline:hover { border-color: var(--cr-accent); color: var(--cr-accent); }
.cr-btn--ghost {
  background: rgba(255,255,255,0.05); border: 1px solid var(--cr-border); color: var(--cr-text);
}
.cr-btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--cr-white); }
.cr-btn--lg { padding: 14px 34px; font-size: 1rem; border-radius: var(--cr-radius); }
.cr-btn--sm { padding: 7px 16px; font-size: 0.8rem; }
.cr-btn--full { width: 100%; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.cr-hero {
  min-height: calc(100vh - 68px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.cr-hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--cr-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--cr-border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}
.cr-hero__glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,200,0.11) 0%, transparent 68%);
  top: -180px; right: -160px; z-index: 0; pointer-events: none;
}
.cr-hero__glow2 {
  position: absolute; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.14) 0%, transparent 68%);
  bottom: -80px; left: -80px; z-index: 0; pointer-events: none;
}
.cr-hero__content { position: relative; z-index: 1; }
.cr-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,200,0.07); border: 1px solid rgba(0,229,200,0.22);
  border-radius: 100px; padding: 6px 18px; font-size: 0.8rem; font-weight: 500;
  color: var(--cr-accent); margin-bottom: 28px;
  animation: fadeInUp 0.55s ease both;
}
.cr-hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cr-accent); }
.cr-hero__title {
  font-family: var(--cr-font-head); font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.06; letter-spacing: -0.045em;
  color: var(--cr-white); max-width: 820px;
  animation: fadeInUp 0.6s 0.08s ease both;
}
.cr-hero__sub {
  margin-top: 24px; font-size: 1.15rem; color: var(--cr-muted);
  max-width: 540px; line-height: 1.72;
  animation: fadeInUp 0.6s 0.16s ease both;
}
.cr-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px;
  animation: fadeInUp 0.6s 0.24s ease both;
}
.cr-hero__stats {
  display: flex; gap: 52px; flex-wrap: wrap; margin-top: 64px;
  padding-top: 48px; border-top: 1px solid var(--cr-border);
  animation: fadeInUp 0.6s 0.32s ease both;
}
.cr-hero__stat-num {
  font-family: var(--cr-font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--cr-white); letter-spacing: -0.05em; line-height: 1;
}
.cr-hero__stat-num span { color: var(--cr-accent); }
.cr-hero__stat-label { font-size: 0.85rem; color: var(--cr-muted); margin-top: 4px; }

/* ============================================================
   SERVICE / INNER PAGE HERO
   ============================================================ */
.cr-page-hero {
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.cr-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,200,0.05) 0%, transparent 55%);
}
.cr-page-hero__content { position: relative; z-index: 1; }
.cr-page-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cr-glow); border: 1px solid rgba(0,229,200,0.22);
  border-radius: 100px; padding: 5px 16px; font-size: 0.78rem; font-weight: 600;
  color: var(--cr-accent); margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase;
}
.cr-page-hero h1 { max-width: 700px; }
.cr-page-hero p {
  font-size: 1.08rem; max-width: 560px; margin-top: 18px; color: var(--cr-muted);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.cr-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8rem; color: var(--cr-muted); margin-bottom: 28px;
  flex-wrap: wrap;
}
.cr-breadcrumb a { color: var(--cr-muted); }
.cr-breadcrumb a:hover { color: var(--cr-accent); }
.cr-breadcrumb__sep { opacity: 0.35; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.cr-section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cr-accent); margin-bottom: 14px;
}
.cr-section-label::before { content: ''; width: 22px; height: 1px; background: var(--cr-accent); }
.cr-section-title {
  font-family: var(--cr-font-head); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.035em; color: var(--cr-white);
}
.cr-section-sub {
  font-size: 1.05rem; color: var(--cr-muted); line-height: 1.72;
  margin-top: 16px; max-width: 580px;
}
.cr-section-header--center { text-align: center; }
.cr-section-header--center .cr-section-label { justify-content: center; }
.cr-section-header--center .cr-section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   CARDS
   ============================================================ */
.cr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.cr-card {
  background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 32px; position: relative;
  overflow: hidden; transition: var(--cr-transition);
  cursor: pointer;
}
.cr-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,200,0.04) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.cr-card:hover {
  border-color: rgba(0,229,200,0.3); transform: translateY(-5px);
  box-shadow: var(--cr-shadow);
}
.cr-card:hover::before { opacity: 1; }
.cr-card__icon {
  width: 50px; height: 50px; border-radius: var(--cr-radius-sm);
  background: var(--cr-glow); border: 1px solid rgba(0,229,200,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 20px;
}
.cr-card h3 { color: var(--cr-white); margin-bottom: 10px; font-size: 1.15rem; }
.cr-card p { font-size: 0.88rem; color: var(--cr-muted); margin-bottom: 0; line-height: 1.65; }
.cr-card__link {
  color: var(--cr-accent); font-size: 0.83rem; font-weight: 500;
  margin-top: 16px; display: inline-flex; align-items: center; gap: 4px;
}

/* ============================================================
   PLATFORM STRIP
   ============================================================ */
.cr-platform-strip {
  padding: 44px 0; background: var(--cr-surface);
  border-top: 1px solid var(--cr-border); border-bottom: 1px solid var(--cr-border);
}
.cr-platform-strip__label {
  text-align: center; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cr-muted); margin-bottom: 28px;
}
.cr-platform-strip__inner {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.cr-platform-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--cr-surface2); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm); padding: 10px 20px;
  font-size: 0.88rem; font-weight: 500; color: var(--cr-muted);
  transition: var(--cr-transition); cursor: pointer;
}
.cr-platform-badge:hover { border-color: var(--cr-accent); color: var(--cr-white); }

/* ============================================================
   GUARANTEE BLOCK
   ============================================================ */
.cr-guarantee {
  background: linear-gradient(135deg, rgba(0,229,200,0.07), rgba(123,94,167,0.07));
  border: 1px solid rgba(0,229,200,0.2); border-radius: 20px;
  padding: 60px; display: flex; gap: 60px; align-items: center; flex-wrap: wrap;
}
.cr-guarantee__icon { font-size: 4rem; flex-shrink: 0; }
.cr-guarantee__title {
  font-family: var(--cr-font-head); font-size: 1.9rem; font-weight: 800;
  color: var(--cr-white); letter-spacing: -0.03em; margin-bottom: 12px;
}
.cr-guarantee p { color: var(--cr-muted); font-size: 1rem; max-width: 520px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.cr-testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px; margin-top: 48px;
}
.cr-testimonial {
  background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 28px; transition: var(--cr-transition);
}
.cr-testimonial:hover { border-color: rgba(0,229,200,0.2); }
.cr-testimonial__stars { color: #ffd700; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.cr-testimonial__text {
  font-size: 0.93rem; color: var(--cr-text); line-height: 1.72; font-style: italic; margin-bottom: 20px;
}
.cr-testimonial__author { display: flex; gap: 12px; align-items: center; }
.cr-testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cr-accent2), var(--cr-accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cr-font-head); font-weight: 800; font-size: 0.85rem; color: var(--cr-white);
}
.cr-testimonial__name { font-weight: 600; font-size: 0.875rem; color: var(--cr-white); }
.cr-testimonial__role { font-size: 0.78rem; color: var(--cr-muted); }

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.cr-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 0; background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); overflow: hidden; margin-top: 60px;
}
.cr-step { padding: 36px 32px; position: relative; }
.cr-step:not(:last-child) {
  border-right: 1px solid var(--cr-border);
}
.cr-step__num {
  font-family: var(--cr-font-head); font-size: 3.8rem; font-weight: 800;
  color: rgba(0,229,200,0.1); line-height: 1; margin-bottom: 16px; letter-spacing: -0.05em;
}
.cr-step h3 { color: var(--cr-white); margin-bottom: 10px; font-size: 1.1rem; }
.cr-step p { font-size: 0.875rem; color: var(--cr-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.cr-faq { max-width: 780px; margin-top: 48px; }
.cr-faq__item {
  background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm); margin-bottom: 10px; overflow: hidden;
}
.cr-faq__q {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; font-size: 0.95rem; color: var(--cr-white);
  transition: background 0.2s; user-select: none;
}
.cr-faq__q:hover { background: rgba(255,255,255,0.03); }
.cr-faq__q.is-open { color: var(--cr-accent); }
.cr-faq__icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; color: var(--cr-muted); }
.cr-faq__q.is-open .cr-faq__icon { transform: rotate(45deg); color: var(--cr-accent); }
.cr-faq__a {
  display: none; padding: 0 24px 20px;
  color: var(--cr-muted); font-size: 0.88rem; line-height: 1.72;
}
.cr-faq__a.is-open { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cr-cta-box {
  background: linear-gradient(135deg, var(--cr-surface) 0%, rgba(123,94,167,0.12) 100%);
  border: 1px solid var(--cr-border); border-radius: 20px;
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cr-cta-box::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 320px;
  background: radial-gradient(ellipse, rgba(0,229,200,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.cr-cta-box__title {
  font-family: var(--cr-font-head);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--cr-white); margin-bottom: 14px;
  position: relative;
}
.cr-cta-box p { color: var(--cr-muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto 36px; position: relative; }
.cr-cta-box .cr-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.cr-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cr-two-col--reverse .cr-two-col__visual { order: -1; }

.cr-two-col__visual {
  background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 36px; position: relative;
}
.cr-mock-review {
  background: var(--cr-surface2); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm); padding: 16px; margin-bottom: 12px;
}
.cr-mock-review:last-of-type { margin-bottom: 0; }
.cr-mock-review__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.cr-mock-review__name { font-size: 0.78rem; font-weight: 600; color: var(--cr-muted); }
.cr-mock-review__stars { font-size: 0.72rem; color: var(--cr-danger); }
.cr-mock-review__text { font-size: 0.78rem; color: var(--cr-muted); line-height: 1.5; }
.cr-mock-review--removed {
  opacity: 0.35; position: relative;
}
.cr-mock-review--removed::after {
  content: 'REMOVED'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--cr-accent); font-family: var(--cr-font-head); font-weight: 800;
  font-size: 0.88rem; letter-spacing: 0.22em;
  border: 2px dashed rgba(0,229,200,0.38); border-radius: var(--cr-radius-sm);
}
.cr-badge-floating {
  position: absolute; bottom: -14px; right: 24px;
  background: var(--cr-accent); color: var(--cr-bg);
  font-family: var(--cr-font-head); font-weight: 800; font-size: 0.78rem;
  padding: 7px 16px; border-radius: 100px;
  display: flex; gap: 6px; align-items: center;
  box-shadow: 0 4px 16px rgba(0,229,200,0.35);
}

/* ============================================================
   FEATURE LIST
   ============================================================ */
.cr-feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.cr-feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.cr-feature-list__icon {
  width: 30px; height: 30px; border-radius: var(--cr-radius-sm);
  background: var(--cr-glow); border: 1px solid rgba(0,229,200,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0; margin-top: 1px;
}
.cr-feature-list h4 { font-size: 0.9rem; font-weight: 600; color: var(--cr-white); margin-bottom: 3px; }
.cr-feature-list p  { font-size: 0.82rem; color: var(--cr-muted); line-height: 1.58; margin: 0; }

/* ============================================================
   TRUST ROW
   ============================================================ */
.cr-trust-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-top: 40px; }
.cr-trust-item { display: flex; gap: 9px; align-items: center; font-size: 0.87rem; color: var(--cr-muted); }
.cr-trust-item__icon { color: var(--cr-accent); font-size: 1rem; }

/* ============================================================
   PRICING
   ============================================================ */
.cr-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; margin-top: 48px; }
.cr-pricing-card {
  background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 36px; position: relative;
  transition: var(--cr-transition);
}
.cr-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow); }
.cr-pricing-card--featured {
  border-color: var(--cr-accent);
  background: linear-gradient(135deg, rgba(0,229,200,0.07) 0%, var(--cr-surface) 100%);
}
.cr-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cr-accent); color: var(--cr-bg); font-size: 0.73rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.cr-pricing-name { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cr-muted); margin-bottom: 12px; }
.cr-pricing-price { font-family: var(--cr-font-head); font-size: 2.9rem; font-weight: 800; color: var(--cr-white); letter-spacing: -0.05em; line-height: 1; }
.cr-pricing-price sup { font-size: 1.2rem; }
.cr-pricing-period { font-size: 0.83rem; color: var(--cr-muted); margin: 6px 0 28px; }
.cr-pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cr-pricing-features li { font-size: 0.875rem; color: var(--cr-muted); display: flex; gap: 10px; align-items: flex-start; }
.cr-pricing-features li::before { content: '✓'; color: var(--cr-accent); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.cr-contact-form {
  background: var(--cr-surface); border: 1px solid var(--cr-border);
  border-radius: 20px; padding: 48px; max-width: 580px;
}
.cr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cr-form-group { margin-bottom: 18px; }
.cr-form-group label { display: block; font-size: 0.83rem; font-weight: 500; color: var(--cr-muted); margin-bottom: 7px; }
.cr-form-group input,
.cr-form-group textarea,
.cr-form-group select {
  width: 100%; padding: 11px 15px;
  background: var(--cr-bg); border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm); color: var(--cr-text);
  font-family: var(--cr-font-body); font-size: 0.92rem;
  transition: border-color 0.2s;
}
.cr-form-group input::placeholder,
.cr-form-group textarea::placeholder { color: rgba(122,132,154,0.5); }
.cr-form-group input:focus,
.cr-form-group textarea:focus,
.cr-form-group select:focus {
  outline: none; border-color: var(--cr-accent);
  box-shadow: 0 0 0 3px rgba(0,229,200,0.09);
}
.cr-form-group textarea { min-height: 120px; resize: vertical; }
.cr-form-group select option { background: var(--cr-surface2); }
.cr-form-note { font-size: 0.76rem; color: var(--cr-muted); text-align: center; margin-top: 12px; }

/* ============================================================
   TAGS / PILLS
   ============================================================ */
.cr-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--cr-border);
  border-radius: 100px; padding: 4px 12px; font-size: 0.78rem; color: var(--cr-muted);
}
.cr-tag--accent { background: var(--cr-glow); border-color: rgba(0,229,200,0.22); color: var(--cr-accent); }
.cr-tag--danger { background: rgba(255,79,107,0.07); border-color: rgba(255,79,107,0.22); color: var(--cr-danger); }

/* ============================================================
   STAT COUNTER BLOCK
   ============================================================ */
.cr-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 32px; }
.cr-stat { text-align: center; }
.cr-stat__num {
  font-family: var(--cr-font-head); font-size: 2.6rem; font-weight: 800;
  color: var(--cr-white); letter-spacing: -0.05em; line-height: 1;
}
.cr-stat__num span { color: var(--cr-accent); }
.cr-stat__label { font-size: 0.83rem; color: var(--cr-muted); margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer, .site-footer {
  background: var(--cr-surface);
  border-top: 1px solid var(--cr-border);
  padding: 64px 0 32px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 48px;
}
.footer-brand__desc { color: var(--cr-muted); font-size: 0.875rem; line-height: 1.72; margin-top: 14px; max-width: 265px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--cr-radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--cr-border);
  color: var(--cr-muted); font-size: 0.85rem; transition: var(--cr-transition);
}
.footer-social a:hover { border-color: var(--cr-accent); color: var(--cr-accent); }
.footer-col h4 {
  font-family: var(--cr-font-head); font-weight: 700; font-size: 0.82rem;
  color: var(--cr-white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--cr-muted); transition: var(--cr-transition); }
.footer-col ul li a:hover { color: var(--cr-accent); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--cr-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--cr-muted);
}
.footer-bottom a { color: var(--cr-muted); }
.footer-bottom a:hover { color: var(--cr-accent); }

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-button .wp-block-button__link {
  background: var(--cr-accent); color: var(--cr-bg); font-weight: 700;
  border-radius: var(--cr-radius-sm);
}
.entry-content p,
.entry-content ul,
.entry-content ol { color: var(--cr-muted); }
.entry-content h1,.entry-content h2,.entry-content h3 { color: var(--cr-white); }
.entry-content a { color: var(--cr-accent); }

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

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */
.elementor-section { position: relative; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--cr-font-head) !important; letter-spacing: -0.03em !important; }
.elementor-widget-text-editor p { color: var(--cr-muted); }
.elementor-button { font-family: var(--cr-font-body) !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cr-animate-up { animation: fadeInUp 0.6s ease both; }
.cr-animate-up--1 { animation-delay: 0.1s; }
.cr-animate-up--2 { animation-delay: 0.2s; }
.cr-animate-up--3 { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cr-two-col { gap: 48px; }
}
@media (max-width: 768px) {
  .primary-nav,
  .header-cta .cr-btn--outline { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu-open .primary-nav {
    display: flex; flex-direction: column;
    position: fixed; inset: 68px 0 0 0;
    background: var(--cr-bg); padding: 24px;
    overflow-y: auto; gap: 4px;
  }
  .cr-two-col { grid-template-columns: 1fr; gap: 40px; }
  .cr-two-col--reverse .cr-two-col__visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cr-hero__stats { gap: 32px; }
  .cr-guarantee { padding: 36px; gap: 28px; }
  .cr-cta-box { padding: 48px 28px; }
  .cr-steps { grid-template-columns: 1fr; }
  .cr-step:not(:last-child) { border-right: none; border-bottom: 1px solid var(--cr-border); }
  .cr-form-row { grid-template-columns: 1fr; }
  .cr-contact-form { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .cr-hero__actions { flex-direction: column; }
  .cr-btn--lg { width: 100%; justify-content: center; }
  .cr-cta-box .cr-btn-group { flex-direction: column; align-items: center; }
}
