/*
Theme Name:   OrganicRanker
Theme URI:    https://organicranker.co.uk
Description:  OrganicRanker Guest Posting Marketplace Theme. Works standalone or as Astra child theme.
Author:       OrganicRanker
Author URI:   https://organicranker.co.uk
Version:      1.0.0
Text Domain:  organicranker-child
*/

/* ============================================
   PARENT THEME — handled via functions.php enqueue
   No @import needed — enqueued programmatically
   ============================================ */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  /* Brand Colors */
  --or-dark:       #0A2E1A;
  --or-dark-2:     #0F3D22;
  --or-dark-3:     #1A4D2E;
  --or-gold:       #C9A84C;
  --or-gold-light: #E2C57A;
  --or-cream:      #F9F6EF;
  --or-cream-2:    #F0EBE0;
  --or-white:      #FFFFFF;
  --or-slate:      #2D3748;
  --or-slate-2:    #4A5568;
  --or-slate-3:    #718096;
  --or-border:     #E2D9C8;
  --or-green-mid:  #155724;
  --or-success:    #28A745;
  --or-danger:     #DC3545;
  --or-warning:    #FFC107;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --card-radius:  12px;
  --btn-radius:   8px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10, 46, 26, 0.08);
  --shadow-md:  0 8px 24px rgba(10, 46, 26, 0.12);
  --shadow-lg:  0 20px 60px rgba(10, 46, 26, 0.18);
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--or-slate);
  background: var(--or-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--or-dark);
  line-height: 1.2;
}

a { color: var(--or-dark-3); text-decoration: none; }
a:hover { color: var(--or-gold); }

img { max-width: 100%; height: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.or-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.or-btn-primary {
  background: var(--or-gold);
  color: var(--or-dark);
  border-color: var(--or-gold);
}
.or-btn-primary:hover {
  background: var(--or-gold-light);
  border-color: var(--or-gold-light);
  color: var(--or-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.or-btn-outline {
  background: transparent;
  color: var(--or-white);
  border-color: rgba(255,255,255,0.5);
}
.or-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--or-white);
  color: var(--or-white);
}

.or-btn-dark {
  background: var(--or-dark);
  color: var(--or-white);
  border-color: var(--or-dark);
}
.or-btn-dark:hover {
  background: var(--or-dark-3);
  border-color: var(--or-dark-3);
  color: var(--or-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.or-btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.or-btn-lg {
  padding: 16px 40px;
  font-size: 17px;
}

/* ============================================
   ASTRA HEADER OVERRIDE
   ============================================ */
#masthead,
.site-header,
.ast-primary-header-bar {
  background: var(--or-dark) !important;
  border-bottom: 1px solid var(--or-dark-3) !important;
}

.ast-primary-header-bar .main-header-bar {
  background: var(--or-dark) !important;
}

/* Logo text */
.site-title a,
.ast-site-identity .site-title a {
  color: var(--or-white) !important;
  font-family: var(--font-display) !important;
  font-size: 22px !important;
}
.site-title a span { color: var(--or-gold) !important; }

/* Nav links */
.main-navigation .menu > li > a,
.ast-header-menu > li > a,
.main-header-menu .menu-item > a {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 16px !important;
  transition: color 0.2s !important;
}
.main-header-menu .menu-item > a:hover,
.main-header-menu .menu-item.current-menu-item > a {
  color: var(--or-gold) !important;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.or-hero {
  background: var(--or-dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(21, 87, 36, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.or-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.or-hero .container { position: relative; z-index: 1; }

.or-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--or-gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.or-hero-eyebrow::before {
  content: '●';
  font-size: 8px;
  color: var(--or-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.or-hero h1 {
  font-family: var(--font-display);
  color: var(--or-white);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.or-hero h1 .highlight {
  color: var(--or-gold);
  position: relative;
}

.or-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.or-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Stats bar */
.or-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.or-hero-stat-item {}
.or-hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--or-white);
  line-height: 1;
  display: block;
}
.or-hero-stat-num span { color: var(--or-gold); }
.or-hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.or-section { padding: var(--section-pad); }
.or-section-light { background: var(--or-cream); }
.or-section-white { background: var(--or-white); }
.or-section-dark { background: var(--or-dark); }

.or-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.or-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.or-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or-gold);
  margin-bottom: 12px;
  display: block;
}
.or-section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.or-section-header p {
  color: var(--or-slate-2);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS TABS
   ============================================ */
.or-how-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.or-how-tab {
  padding: 10px 28px;
  border-radius: 40px;
  border: 2px solid var(--or-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--or-slate-2);
  cursor: pointer;
  transition: all 0.25s;
}
.or-how-tab.active {
  background: var(--or-dark);
  border-color: var(--or-dark);
  color: var(--or-white);
}

.or-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.or-step-card {
  background: var(--or-white);
  border: 1px solid var(--or-border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s;
}
.or-step-card:hover { box-shadow: var(--shadow-md); }

.or-step-num {
  width: 44px;
  height: 44px;
  background: var(--or-dark);
  color: var(--or-gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}
.or-step-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}
.or-step-card p {
  font-size: 14px;
  color: var(--or-slate-2);
  line-height: 1.6;
  margin: 0;
}

.or-tab-panel { display: none; }
.or-tab-panel.active { display: block; }

/* ============================================
   SITE LISTINGS (BUYER BROWSE)
   ============================================ */
.or-listings-bar {
  background: var(--or-dark);
  padding: 28px 0;
}
.or-listings-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.or-filter-input,
.or-filter-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--or-white);
  padding: 10px 16px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.or-filter-input::placeholder { color: rgba(255,255,255,0.4); }
.or-filter-input:focus,
.or-filter-select:focus { border-color: var(--or-gold); }
.or-filter-input-main { flex: 1; min-width: 200px; }

.or-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.or-site-card {
  background: var(--or-white);
  border: 1px solid var(--or-border);
  border-radius: var(--card-radius);
  padding: 24px;
  transition: all 0.25s;
  position: relative;
}
.or-site-card:hover {
  border-color: var(--or-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.or-site-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.or-site-domain {
  font-weight: 700;
  color: var(--or-dark);
  font-size: 15px;
}
.or-site-niche {
  display: inline-block;
  background: rgba(10, 46, 26, 0.08);
  color: var(--or-dark-3);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.or-site-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--or-cream);
  border-radius: 8px;
}
.or-metric {}
.or-metric-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--or-dark);
  display: block;
}
.or-metric-lbl {
  font-size: 11px;
  color: var(--or-slate-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.or-site-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.or-site-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--or-dark);
}
.or-site-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--or-slate-3);
}

/* ============================================
   PORTAL PAGES (PUBLISHER / BUYER)
   ============================================ */
.or-portal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: calc(100vh - 80px);
}

/* Sidebar */
.or-sidebar {
  background: var(--or-dark);
  padding: 32px 0;
  border-right: 1px solid var(--or-dark-3);
}
.or-sidebar-logo {
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.or-sidebar-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--or-white);
}
.or-sidebar-logo span em { color: var(--or-gold); font-style: normal; }

.or-sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 16px 24px 8px;
}
.or-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border-left: 3px solid transparent;
}
.or-nav-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--or-white);
  border-left-color: rgba(201,168,76,0.5);
}
.or-nav-item.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--or-gold-light);
  border-left-color: var(--or-gold);
}
.or-nav-icon { font-size: 16px; width: 20px; text-align: center; }
.or-nav-badge {
  margin-left: auto;
  background: var(--or-gold);
  color: var(--or-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

/* Main content area */
.or-portal-main {
  background: #F4F7F4;
  padding: 40px;
  overflow-y: auto;
}

.or-portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.or-portal-header h1 {
  font-size: 26px;
  margin: 0;
}
.or-portal-header p {
  color: var(--or-slate-2);
  font-size: 14px;
  margin: 4px 0 0;
}

/* Stats Cards */
.or-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.or-stat-card {
  background: var(--or-white);
  border: 1px solid var(--or-border);
  border-radius: var(--card-radius);
  padding: 24px;
}
.or-stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.or-stat-card-icon.green { background: rgba(10,46,26,0.08); }
.or-stat-card-icon.gold  { background: rgba(201,168,76,0.12); }
.or-stat-card-icon.blue  { background: rgba(59,130,246,0.1); }
.or-stat-card-icon.red   { background: rgba(220,53,69,0.08); }

.or-stat-card-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--or-dark);
  display: block;
  line-height: 1;
}
.or-stat-card-lbl {
  font-size: 13px;
  color: var(--or-slate-3);
  margin-top: 6px;
  display: block;
}
.or-stat-trend {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: block;
}
.or-stat-trend.up { color: var(--or-success); }
.or-stat-trend.down { color: var(--or-danger); }

/* Tables */
.or-table-card {
  background: var(--or-white);
  border: 1px solid var(--or-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.or-table-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--or-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.or-table-card-header h3 {
  font-size: 16px;
  margin: 0;
}
.or-table {
  width: 100%;
  border-collapse: collapse;
}
.or-table th {
  background: var(--or-cream);
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--or-slate-3);
  border-bottom: 1px solid var(--or-border);
}
.or-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(226,217,200,0.5);
  font-size: 14px;
  color: var(--or-slate);
  vertical-align: middle;
}
.or-table tr:last-child td { border-bottom: none; }
.or-table tr:hover td { background: rgba(249,246,239,0.5); }

/* Status badges */
.or-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.or-badge::before { content: '●'; font-size: 8px; }
.or-badge-success { background: rgba(40,167,69,0.1);  color: #1a7a38; }
.or-badge-warning { background: rgba(255,193,7,0.15); color: #856404; }
.or-badge-pending { background: rgba(23,162,184,0.1);  color: #0c6875; }
.or-badge-danger  { background: rgba(220,53,69,0.1);   color: #9d1a26; }

/* ============================================
   FORMS
   ============================================ */
.or-form-card {
  background: var(--or-white);
  border: 1px solid var(--or-border);
  border-radius: var(--card-radius);
  padding: 36px;
  max-width: 560px;
}
.or-form-card h2 { font-size: 24px; margin-bottom: 6px; }
.or-form-card .or-subtitle {
  color: var(--or-slate-2);
  font-size: 14px;
  margin-bottom: 28px;
}
.or-form-group { margin-bottom: 20px; }
.or-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--or-slate);
  margin-bottom: 7px;
}
.or-input,
.or-select,
.or-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--or-border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--or-slate);
  background: var(--or-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.or-input:focus,
.or-select:focus,
.or-textarea:focus {
  border-color: var(--or-dark);
  box-shadow: 0 0 0 3px rgba(10,46,26,0.08);
}
.or-textarea { resize: vertical; min-height: 100px; }
.or-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   LOGIN / REGISTER PAGE
   ============================================ */
.or-auth-page {
  min-height: 100vh;
  background: var(--or-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background-image:
    radial-gradient(ellipse 70% 70% at 10% 10%, rgba(21,87,36,0.6) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 90% 90%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.or-auth-box {
  background: var(--or-white);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}
.or-auth-top {
  background: var(--or-dark);
  padding: 32px;
  text-align: center;
}
.or-auth-top .or-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--or-white);
}
.or-auth-top .or-logo span { color: var(--or-gold); }
.or-auth-top p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}
.or-auth-body { padding: 36px; }

.or-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--or-cream);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
}
.or-auth-tab {
  padding: 9px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--or-slate-2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.or-auth-tab.active {
  background: var(--or-white);
  color: var(--or-dark);
  box-shadow: var(--shadow-sm);
}

.or-role-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.or-role-option {
  border: 2px solid var(--or-border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.or-role-option.selected {
  border-color: var(--or-dark);
  background: rgba(10,46,26,0.04);
}
.or-role-option-icon { font-size: 24px; margin-bottom: 8px; }
.or-role-option-title { font-size: 13px; font-weight: 700; color: var(--or-dark); }
.or-role-option-sub { font-size: 11px; color: var(--or-slate-3); margin-top: 2px; }

/* Social divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--or-slate-3);
  font-size: 12px;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--or-border);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.or-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.or-plan-card {
  background: var(--or-white);
  border: 2px solid var(--or-border);
  border-radius: var(--card-radius);
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s;
}
.or-plan-card:hover { box-shadow: var(--shadow-md); }
.or-plan-card.featured {
  border-color: var(--or-gold);
  background: var(--or-dark);
}
.or-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--or-gold);
  color: var(--or-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.or-plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--or-gold);
  margin-bottom: 8px;
}
.or-plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--or-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.or-plan-card.featured .or-plan-price { color: var(--or-white); }
.or-plan-price sup { font-size: 22px; vertical-align: super; }
.or-plan-price sub { font-size: 16px; font-weight: 400; color: var(--or-slate-3); }
.or-plan-card.featured .or-plan-price sub { color: rgba(255,255,255,0.5); }
.or-plan-desc {
  font-size: 14px;
  color: var(--or-slate-2);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--or-border);
}
.or-plan-card.featured .or-plan-desc { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
.or-plan-features { list-style: none; margin: 0 0 32px; padding: 0; }
.or-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--or-slate);
  padding: 7px 0;
}
.or-plan-card.featured .or-plan-features li { color: rgba(255,255,255,0.85); }
.or-plan-features li::before {
  content: '✓';
  color: var(--or-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.or-plan-card.featured .or-plan-features li::before { color: var(--or-gold); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.or-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.or-testimonial-card {
  background: var(--or-white);
  border: 1px solid var(--or-border);
  border-radius: var(--card-radius);
  padding: 28px;
}
.or-testimonial-stars {
  color: var(--or-gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.or-testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--or-slate);
  margin-bottom: 20px;
  font-style: italic;
}
.or-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.or-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--or-dark);
  color: var(--or-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.or-testimonial-name { font-size: 14px; font-weight: 700; color: var(--or-dark); }
.or-testimonial-role { font-size: 12px; color: var(--or-slate-3); }

/* ============================================
   FOOTER
   ============================================ */
.or-footer {
  background: var(--or-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.or-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.or-footer-brand .or-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--or-white);
  display: block;
  margin-bottom: 14px;
}
.or-footer-brand .or-logo-text span { color: var(--or-gold); }
.or-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.or-footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or-gold);
  margin-bottom: 20px;
}
.or-footer-col ul { list-style: none; margin: 0; padding: 0; }
.or-footer-col ul li { margin-bottom: 10px; }
.or-footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}
.or-footer-col ul li a:hover { color: var(--or-gold-light); }
.or-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ============================================
   PUBLISHER: SUBMIT SITE FORM
   ============================================ */
.or-submit-site-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.or-info-box {
  background: var(--or-dark);
  border-radius: var(--card-radius);
  padding: 28px;
  color: rgba(255,255,255,0.8);
}
.or-info-box h4 {
  color: var(--or-gold);
  font-size: 15px;
  margin-bottom: 16px;
}
.or-info-list { list-style: none; padding: 0; margin: 0; }
.or-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}
.or-info-list li:last-child { border-bottom: none; }
.or-info-list li::before {
  content: '→';
  color: var(--or-gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .or-portal-layout { grid-template-columns: 220px 1fr; }
  .or-footer-grid { grid-template-columns: 1fr 1fr; }
  .or-submit-site-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .or-portal-layout { grid-template-columns: 1fr; }
  .or-sidebar { display: none; }
  .or-hero { padding: 60px 0 50px; }
  .or-hero-stats { gap: 24px; }
  .or-portal-main { padding: 24px 16px; }
  .or-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .or-input-row { grid-template-columns: 1fr; }
  .or-section { padding: 56px 0; }
  .or-hero-ctas { flex-direction: column; align-items: flex-start; }
}
