/*
Theme Name: CREADEV
Theme URI: https://creadev.dz
Author: CREADEV
Author URI: https://creadev.dz
Description: Thème officiel CREADEV — L'écosystème digital de l'éducation. Compatible Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://creadev.dz
Text Domain: creadev
Tags: education, elementor, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, rtl-language-support, translation-ready

*/

/* ============================================================
   CREADEV Design System — CSS Custom Properties
   ============================================================ */

:root {
  /* === COULEURS PRUNE === */
  --prune-night:    #2D1F47;
  --prune-dark:     #4A3588;
  --prune-medium:   #7B6098;
  --prune-lavender: #B8A5D4;
  --prune-light:    #EDE6F5;

  /* === COULEURS OR === */
  --gold-dark:  #C49A3C;
  --gold:       #DDB96A;
  --gold-light: #EDD090;
  --gold-cream: #FBF3E0;

  /* === NEUTRES === */
  --white-neutral: #FAFAFA;
  --white-pure:    #FFFFFF;
  --gray-100:      #F5F4F0;
  --gray-200:      #E5E3DC;
  --gray-400:      #999791;
  --gray-600:      #5F5E5A;
  --gray-800:      #2C2C2A;
  --black-soft:    #1A1626;

  /* === SÉMANTIQUES === */
  --success: #2E8B57;
  --warning: #D97706;
  --error:   #DC2626;
  --info:    #2563EB;

  /* === TYPOGRAPHIE === */
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', sans-serif;

  /* === BORDER RADIUS === */
  --radius-sm:  0.25rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-2xl: 1.5rem;

  /* === OMBRES === */
  --shadow-sm: 0 1px 2px rgba(45,31,71,0.05);
  --shadow-md: 0 4px 12px rgba(45,31,71,0.08);
  --shadow-lg: 0 12px 24px rgba(45,31,71,0.10);
  --shadow-xl: 0 24px 48px rgba(45,31,71,0.12);
}

/* ============================================================
   BASE RESET & GLOBAL STYLES
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--black-soft);
  background-color: var(--white-neutral);
  line-height: 1.6;
}

body.rtl, [dir="rtl"] { font-family: var(--font-arabic); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

*:focus-visible {
  outline: 2px solid var(--prune-night);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--prune-night);
  color: #fff;
  border-color: var(--prune-night);
}
.btn-primary:hover {
  background: var(--prune-dark);
  border-color: var(--prune-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-gold {
  background: var(--gold-dark);
  color: var(--prune-night);
  border-color: var(--gold-dark);
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.site-header.scrolled {
  background: rgba(45,31,71,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.site-logo { font-size: 1.5rem; font-weight: 800; color: var(--prune-night); }
.site-header.scrolled .site-logo { color: #fff; }

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}
.main-nav a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--prune-night);
  background: var(--prune-light);
}
.site-header.scrolled .main-nav a { color: rgba(255,255,255,0.75); }
.site-header.scrolled .main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: none; background: none; cursor: pointer;
  color: var(--prune-night);
  border-radius: var(--radius-md);
}
.site-header.scrolled .menu-toggle { color: #fff; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--prune-night);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu nav a:hover { color: var(--gold-dark); }
.mobile-menu-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: #fff; cursor: pointer; font-size: 1.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--prune-night);
  padding-top: 4.5rem; /* offset for fixed header */
}
.hero-blob-1 {
  position: absolute;
  top: -8rem; right: -8rem;
  width: 32rem; height: 32rem;
  border-radius: 50%;
  background: rgba(74,53,136,0.4);
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  background: rgba(196,154,60,0.05);
  filter: blur(80px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem 6rem;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 7rem 8rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(196,154,60,0.4);
  background: rgba(196,154,60,0.1);
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
}
.hero-badge span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }
.hero-stat-value { font-size: 1.25rem; font-weight: 700; color: var(--gold-dark); line-height: 1.2; }

/* Dashboard Mockup */
.hero-mockup { display: none; }
@media (min-width: 1024px) { .hero-mockup { display: block; } }
.mockup-window {
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  margin-left: 1rem;
}
.mockup-chrome {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mockup-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.mockup-dot-r { background: rgba(248,113,113,0.7); }
.mockup-dot-y { background: rgba(250,204,21,0.7); }
.mockup-dot-g { background: rgba(74,222,128,0.7); }
.mockup-url { flex: 1; height: 1.25rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.07); margin-left: 0.75rem; }
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.mockup-card {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.07);
  padding: 0.75rem;
}
.mockup-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.mockup-card-value { font-size: 1.5rem; font-weight: 700; color: #fff; }
.mockup-card-trend { font-size: 0.75rem; color: #4ade80; margin-top: 0.25rem; }
.mockup-chart { border-radius: var(--radius-xl); background: rgba(255,255,255,0.07); padding: 1rem; margin-bottom: 1rem; }
.mockup-chart-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.mockup-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 5rem; }
.mockup-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(255,255,255,0.14); }
.mockup-bar.highlight { background: var(--gold-dark); }
.mockup-notifications { display: flex; flex-direction: column; gap: 0.5rem; }
.mockup-notif {
  display: flex; align-items: center; gap: 0.625rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  padding: 0.625rem 0.75rem;
}
.mockup-notif-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0; }
.mockup-notif-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.mockup-float {
  position: absolute;
  bottom: -1.5rem; left: -2.5rem;
  border-radius: var(--radius-2xl);
  background: var(--gold-dark);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  width: 12rem;
}
.mockup-float-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.mockup-float-icon {
  width: 2rem; height: 2rem; border-radius: var(--radius-lg);
  background: var(--prune-night);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 900; color: var(--gold-dark);
  flex-shrink: 0;
}
.mockup-float-title { font-size: 0.75rem; font-weight: 700; color: var(--prune-night); }
.mockup-float-sub { font-size: 0.625rem; color: rgba(45,31,71,0.6); }
.mockup-float-body {
  border-radius: var(--radius-lg);
  background: rgba(45,31,71,0.15);
  padding: 0.625rem;
  font-size: 0.75rem; font-weight: 500; color: var(--prune-night);
}

/* ============================================================
   TRUST / LOGOS SECTION
   ============================================================ */

.trust-section { padding-block: 3rem; background: #fff; border-bottom: 1px solid var(--gray-100); }
.trust-title { text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; }
.trust-logo {
  font-size: 1rem; font-weight: 700; color: var(--gray-400);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: color 0.2s, border-color 0.2s;
}
.trust-logo:hover { color: var(--prune-night); border-color: var(--prune-lavender); }

/* ============================================================
   PAIN SECTION
   ============================================================ */

.pain-section { background: var(--gray-100); padding-block: 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--prune-dark);
  background: var(--prune-light);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--prune-night); line-height: 1.2; margin-bottom: 2rem; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem; font-weight: 500; color: var(--gray-800);
}
.pain-icon { font-size: 1.25rem; flex-shrink: 0; }

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */

.solutions-section { background: #fff; padding-block: 5rem; }
.solutions-section .section-title { text-align: center; }
.solutions-white-label { text-align: center; color: var(--gray-400); font-size: 0.875rem; margin-bottom: 3rem; margin-top: 0.5rem; max-width: 32rem; margin-inline: auto; }
.solutions-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .solutions-grid { grid-template-columns: 1fr 1fr; } }

.solution-card {
  border-radius: var(--radius-2xl);
  border: 2px solid;
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.solution-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.solution-card.prune { border-color: rgba(184,165,212,0.5); background: var(--prune-light); }
.solution-card.prune:hover { border-color: rgba(45,31,71,0.4); }
.solution-card.gold  { border-color: rgba(221,185,106,0.5); background: var(--gold-cream); }
.solution-card.gold:hover  { border-color: rgba(196,154,60,0.6); }

.solution-card-header { display: flex; align-items: flex-start; gap: 1rem; }
.solution-icon {
  width: 3rem; height: 3rem; border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.375rem;
}
.solution-card.prune .solution-icon { background: rgba(45,31,71,0.1); }
.solution-card.gold  .solution-icon { background: rgba(196,154,60,0.2); }
.solution-card-title { font-size: 1.125rem; font-weight: 700; color: var(--prune-night); }
.solution-card-desc  { font-size: 0.875rem; color: var(--prune-medium); margin-top: 0.125rem; }
.solution-features { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.solution-feature {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: var(--gray-800);
}
.solution-feature::before {
  content: '';
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.solution-card.prune .solution-feature::before { background: var(--prune-night); }
.solution-card.gold  .solution-feature::before { background: var(--gold-dark); }
.solution-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600;
  transition: color 0.2s;
}
.solution-card.prune .solution-link { color: var(--prune-night); }
.solution-card.prune .solution-link:hover { color: var(--prune-dark); }
.solution-card.gold  .solution-link { color: var(--gold-dark); }
.solution-card.gold  .solution-link:hover { color: var(--prune-night); }

/* ============================================================
   WHY SECTION
   ============================================================ */

.why-section { background: var(--prune-night); padding-block: 5rem; }
.why-section .section-title { color: #fff; text-align: center; margin-bottom: 3rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(196,154,60,0.3); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-label { font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,0.9); }

/* ============================================================
   RESULTS SECTION
   ============================================================ */

.results-section { background: var(--gold-cream); padding-block: 5rem; }
.results-section .section-title { text-align: center; margin-bottom: 3rem; }
.results-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .results-grid { grid-template-columns: repeat(3,1fr); } }
.result-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.result-value { font-size: 2.5rem; font-weight: 800; color: var(--prune-night); line-height: 1; margin-bottom: 0.5rem; }
.result-desc { font-size: 0.9375rem; color: var(--gray-600); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section { background: #fff; padding-block: 5rem; }
.testimonials-section .section-title { text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--prune-light);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-stars { color: var(--gold-dark); font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.9375rem; color: var(--gray-800); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--prune-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--prune-night); }
.testimonial-role { font-size: 0.75rem; color: var(--prune-medium); }

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section { background: var(--gray-100); padding-block: 5rem; }
.faq-section .section-title { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-trigger {
  width: 100%; text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1rem; font-weight: 600; color: var(--prune-night);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
  gap: 1rem;
}
.faq-trigger:hover { background: var(--prune-light); }
.faq-trigger svg { flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-body { max-height: 500px; }
.faq-body-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7;
}
.faq-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   CTA FINAL SECTION
   ============================================================ */

.cta-final-section {
  background: var(--prune-night);
  padding-block: 5rem;
  text-align: center;
}
.cta-final-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-final-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 32rem; margin-inline: auto; }
.cta-final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.cta-final-mention { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { background: #fff; border-top: 1px solid var(--gray-200); }
.footer-body { padding-block: 4rem; display: grid; gap: 3rem; }
@media (min-width: 640px) { .footer-body { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-body { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand-name { font-size: 1.25rem; font-weight: 800; color: var(--prune-night); }
.footer-tagline { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.75rem; line-height: 1.6; max-width: 18rem; }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.footer-social {
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social:hover { color: var(--prune-night); border-color: var(--prune-lavender); background: var(--prune-light); }
.footer-col-title {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--prune-night);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray-600); transition: color 0.2s; }
.footer-links a:hover { color: var(--prune-night); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0.625rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.125rem; }
.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1rem;
  font-size: 0.8125rem; color: var(--gray-400);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { color: var(--gray-400); transition: color 0.2s; }
.footer-legal a:hover { color: var(--prune-night); }

/* ============================================================
   INNER PAGES
   ============================================================ */

.page-hero {
  background: var(--prune-night);
  padding: 8rem 0 4rem;
}
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.page-hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 40rem; }

.content-section { padding-block: 5rem; }
.content-section h2 { font-size: 1.75rem; font-weight: 700; color: var(--prune-night); margin-bottom: 1rem; margin-top: 2.5rem; }
.content-section p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }

/* ============================================================
   CONTACT / FORMS
   ============================================================ */

.contact-form-wrap { max-width: 42rem; margin-inline: auto; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--black-soft);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--prune-dark);
  box-shadow: 0 0 0 3px rgba(74,53,136,0.1);
}
.form-textarea { resize: vertical; min-height: 8rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   WORDPRESS CONTENT STYLES
   ============================================================ */

.entry-content { max-width: 42rem; }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--prune-night);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.entry-content p  { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.375rem; color: var(--gray-600); }
.entry-content a  { color: var(--prune-dark); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--gold-dark);
  padding-left: 1.25rem;
  margin-block: 1.5rem;
  font-style: italic; color: var(--gray-600);
}

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */

.elementor-section,
.e-con { max-width: 100% !important; }

.elementor-kit-tag h1 { font-family: var(--font-sans); }
.elementor-widget-heading .elementor-heading-title { line-height: 1.2; }
.elementor-button.btn-primary-el {
  background-color: var(--prune-night) !important;
  border-color: var(--prune-night) !important;
  color: #fff !important;
  border-radius: var(--radius-lg) !important;
}
.elementor-button.btn-gold-el {
  background-color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--prune-night) !important;
  border-radius: var(--radius-lg) !important;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center  { text-align: center; }
.text-white   { color: #fff; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
