/*
Theme Name:   REVD Digital
Theme URI:    https://revd.digital
Description:  REVD Digital child theme for GeneratePress Premium
Author:       REVD Digital
Author URI:   https://revd.digital
Template:     generatepress
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  revd-digital
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold:        #fcc000;
  --gold-dim:    rgba(252, 192, 0, 0.12);
  --gold-glow:   rgba(252, 192, 0, 0.35);
  --black:       #000000;
  --dark:        #0a0a0a;
  --dark-2:      #111111;
  --dark-3:      #1a1a1a;
  --dark-4:      #222222;
  --white:       #ffffff;
  --white-90:    rgba(255,255,255,0.9);
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(252,192,0,0.25);
  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --max-w:       1200px;
  --nav-h:       76px;
  --trans:       0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* GeneratePress overrides */
.site-header, .site-footer, .wp-site-blocks .wp-block-group { display:none !important; }
.inside-article { background: transparent !important; border: none !important; padding: 0 !important; }
.separate-containers .inside-article { background: transparent !important; box-shadow: none !important; }
.entry-content { color: var(--white) !important; }
body.page { background: var(--black) !important; color: var(--white) !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--white-60); }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--white); }
strong { color: var(--white); font-weight: 600; }

/* ── LAYOUT ── */
.revd-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ── GEOMETRIC BACKGROUND SYSTEM ── */
.geo-bg {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.geo-bg::before, .geo-bg::after { content: ''; position: absolute; }

/* Hex Grid Pattern */
.geo-hex::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(252,192,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Diagonal Lines */
.geo-lines::before {
  inset: -100%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(252,192,0,0.03) 40px,
    rgba(252,192,0,0.03) 41px
  );
}

/* Large rotating square */
.geo-square::after {
  width: 600px; height: 600px;
  border: 1px solid rgba(252,192,0,0.06);
  border-radius: 40px;
  top: -200px; right: -200px;
  transform: rotate(15deg);
}
.geo-square::before {
  width: 400px; height: 400px;
  border: 1px solid rgba(252,192,0,0.04);
  border-radius: 40px;
  bottom: -150px; left: -100px;
  transform: rotate(-20deg);
}

/* Triangle mesh */
.geo-tri::before {
  inset: 0;
  background-image:
    linear-gradient(60deg, rgba(252,192,0,0.03) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(252,192,0,0.03) 25%, transparent 25%),
    linear-gradient(60deg, transparent 75%, rgba(252,192,0,0.03) 75%),
    linear-gradient(-60deg, transparent 75%, rgba(252,192,0,0.03) 75%);
  background-size: 80px 140px;
}

/* Gold orb glow */
.geo-orb::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(252,192,0,0.07) 0%, transparent 70%);
  top: -350px; right: -200px;
  border-radius: 50%;
}
.geo-orb::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(252,192,0,0.05) 0%, transparent 70%);
  bottom: -200px; left: -150px;
  border-radius: 50%;
}

/* Circuit pattern */
.geo-circuit::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(252,192,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,192,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── NAVIGATION ── */
.revd-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), box-shadow var(--trans);
}
.revd-nav.scrolled { background: rgba(0,0,0,0.97); box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.revd-nav-inner {
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.revd-logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: var(--white); letter-spacing: -0.03em;
}
.revd-logo span { color: var(--gold); }
.revd-logo img { height: 36px; width: auto; }
.revd-nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.revd-nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--white-60);
  position: relative; padding: 4px 0; letter-spacing: 0.01em;
  transition: color var(--trans);
}
.revd-nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--trans);
}
.revd-nav-links a:hover, .revd-nav-links a.active { color: var(--white); }
.revd-nav-links a:hover::after, .revd-nav-links a.active::after { width: 100%; }

/* Nav CTA */
.revd-nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--trans);
}
.revd-nav-cta:hover { background: var(--white); transform: translateY(-1px); color: var(--black) !important; }

/* Mobile toggle */
.revd-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); padding: 6px;
}
.revd-nav-toggle svg { width: 24px; height: 24px; display: block; }

/* Mobile menu */
.revd-nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--dark); padding: calc(var(--nav-h) + 20px) 24px 40px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.revd-nav-mobile.open { display: flex; }
.revd-nav-mobile a {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  color: var(--white-60); font-size: 1.15rem; font-weight: 500;
  display: block; transition: color var(--trans);
}
.revd-nav-mobile a:hover { color: var(--gold); }
.revd-nav-mobile .revd-nav-cta { margin-top: 20px; text-align: center; justify-content: center; border-bottom: none; color: var(--black) !important; }

@media (max-width: 900px) {
  .revd-nav-links { display: none; }
  .revd-nav-toggle { display: flex; }
}

/* ── PAGE TOP PADDING ── */
.revd-page { padding-top: var(--nav-h); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; cursor: pointer; transition: all var(--trans);
  border: 2px solid transparent; text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.btn-gold:hover { background: var(--white); border-color: var(--white); color: var(--black); transform: translateY(-2px); box-shadow: 0 12px 40px var(--gold-glow); }
.btn-outline {
  background: transparent; color: var(--white); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark-3); color: var(--white); border-color: var(--border);
}
.btn-dark:hover { background: var(--dark-4); border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Arrow icon in buttons */
.btn-arrow::after {
  content: '→'; margin-left: 2px;
  transition: transform var(--trans);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── SECTION LABELS ── */
.revd-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 16px;
}
.revd-label::before {
  content: ''; width: 24px; height: 2px; background: var(--gold);
}

/* ── CARDS BASE ── */
.revd-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.revd-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.revd-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.revd-card:hover::before { transform: scaleX(1); }

/* ── STAT ITEMS ── */
.revd-stat-num {
  font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; color: var(--gold); line-height: 1; display: block;
}
.revd-stat-label { font-size: 0.88rem; color: var(--white-60); margin-top: 6px; }

/* ── SECTION SPACING ── */
.revd-section { padding: 100px 0; }
.revd-section-sm { padding: 60px 0; }
.revd-section-lg { padding: 140px 0; }

/* ── DIVIDER ── */
.revd-divider { border: none; border-top: 1px solid var(--border); margin: 60px 0; }

/* ── SECTION HEADER ── */
.revd-section-header { margin-bottom: 64px; }
.revd-section-header.center { text-align: center; }
.revd-section-header.center p { max-width: 600px; margin: 16px auto 0; }
.revd-section-header p { margin-top: 16px; color: var(--white-60); font-size: 1.05rem; }

/* ── GRID SYSTEMS ── */
.revd-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.revd-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.revd-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.revd-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }

@media (max-width: 900px) {
  .revd-grid-3, .revd-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .revd-grid-2, .revd-grid-3, .revd-grid-4 { grid-template-columns: 1fr; }
  .revd-section { padding: 70px 0; }
}

/* ── HERO SECTION ── */
.revd-hero {
  min-height: 92vh; display: flex; align-items: center;
  background: var(--black); position: relative; overflow: hidden;
  padding: 80px 0;
}
.revd-hero-inner { position: relative; z-index: 1; }
.revd-hero h1 { color: var(--white); }
.revd-hero h1 em { font-style: normal; color: var(--gold); }
.revd-hero p.lead { font-size: 1.2rem; color: var(--white-60); max-width: 620px; margin: 24px 0 40px; line-height: 1.7; }
.revd-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.revd-hero-stats {
  display: flex; gap: 48px; margin-top: 72px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--border);
}

/* ── GOLD HIGHLIGHT TEXT ── */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-60); }

/* ── PAGE HERO (inner pages) ── */
.revd-page-hero {
  padding: 100px 0 80px; background: var(--dark);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.revd-page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.revd-page-hero p { font-size: 1.1rem; color: var(--white-60); max-width: 580px; margin-top: 16px; }

/* ── BREADCRUMB ── */
.revd-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.82rem; color: var(--white-30); margin-bottom: 24px;
}
.revd-breadcrumb a { color: var(--white-30); }
.revd-breadcrumb a:hover { color: var(--gold); }
.revd-breadcrumb span { color: var(--gold); }

/* ── FEATURES / ICON CARDS ── */
.revd-feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold);
}
.revd-feature-icon svg { width: 26px; height: 26px; }

/* ── TESTIMONIAL CARDS ── */
.revd-testimonial {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
}
.revd-testimonial::before {
  content: '"'; font-family: var(--font-head); font-size: 5rem;
  color: var(--gold); opacity: 0.2; position: absolute; top: 20px; left: 28px;
  line-height: 1;
}
.revd-testimonial-text { color: var(--white-90); line-height: 1.75; margin-bottom: 24px; font-size: 1.02rem; }
.revd-testimonial-author { display: flex; align-items: center; gap: 14px; }
.revd-testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff9900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: var(--black); font-size: 1.1rem;
}
.revd-testimonial-name { font-weight: 600; font-size: 0.95rem; }
.revd-testimonial-role { font-size: 0.82rem; color: var(--white-30); }
.revd-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }

/* ── PRICING CARDS ── */
.revd-pricing-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 36px; position: relative;
  transition: all var(--trans);
}
.revd-pricing-card:hover { border-color: var(--border-gold); transform: translateY(-8px); }
.revd-pricing-card.featured {
  background: var(--dark-3); border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 24px 60px rgba(252,192,0,0.12);
}
.revd-pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px;
}
.revd-plan-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px; }
.revd-plan-price { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.revd-plan-price sup { font-size: 1.4rem; vertical-align: super; }
.revd-plan-price sub { font-size: 1rem; color: var(--white-60); font-weight: 400; }
.revd-plan-features { list-style: none; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.revd-plan-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.93rem; color: var(--white-60);
}
.revd-plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── FAQ ── */
.revd-faq-item { border-bottom: 1px solid var(--border); }
.revd-faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; color: var(--white);
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
}
.revd-faq-q span { display: block; }
.revd-faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); transition: transform var(--trans); }
.revd-faq-item.open .revd-faq-icon { transform: rotate(45deg); }
.revd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.revd-faq-item.open .revd-faq-a { max-height: 500px; }
.revd-faq-a-inner { padding-bottom: 22px; color: var(--white-60); line-height: 1.75; }

/* ── FORMS ── */
.revd-form-group { margin-bottom: 20px; }
.revd-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white-90); margin-bottom: 8px; letter-spacing: 0.02em; }
.revd-form-group input,
.revd-form-group select,
.revd-form-group textarea {
  width: 100%; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none; appearance: none;
}
.revd-form-group input::placeholder,
.revd-form-group textarea::placeholder { color: var(--white-30); }
.revd-form-group input:focus,
.revd-form-group select:focus,
.revd-form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(252,192,0,0.1);
}
.revd-form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff30' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.revd-form-group select option { background: var(--dark-3); color: var(--white); }
.revd-form-group textarea { resize: vertical; min-height: 120px; }
.revd-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .revd-form-2col { grid-template-columns: 1fr; } }

/* ── BLOG CARD ── */
.revd-blog-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--trans); display: flex; flex-direction: column;
}
.revd-blog-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.revd-blog-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--dark-3); position: relative;
}
.revd-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.revd-blog-card:hover .revd-blog-img img { transform: scale(1.05); }
.revd-blog-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  display: flex; align-items: center; justify-content: center;
}
.revd-blog-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.revd-blog-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.revd-blog-cat {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold);
}
.revd-blog-date { font-size: 0.8rem; color: var(--white-30); }
.revd-blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.35; }
.revd-blog-card h3 a { color: var(--white); }
.revd-blog-card h3 a:hover { color: var(--gold); }
.revd-blog-excerpt { color: var(--white-60); font-size: 0.9rem; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.revd-blog-read { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.revd-blog-read:hover { color: var(--white); }

/* ── SINGLE POST / PAGE ── */
.revd-post-content {
  max-width: 740px; margin: 0 auto;
}
.revd-post-content h2 { font-size: 1.75rem; margin: 44px 0 18px; }
.revd-post-content h3 { font-size: 1.35rem; margin: 32px 0 14px; }
.revd-post-content p { color: var(--white-60); line-height: 1.8; margin-bottom: 22px; }
.revd-post-content ul, .revd-post-content ol { color: var(--white-60); padding-left: 24px; margin-bottom: 22px; }
.revd-post-content li { margin-bottom: 8px; line-height: 1.75; }
.revd-post-content blockquote {
  border-left: 3px solid var(--gold); margin: 36px 0; padding: 20px 28px;
  background: var(--dark-2); border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.revd-post-content blockquote p { color: var(--white-90); font-size: 1.1rem; font-style: italic; margin: 0; }
.revd-post-content a { color: var(--gold); text-decoration: underline; }
.revd-post-content code {
  background: var(--dark-3); padding: 2px 8px; border-radius: 4px;
  font-size: 0.88em; color: var(--gold);
}
.revd-post-content img { width: 100%; border-radius: var(--radius-md); margin: 32px 0; }

/* ── SINGLE SERVICE PAGE ── */
.revd-service-sidebar {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.revd-service-sidebar h4 { font-size: 1rem; margin-bottom: 20px; }
.revd-service-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.revd-service-links a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius-sm); color: var(--white-60); font-size: 0.9rem;
  transition: all var(--trans);
}
.revd-service-links a:hover, .revd-service-links a.active { background: var(--gold-dim); color: var(--gold); }
.revd-service-links a::before { content: '→'; color: var(--gold); opacity: 0; transition: opacity var(--trans); }
.revd-service-links a:hover::before, .revd-service-links a.active::before { opacity: 1; }

/* ── PROCESS STEPS ── */
.revd-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.revd-step:last-child { border-bottom: none; }
.revd-step-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--gold); opacity: 0.35; line-height: 1; flex-shrink: 0; min-width: 50px;
}
.revd-step-text h4 { margin-bottom: 8px; }
.revd-step-text p { color: var(--white-60); font-size: 0.93rem; }

/* ── QUOTE PAGE ── */
.revd-quote-intro {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.revd-quote-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.revd-quote-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--white-60); }
.revd-quote-trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── CTA SECTION ── */
.revd-cta-section {
  background: var(--dark); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.revd-cta-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.revd-cta-section p { color: var(--white-60); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.revd-cta-section .btn { font-size: 1.05rem; padding: 16px 36px; }

/* CTA gold variant */
.revd-cta-gold {
  background: var(--gold); color: var(--black);
}
.revd-cta-gold h2, .revd-cta-gold p, .revd-cta-gold .revd-label { color: var(--black); }
.revd-cta-gold .revd-label { color: rgba(0,0,0,0.6); }
.revd-cta-gold .revd-label::before { background: rgba(0,0,0,0.4); }
.revd-cta-gold .btn-outline { border-color: rgba(0,0,0,0.3); color: var(--black); }
.revd-cta-gold .btn-outline:hover { background: rgba(0,0,0,0.1); border-color: var(--black); }

/* ── FOOTER ── */
.revd-footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.revd-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px; margin-bottom: 60px;
}
.revd-footer-brand p { color: var(--white-60); font-size: 0.9rem; margin-top: 14px; line-height: 1.7; max-width: 280px; }
.revd-footer-social { display: flex; gap: 10px; margin-top: 24px; }
.revd-footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--white-60); transition: all var(--trans);
}
.revd-footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.revd-footer-social svg { width: 16px; height: 16px; }
.revd-footer-col h5 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white-60); margin-bottom: 20px; }
.revd-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.revd-footer-col a { color: var(--white-60); font-size: 0.9rem; transition: color var(--trans); }
.revd-footer-col a:hover { color: var(--gold); }
.revd-footer-contact a { display: flex; align-items: flex-start; gap: 10px; color: var(--white-60); font-size: 0.88rem; }
.revd-footer-contact a svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.revd-footer-newsletter input {
  width: 100%; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 14px; color: var(--white);
  font-family: var(--font-body); font-size: 0.88rem; margin-top: 8px;
}
.revd-footer-newsletter input::placeholder { color: var(--white-30); }
.revd-footer-newsletter input:focus { outline: none; border-color: var(--gold); }
.revd-footer-newsletter button {
  margin-top: 8px; width: 100%; background: var(--gold); color: var(--black);
  border: none; border-radius: var(--radius-sm); padding: 11px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; cursor: pointer;
  transition: background var(--trans);
}
.revd-footer-newsletter button:hover { background: var(--white); }
.revd-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.revd-footer-bottom p { font-size: 0.82rem; color: var(--white-30); }
.revd-footer-bottom-links { display: flex; gap: 24px; }
.revd-footer-bottom-links a { font-size: 0.82rem; color: var(--white-30); }
.revd-footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 1024px) { .revd-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .revd-footer-grid { grid-template-columns: 1fr; gap: 32px; } .revd-footer-bottom { flex-direction: column; text-align: center; } .revd-footer-bottom-links { justify-content: center; } }

/* ── TRUST BAR ── */
.revd-trust-bar {
  background: var(--dark-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.revd-trust-bar-inner { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.revd-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--white-60); }
.revd-trust-item svg { width: 18px; height: 18px; color: var(--gold); }

/* ── NOTICE / ALERT ── */
.revd-notice {
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem;
}
.revd-notice svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── TAGS / BADGES ── */
.revd-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--white-60); padding: 5px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 500;
}
.revd-tag-gold { background: var(--gold-dim); border-color: var(--border-gold); color: var(--gold); }

/* ── RESULTS BAR ── */
.revd-results {
  background: var(--dark-3); border-radius: var(--radius-md);
  padding: 24px 28px; margin-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center;
}
.revd-results-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; }
.revd-results-label { font-size: 0.78rem; color: var(--white-30); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.relative { position: relative; }
.z-1 { z-index: 1; }
.hidden { display: none; }

/* ── SCROLL REVEAL PLACEHOLDER (CSS-only fade) ── */
@media (prefers-reduced-motion: no-preference) {
  .revd-reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .revd-reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ── WHATSAPP FLOAT ── */
.revd-wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.revd-wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }
.revd-wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── INLINE SVG GEO BACKGROUNDS ── */
.revd-hero-geo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  opacity: 0.4; pointer-events: none;
}