/* Rabbani Watch – Ciridae color theme & animation style */

:root {
  /* Ciridae-like: true black, white, warm neutrals */
  --ciridae-black: #000000;
  --ciridae-dark: #0a0a0a;
  --ciridae-card: #141414;
  --ciridae-white: #ffffff;
  --ciridae-off: #1a1a1a;
  --ciridae-muted: #888888;
  --ciridae-border: rgba(255,255,255,.12);
  --accent: #e85d04;
  --accent-glow: rgba(232, 93, 4, .25);
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --gold-dark: #9a7b1a;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --black: var(--ciridae-black);
  --cream: var(--ciridae-off);
  --white: var(--ciridae-white);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,.65);
  --radius: 8px;
  --radius-pill: 999px;
  --radius-sm: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 0.8s;
  --width-content: 720px;
  --width-wide: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ciridae-black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ========== Scroll reveal (Ciridae-style) ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-up { transition-delay: 0.1s; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.45s; }

.container { max-width: var(--width-wide); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--width-content); margin: 0 auto; padding: 0 24px; }

/* Typography */
.section-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}
.page-hero { padding: 140px 24px 60px; background: var(--ciridae-black); color: var(--white); }
.page-hero .section-title { margin-bottom: 16px; color: var(--white); }
.page-hero .section-desc { margin: 0 auto; color: var(--text-muted); }
.text-center { text-align: center; }
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.app-detail-header { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.app-detail-icon { flex-shrink: 0; }
.app-detail-short { font-size: 1.1rem; color: var(--text-muted); margin: 8px 0 0; }
.app-detail-ai-callout {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(232,93,4,.08);
  border: 1px solid rgba(232,93,4,.25);
  border-radius: var(--radius);
}
.app-detail-ai-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.app-detail-ai-text { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.app-detail-body p { margin: 0 0 1em; }
.detail-highlights { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); text-align: left; }
.detail-highlights-title { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: var(--white); }
.detail-highlights-list { margin: 0; padding-left: 1.25rem; color: var(--text-muted); line-height: 1.7; }
.detail-highlights-list li { margin-bottom: 8px; }

.faq-section { position: relative; padding: 100px 0; }
.faq-list { max-width: 640px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq-item summary { padding: 20px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--text-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-a { padding: 0 0 24px; margin: 0; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

.fe-card-ai-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 8px 0 0;
}
.fe-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.fe-card-link:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.fe-card-arrow { position: absolute; bottom: 1rem; right: 1rem; opacity: .6; }

/* ========== Header – Ciridae: transparent over hero, solid dark on scroll ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: var(--ciridae-black);
  border-bottom-color: rgba(255,255,255,.08);
}
.site-header .logo { color: var(--white); transition: color 0.3s var(--ease); }
.site-header.scrolled .logo { color: var(--white); }
.site-header .nav a { color: rgba(255,255,255,.75); transition: color 0.3s var(--ease); }
.site-header.scrolled .nav a { color: rgba(255,255,255,.75); }
.site-header .nav a:hover { color: var(--white); }
.site-header .nav a.active { color: var(--white); font-weight: 600; }
.site-header .nav-cta {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header .nav-cta:hover { background: var(--white); color: var(--ciridae-black); border-color: var(--white); }
.site-header.scrolled .nav-cta { color: var(--white); border-color: rgba(255,255,255,.5); }
.site-header.scrolled .nav-cta:hover { background: var(--white); color: var(--ciridae-black); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
/* Language switcher */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  color: rgba(255,255,255,.9);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang-switcher-btn:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.lang-switcher-icon { font-size: 1rem; }
.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 6px 0 0;
  padding: 6px 0;
  min-width: 160px;
  background: var(--ciridae-black);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 200;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.lang-menu a.active { color: var(--white); font-weight: 600; background: rgba(255,255,255,.06); }

.nav-cta {
  font-weight: 600;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== Hero – Ciridae: full-viewport dark + background graphics ========== */
.hero-editorial {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 100px;
  background: var(--ciridae-black);
  color: var(--white);
  overflow: hidden;
}
/* Ciridae-style: amber/burnt orange bokeh glow (animated) + soft white glow */
.hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 15% 30%, rgba(232,93,4,.35) 0%, transparent 50%),
              radial-gradient(ellipse 70% 60% at 90% 70%, rgba(232,93,4,.2) 0%, transparent 45%),
              radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255,255,255,.06) 0%, transparent 50%),
              radial-gradient(ellipse 50% 80% at 70% 20%, rgba(232,93,4,.12) 0%, transparent 45%);
  pointer-events: none;
  animation: heroBokeh 14s var(--ease) infinite alternate;
}
@keyframes heroBokeh {
  0% { opacity: 1; transform: scale(1) translate(0, 0); }
  50% { opacity: .9; transform: scale(1.08) translate(2%, 1%); }
  100% { opacity: 1; transform: scale(1.04) translate(-1%, -1%); }
}
.hero-editorial::after {
  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%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='0.12' stroke-opacity='0.06' fill='none'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}
/* Hero floating orbs – Ciridae bokeh feel */
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 20s var(--ease) infinite;
}
.hero-orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,93,4,.3) 0%, transparent 70%);
  top: 10%; left: 5%;
  animation-delay: 0s; animation-duration: 18s;
}
.hero-orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,93,4,.2) 0%, transparent 70%);
  bottom: 15%; right: 10%;
  animation-delay: -5s; animation-duration: 22s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation-delay: -10s; animation-duration: 16s;
}
.hero-orb-4 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,93,4,.15) 0%, transparent 70%);
  top: 70%; left: 20%;
  animation-delay: -7s; animation-duration: 24s;
}
.hero-orb-5 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  top: 25%; right: 25%;
  animation-delay: -3s; animation-duration: 19s;
}
.hero-orb-6 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232,93,4,.18) 0%, transparent 70%);
  bottom: 30%; left: 40%;
  animation-delay: -12s; animation-duration: 26s;
}
.hero-orb-7 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(232,93,4,.12) 0%, transparent 70%);
  top: 60%; right: 5%;
  animation-delay: -8s; animation-duration: 21s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .9; }
  33% { transform: translate(15px, -20px) scale(1.05); opacity: 1; }
  66% { transform: translate(-10px, 10px) scale(0.98); opacity: .85; }
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/bg-grain.svg');
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
  animation: meshShift 60s linear infinite;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/bg-lines.svg');
  background-size: 400px;
  opacity: 0.25;
  pointer-events: none;
  animation: meshShift 45s linear infinite reverse;
}
.hero-bg-ring {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  background: url('/assets/images/bg-glow-ring.svg') center/contain no-repeat;
  opacity: 0.6;
  pointer-events: none;
}
.hero-img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,93,4,.2) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: glowPulse 4s var(--ease) infinite alternate;
}
.hero-img-reflection {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(1) scaleY(-0.35);
  bottom: -15%;
  width: 85%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,.06) 0%, transparent 100%);
  filter: blur(8px);
  pointer-events: none;
  border-radius: 50%;
}
@keyframes glowPulse {
  0% { opacity: .7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/bg-mesh.svg');
  background-size: 240px;
  opacity: 0.4;
  pointer-events: none;
  animation: meshShift 30s linear infinite;
}
@keyframes meshShift {
  0% { background-position: 0 0; }
  100% { background-position: 240px 120px; }
}
/* Optional: texture overlay */
.hero-editorial .hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/pattern-luxury.png');
  background-size: 380px;
  background-repeat: repeat;
  opacity: 0.07;
  pointer-events: none;
}
.hero-editorial .container { position: relative; z-index: 1; }
.hero-editorial-inner {
  max-width: var(--width-wide);
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-editorial-inner .hero-content { max-width: 640px; }
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.25rem, 8vw, 5.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 1s var(--ease-out) 0.2s forwards;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0 0 40px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.9s var(--ease-out) 0.4s forwards;
}
.hero-ai-badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
  opacity: 0.95;
}
.hero-cta-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 4px;
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.65s forwards;
}
.hero-cta-link:hover { border-bottom-color: var(--white); }
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 0.5s forwards;
}
.hero-visual-wrap .visual-cta-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  transition: transform 1.2s var(--ease-out);
  transform: scale(0.96) translateY(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.hero-editorial .hero-visual-wrap .visual-cta-img { position: relative; z-index: 1; }
.hero-editorial .hero-visual-wrap.hero-img-visible .visual-cta-img {
  transform: scale(1) translateY(0);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
/* Scroll hint: Ciridae-style pulse + bouncing arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  animation: scrollPulse 2.5s var(--ease) infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint .scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg) translateY(0);
  animation: scrollBounce 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ========== Section background graphics (Ciridae-style) ========== */
.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Parallax background layers */
.parallax-bg { will-change: transform; }
.section-bg-punch {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,93,4,.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
  animation: bgPulse 8s var(--ease) infinite alternate;
}
.section-bg-punch-shimmer {
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.02) 45%, transparent 55%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 6s var(--ease) infinite;
  opacity: 0.8;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Decorative crystals – Ciridae-style geometric glows */
.deco-crystal {
  position: absolute;
  width: 120px;
  height: 120px;
  background: url('/assets/images/bg-crystal.svg') center/contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: crystalFloat 15s var(--ease) infinite;
}
.deco-crystal-punch { top: 20%; right: 10%; width: 80px; height: 80px; animation-delay: -2s; }
.deco-crystal-pillars-1 { top: 15%; left: 5%; animation-delay: 0s; opacity: 0.15; }
.deco-crystal-pillars-2 { bottom: 20%; right: 8%; animation-delay: -7s; width: 100px; height: 100px; opacity: 0.12; }
.deco-crystal-cta { top: 50%; left: 5%; transform: translateY(-50%); animation-delay: -4s; opacity: 0.18; }
.deco-crystal-trust-1 { top: 25%; right: 15%; animation-delay: -1s; width: 90px; height: 90px; }
.deco-crystal-trust-2 { bottom: 30%; left: 10%; animation-delay: -9s; opacity: 0.12; }
.deco-crystal-features-1 { top: 10%; right: 5%; animation-delay: -3s; opacity: 0.14; }
.deco-crystal-features-2 { bottom: 15%; left: 8%; width: 100px; height: 100px; animation-delay: -11s; }
.deco-crystal-only-watch { top: 30%; right: 12%; width: 70px; height: 70px; animation-delay: -5s; opacity: 0.12; }
.deco-crystal-ai { bottom: 25%; left: 12%; width: 85px; height: 85px; animation-delay: -8s; opacity: 0.14; }
.deco-crystal-contact { bottom: 20%; right: 10%; animation-delay: -5s; opacity: 0.16; }
@keyframes crystalFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(8px, -10px) rotate(5deg); }
}
.section-bg-statement {
  background: url('/assets/images/bg-mesh.svg') repeat;
  background-size: 160px;
  opacity: 0.35;
  animation: meshShift 40s linear infinite;
}
.section-bg-statement-glow {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232,93,4,.06) 0%, transparent 60%);
  animation: bgPulse 12s var(--ease) infinite alternate;
}
.section-bg-pillars {
  background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(232,93,4,.06) 0%, transparent 50%),
              url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0v40M0 20h40' stroke='%23fff' stroke-opacity='0.03' fill='none'/%3E%3C/svg%3E");
}
.section-bg-visual-cta {
  background: radial-gradient(ellipse 90% 70% at 10% 50%, rgba(232,93,4,.15) 0%, transparent 50%),
              radial-gradient(ellipse 70% 90% at 90% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
  animation: heroBokeh 16s var(--ease) infinite alternate;
}
.section-bg-visual-cta-ring {
  background: url('/assets/images/bg-glow-ring.svg') 80% 50% /  min(40vw, 320px) no-repeat;
  opacity: 0.35;
  animation: meshShift 35s linear infinite;
}
.section-bg-trust {
  background: url('/assets/images/bg-starburst.svg') center/cover repeat;
  background-size: 200px;
  opacity: 0.2;
}
.section-bg-features {
  background: url('/assets/images/bg-mesh.svg') repeat;
  background-size: 200px;
  opacity: 0.3;
  animation: meshShift 50s linear infinite;
}
.section-bg-features-glow {
  background: radial-gradient(ellipse 80% 40% at 50% 20%, rgba(232,93,4,.08) 0%, transparent 50%);
  animation: bgPulse 9s var(--ease) infinite alternate;
}
.section-bg-contact {
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(232,93,4,.12) 0%, transparent 55%);
  animation: bgPulse 10s var(--ease) infinite alternate;
}
.section-bg-contact-ring {
  background: url('/assets/images/bg-glow-ring.svg') 20% 70% / min(35vw, 280px) no-repeat;
  opacity: 0.3;
}
@keyframes bgPulse {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

/* ========== Punch – Ciridae: two-line bold, dark bg + subtle graphic ========== */
.punch {
  position: relative;
  padding: 100px 24px;
  background: var(--ciridae-black);
  color: var(--white);
  overflow: hidden;
}
.punch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.punch .container { position: relative; z-index: 1; text-align: center; }
.punch-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.punch-line.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.punch-line-a { margin-bottom: 8px; transition-delay: 0.05s; }
.punch-line-b { opacity: 0; transition-delay: 0.2s; }
.punch-line-b.is-visible { opacity: .95; }

/* Statement – Ciridae: black bg, white text, subtle grid */
.statement {
  position: relative;
  padding: 120px 0;
  background: var(--ciridae-black);
  overflow: hidden;
}
.statement::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0v40M0 20h40' stroke='%23fff' stroke-width='0.1' stroke-opacity='0.05' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.statement .container-narrow { position: relative; z-index: 1; text-align: center; }
.statement-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.statement-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 600px;
}

/* Numbered pillars – Ciridae: black bg, dark cards, white text */
.pillars { position: relative; padding: 120px 0; background: var(--ciridae-black); overflow: hidden; }
.pillars .container { position: relative; z-index: 1; }
.pillars-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.pillars-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 56px;
  max-width: 560px;
}
.pillar-list { display: grid; gap: 56px; }
.pillar {
  border-bottom: 1px solid var(--ciridae-border);
  padding-bottom: 56px;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease);
}
.pillar:hover {
  transform: translateX(8px);
  opacity: 1;
}
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: block;
}
.pillar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pillar-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
}

/* Pillars + hero image row (Ciridae-style) */
.pillars-with-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.pillars-with-hero .pillar-list { margin-top: 0; }
.pillars-hero-img {
  position: sticky;
  top: 120px;
}
.pillars-hero-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.pillars-hero-img:hover img {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 40px rgba(232,93,4,.08);
}

/* Visual + CTA – Ciridae: light section, image + “Begin the transformation” */
/* Only watch that + How it works */
.only-watch { position: relative; padding: 120px 0; background: var(--ciridae-black); overflow: hidden; }
.only-watch .container { position: relative; z-index: 1; }
.only-watch-list { list-style: none; margin: 0; padding: 0; }
.only-watch-list li { position: relative; padding: 16px 0 16px 44px; border-bottom: 1px solid var(--ciridae-border); font-size: 1.05rem; line-height: 1.5; color: var(--text-muted); }
.only-watch-list li:last-child { border-bottom: none; }
.only-watch-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent-glow); }
.only-watch-list li:hover { color: var(--white); }
.how-it-works { position: relative; padding: 120px 0; background: var(--ciridae-dark); overflow: hidden; }
.how-it-works .container { position: relative; z-index: 1; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.how-step { padding: 32px 24px; background: var(--ciridae-card); border-radius: var(--radius); border: 1px solid var(--ciridae-border); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.how-step:hover { border-color: rgba(232,93,4,.25); box-shadow: 0 12px 32px rgba(0,0,0,.3); transform: translateY(-4px); }
.how-step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--accent); color: var(--white); font-weight: 700; font-size: 1.25rem; border-radius: 50%; margin-bottom: 20px; }
.how-step-title { font-size: 1.15rem; font-weight: 600; color: var(--white); margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.02em; }
.how-step-desc { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
@media (max-width: 768px) { .how-steps { grid-template-columns: 1fr; } }

.visual-cta { position: relative; padding: 120px 0; background: var(--ciridae-dark); overflow: hidden; }
.visual-cta .container { position: relative; z-index: 1; }
.visual-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visual-cta-media { position: relative; }
.visual-cta-img-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,93,4,.25) 0%, transparent 65%);
  filter: blur(35px);
  pointer-events: none;
  animation: glowPulse 5s var(--ease) infinite alternate;
}
.visual-cta-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 1.2s var(--ease-out), box-shadow 1s var(--ease-out);
  transform: scale(0.96);
  box-shadow: 0 20px 56px rgba(0,0,0,.3), 0 0 60px rgba(232,93,4,.08);
}
.visual-cta-media:hover .visual-cta-img,
.visual-cta-media.is-visible .visual-cta-img {
  transform: scale(1.02);
  box-shadow: 0 28px 72px rgba(0,0,0,.4), 0 0 80px rgba(232,93,4,.12);
}
.visual-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 20px;
}
.visual-cta-text { font-size: 1.05rem; color: var(--text-muted); margin: 0 0 28px; line-height: 1.6; }
.visual-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.visual-cta .btn-ghost { color: var(--white); border-color: var(--ciridae-border); }
.visual-cta .btn-ghost:hover { background: var(--white); color: var(--ciridae-black); border-color: var(--white); }

/* Trust – Ciridae Security-style: black bg, vertical timeline, orange active pill */
.trust {
  position: relative;
  padding: 120px 0;
  background: var(--ciridae-black);
  overflow: hidden;
}
.trust .container { position: relative; z-index: 1; }
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.trust-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 56px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.trust-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--ciridae-border);
  border-radius: var(--radius-pill);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.trust-item.is-active .trust-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.trust-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.trust-item {
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease);
}
.trust-item:hover {
  transform: translateY(-4px);
  opacity: 1;
}
.trust-item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* AI section – RabbaniGPT in every app */
.ai-section {
  position: relative;
  padding: 120px 0;
  background: var(--ciridae-dark);
  overflow: hidden;
}
.ai-section .container { position: relative; z-index: 1; }
.ai-app-list li::before { background: var(--accent); box-shadow: 0 0 14px var(--accent-glow); }

/* Stories section – Imagine / day-in-the-life */
.stories-section {
  position: relative;
  padding: 120px 0;
  background: var(--ciridae-black);
  overflow: hidden;
}
.stories-section .container { position: relative; z-index: 1; }
.stories-list { display: flex; flex-direction: column; gap: 48px; margin-top: 40px; }
.story-block {
  padding: 32px 28px;
  background: var(--ciridae-card);
  border-radius: var(--radius);
  border: 1px solid var(--ciridae-border);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story-block:hover {
  border-color: rgba(232,93,4,.2);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.story-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.story-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* Features editorial – Ciridae: black bg, dark cards, white text */
.features-editorial { position: relative; padding: 120px 0; background: var(--ciridae-black); overflow: hidden; }
.features-editorial .container { position: relative; z-index: 1; }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 48px;
}
.features-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.fe-card {
  position: relative;
  padding: 28px 24px;
  margin: 0 -24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--ciridae-border);
  overflow: hidden;
  transition: opacity var(--reveal-duration) var(--ease-out), transform 0.4s var(--ease-out), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.fe-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  transition: left 0.6s var(--ease);
}
.fe-card:hover::after { left: 100%; }
.fe-card:hover {
  opacity: 1;
  transform: translateY(-6px);
  border-color: rgba(232,93,4,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
}
.fe-card-icon { width: 48px; height: 48px; margin-bottom: 16px; object-fit: contain; filter: brightness(1.1); transition: transform 0.3s var(--ease); }
.fe-card:hover .fe-card-icon { transform: scale(1.08); }
.fe-card:nth-child(1) { transition-delay: 0s; }
.fe-card:nth-child(2) { transition-delay: 0.03s; }
.fe-card:nth-child(3) { transition-delay: 0.06s; }
.fe-card:nth-child(4) { transition-delay: 0.09s; }
.fe-card:nth-child(5) { transition-delay: 0.12s; }
.fe-card:nth-child(6) { transition-delay: 0.15s; }
.fe-card:nth-child(7) { transition-delay: 0.18s; }
.fe-card:nth-child(8) { transition-delay: 0.21s; }
.fe-card:nth-child(9) { transition-delay: 0.24s; }
.fe-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.02em; }
.fe-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.fe-card-link:hover h3 { color: var(--white); }
.section-cta .btn-ghost { color: var(--white); border-color: var(--ciridae-border); }
.section-cta .btn-ghost:hover { background: var(--white); color: var(--ciridae-black); }

/* Contact editorial – Ciridae “Work with us” style */
.contact-editorial { position: relative; padding: 120px 0; background: var(--ciridae-dark); overflow: hidden; }
.contact-editorial .container { position: relative; z-index: 1; }
.contact-editorial .section-label { margin-bottom: 12px; color: var(--text-muted); }
.contact-editorial .section-headline { margin-bottom: 36px; color: var(--white); }
.subscribe-form-editorial {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.subscribe-form-editorial input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1px solid var(--ciridae-border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--ciridae-card);
  color: var(--white);
  transition: border-color 0.3s var(--ease);
}
.subscribe-form-editorial input::placeholder { color: var(--text-muted); }
.subscribe-form-editorial input:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-editorial .form-success { color: var(--accent); font-weight: 500; }
.contact-editorial .form-error { margin-bottom: 12px; color: #f87171; }

/* Hero (legacy, keep for ref) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0c4a6e 100%);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/pattern-luxury.png');
  background-size: 420px;
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin: 0 0 16px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--white);
}
.hero-tagline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 6s var(--ease) infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ciridae-black);
  color: var(--white);
  border: 1px solid var(--ciridae-black);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.2s var(--ease);
}
.btn-primary:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.visual-cta .btn-ghost { color: var(--white); border-color: var(--ciridae-border); }
.visual-cta .btn-ghost:hover { background: var(--white); color: var(--ciridae-black); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* Why section – dark theme */
.why { padding: 100px 0; background: var(--ciridae-black); }
.why .section-title { color: var(--white); }
.why .section-desc { margin-bottom: 56px; color: var(--text-muted); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.why-card {
  background: var(--ciridae-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--ciridae-border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
}
.why-card p { margin: 0; color: var(--text-muted); font-size: 0.98rem; }

/* Stats – dark */
.stats {
  position: relative;
  padding: 72px 0;
  background: var(--ciridae-dark);
  color: var(--white);
}
.stats-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/pattern-luxury.png');
  background-size: 320px;
  opacity: 0.04;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label { font-size: 1rem; color: var(--text-muted); }

/* Features – dark theme */
.features { padding: 100px 0; background: var(--ciridae-dark); }
.features .section-title { text-align: center; color: var(--white); }
.features .section-desc { text-align: center; color: var(--text-muted); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--ciridae-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--ciridae-border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  border-color: rgba(232,93,4,.25);
}
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature-icon-img { width: 64px; height: 64px; object-fit: contain; filter: brightness(1.1); }
.feature-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}
.feature-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* CTA Block – dark */
.cta-block {
  position: relative;
  padding: 100px 0;
  background: var(--ciridae-black);
  color: var(--white);
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/pattern-luxury.png');
  background-size: 380px;
  opacity: 0.04;
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--white);
}
.cta-block p { font-size: 1.1rem; color: var(--text-muted); margin: 0 0 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact / Newsletter – dark theme */
.contact { padding: 80px 0; background: var(--ciridae-black); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: var(--text-muted); }
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.subscribe-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  border: 1px solid var(--ciridae-border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--ciridae-card);
  color: var(--white);
}
.subscribe-form input::placeholder { color: var(--text-muted); }
.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,.15);
}
.form-success { color: var(--accent); font-weight: 500; text-align: center; }
.form-error { color: #f87171; text-align: center; margin-bottom: 12px; }

/* Footer – dark */
.site-footer {
  background: var(--ciridae-black);
  color: rgba(255,255,255,.75);
  padding: 48px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand p { margin: 8px 0 0; font-size: 0.95rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { margin: 0; font-size: 0.9rem; opacity: .7; }
/* Footer – Ciridae: dark, “Begin the transformation” + links */
.site-footer-editorial {
  background: var(--ciridae-black);
  color: rgba(255,255,255,.8);
  padding: 0;
  border-top: none;
}
.footer-cta-block {
  padding: 80px 24px 64px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta-block .footer-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.footer-cta-block .btn-primary {
  background: var(--white);
  color: var(--ciridae-black);
  border-color: var(--white);
}
.footer-cta-block .btn-primary:hover { background: rgba(255,255,255,.9); color: var(--ciridae-black); }
.site-footer-editorial .footer-grid {
  padding: 48px 24px 36px;
}
.site-footer-editorial .footer-links a { color: rgba(255,255,255,.7); }
.site-footer-editorial .footer-links a:hover { color: var(--white); }
.site-footer-editorial .footer-brand .logo { color: var(--white); }
.site-footer-editorial .footer-brand p { color: rgba(255,255,255,.6); }
.site-footer-editorial .footer-copy {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  padding: 0 24px 32px;
  margin: 0;
}
.site-footer-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,255,255,.05) 0%, transparent 55%);
  pointer-events: none;
}
.site-footer-editorial { position: relative; }
.site-footer-editorial .footer-cta-block,
.site-footer-editorial .footer-grid,
.site-footer-editorial .footer-copy { position: relative; z-index: 1; }

/* Section spacing */
.section { scroll-margin-top: 80px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-editorial-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-editorial-inner .hero-content { max-width: none; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual-wrap { order: -1; }
  .visual-cta-inner { grid-template-columns: 1fr; }
  .visual-cta-media { order: -1; }
  .visual-cta-content { text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .pillars-with-hero { grid-template-columns: 1fr; gap: 48px; }
  .pillars-hero-img { position: static; order: -1; }
  .pillars-hero-img img { max-width: 320px; margin: 0 auto; display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: none; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img { max-width: 320px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .nav { gap: 16px; flex-wrap: wrap; }
  .nav-cta { order: 10; width: 100%; text-align: center; }
  .hero-cta { flex-direction: column; }
  .visual-cta-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { min-width: 100%; }
  .subscribe-form-editorial { flex-direction: column; }
  .subscribe-form-editorial input { min-width: 100%; }
}

/* RTL (Arabic, Urdu, Persian) */
[dir="rtl"] .hero-editorial-inner { text-align: right; }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { flex-direction: row-reverse; }
[dir="rtl"] .footer-links { flex-direction: row-reverse; }
[dir="rtl"] .visual-cta-inner { direction: rtl; }
[dir="rtl"] .visual-cta-content { text-align: right; }
[dir="rtl"] .pillar-list { text-align: right; }
[dir="rtl"] .trust-grid { direction: rtl; }
[dir="rtl"] .features-editorial-grid { direction: rtl; }
[dir="rtl"] .lang-switch { margin-left: 16px; margin-right: 0; }
.lang-switch { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-right: 16px; }
.lang-switch span { opacity: .7; font-size: .8rem; }
