/**
 * Cahill Consultants — tpl_cahillnet
 * template.css  |  v2.0
 * Palette: #5e88bf · #3D5473 · #96B9D9 · #C9DFF2 · #723847
 */

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #0d1520;
  color: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =============================================================
   INTRO ANIMATION
   ============================================================= */
.intro-root {
  position: fixed; inset: 0; z-index: 9999; pointer-events: all;
}
.intro-root.is-done { display: none; pointer-events: none; }

.stable-stage {
  position: absolute; inset: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    opacity  2200ms ease-in,
    transform 7200ms cubic-bezier(0.4, 0, 0.9, 0.6);
}
.intro-root svg { width: 100%; height: 100%; display: block; }

.letter-fill { transition: opacity 600ms ease; }
.intro-root.is-cutout  .letter-fill  { opacity: 0; }
.intro-root.is-zooming .stable-stage { transform: scale(22); }
.intro-root.is-finishing .stable-stage { opacity: 0; }

/* =============================================================
   PILL NAVIGATION
   ============================================================= */
.pill-nav {
  position: fixed; top: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  display: flex; align-items: center;
  background: rgba(61, 84, 115, 0.88);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(150, 185, 217, 0.22);
  border-radius: 999px;
  padding: 10px 10px 10px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s ease, background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.pill-nav.show { opacity: 1; pointer-events: all; }

/* Light state — after scrolling past hero */
.pill-nav.light {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(61, 84, 115, 0.15);
  box-shadow: 0 4px 24px rgba(61, 84, 115, 0.12);
}

/* Inner pages — always visible, no intro wait */
body:not(.home) .pill-nav { opacity: 1; pointer-events: all; }

.nav-brand { display: flex; align-items: center; margin-right: 24px; flex-shrink: 0; }
.nav-logo  { height: 30px; width: auto; }
.pill-nav.light .nav-logo { filter: brightness(0.3) saturate(1.2); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 15px;
  font-size: 0.86rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.pill-nav.light .nav-links a { color: #3D5473; }
.pill-nav.light .nav-links a:hover { color: #3D5473; background: rgba(61,84,115,0.08); }

.nav-cta {
  margin-left: 12px;
  padding: 9px 22px;
  font-size: 0.85rem; font-weight: 700;
  color: #fff; background: #723847;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: #8a4558; box-shadow: 0 4px 20px rgba(114,56,71,0.5); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  /* background-size: auto 242% zooms into the SVG's internal clip-path content area
     (which lives at x=1783,y=1258 in the 6458x3864 canvas).
     background-position: 54% 56% centers the clip rect on the viewport,
     pushing transparent canvas edges off-screen. */
  background:
    url('../images/Cahill_BG1.svg') 54% 56% / auto 242% no-repeat,
    #040813;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(13, 21, 32, 0.32);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 840px; padding: 0 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transform: translateY(22px);
}
.hero-content.show { opacity: 1; pointer-events: all; transform: translateY(0); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #C9DFF2;
  margin-bottom: 28px;
}
.hero-eyebrow span { opacity: 0.4; }

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px; color: #fff;
}
.hero-heading em {
  font-style: italic;
  background: linear-gradient(135deg, #C9DFF2 0%, #96B9D9 50%, #5e88bf 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.52);
  max-width: 540px; margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ph {
  padding: 14px 34px; font-size: 0.9rem; font-weight: 700;
  color: #fff; background: #723847; border-radius: 999px;
  transition: all 0.25s; letter-spacing: 0.02em;
}
.btn-ph:hover { background: #8a4558; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(114,56,71,0.5); }
.btn-gh {
  padding: 14px 34px; font-size: 0.9rem; font-weight: 700;
  color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 999px; transition: all 0.25s;
}
.btn-gh:hover { border-color: rgba(255,255,255,0.52); color: #fff; }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; transition: opacity 0.8s 0.5s ease;
}
.scroll-hint.show { opacity: 1; }
.scroll-hint span {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  animation: sd 1.8s ease-in-out infinite;
}
@keyframes sd {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(9px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-spacer { height: 100vh; }

/* =============================================================
   CAROUSEL
   ============================================================= */
.car-section {
  position: relative; height: 100vh; overflow: hidden;
  background: #eef3f8;
}
.car-track {
  display: flex; height: 100%;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.car-slide { min-width: 100%; height: 100%; display: flex; overflow: hidden; }

/* Text panel */
.slide-txt {
  width: 44%; padding: 0 6vw 0 8vw;
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; position: relative; z-index: 1;
}
.snum {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #5e88bf;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.snum::after { content: ''; width: 30px; height: 1.5px; background: #5e88bf; opacity: 0.35; }
.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: #0d1520;
  margin-bottom: 18px;
}
.sdesc {
  font-size: 0.92rem; color: #484868;
  line-height: 1.78; margin-bottom: 34px;
  max-width: 370px;
}
.slink {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.875rem; font-weight: 700;
  color: #3D5473; letter-spacing: 0.02em;
}
.slink svg { transition: transform 0.2s; }
.slink:hover svg { transform: translateX(5px); }

/* Visual panel */
.slide-vis { flex: 1; position: relative; overflow: hidden; }
.slide-bg {
  position: absolute; inset: 0;
  transition: transform 7s ease;
}
.car-slide.active .slide-bg { transform: scale(1.07); }

/* Slide bg colors */
.s1 .slide-bg { background: url('../images/ID_ELearn.png') center /cover no-repeat, #3D5473; }
.s2 .slide-bg { background: url('../images/AI_Implement.png') center /cover no-repeat, #1a2d4a; }
.s3 .slide-bg { background: url('../images/Creative_Motion.png') center /cover no-repeat, #071E1E; }
.s4 .slide-bg { background: url('../images/Claude_Cowork_Code.png') center /cover no-repeat, #2a1520; }
.s5 .slide-bg { background: url('../images/Translations.png') center /cover no-repeat, #2a1520; }

/* Gradient/pattern overlays per slide */
.s1 .slide-bg::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(94,136,191,0.25) 0%, transparent 65%),
    repeating-linear-gradient(135deg, rgba(94,136,191,0.05) 0px, rgba(94,136,191,0.05) 1px, transparent 1px, transparent 70px);
}
.s2 .slide-bg::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 30%, rgba(94,136,191,0.3) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(150,185,217,0.05) 0px, rgba(150,185,217,0.05) 1px, transparent 1px, transparent 55px);
}
.s3 .slide-bg::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(13,115,119,0.3) 0%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(13,115,119,0.06) 0px, rgba(13,115,119,0.06) 1px, transparent 1px, transparent 65px);
}
.s4 .slide-bg::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 60%, rgba(114,56,71,0.28) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(114,56,71,0.05) 0px, rgba(114,56,71,0.05) 1px, transparent 1px, transparent 60px);
}
.s5 .slide-bg::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 60%, rgba(114,56,71,0.28) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(114,56,71,0.05) 0px, rgba(114,56,71,0.05) 1px, transparent 1px, transparent 60px);
}
/* Styled placeholder — replace with real images when ready */
.slide-placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.sp-icon {
  width: 88px; height: 88px;
  color: rgba(255,255,255,0.28);
  opacity: 0.9;
}
.slide-placeholder span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
  text-align: center; max-width: 200px;
}

.s-ghost {
  position: absolute; bottom: -8px; right: -16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  pointer-events: none; user-select: none; white-space: nowrap;
  z-index: 2;
}

/* Progress bar */
.car-prog {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(0,0,0,0.07); z-index: 10;
}
.car-bar { height: 100%; background: #5e88bf; width: 0; }

/* Controls */
.car-ctrl {
  position: absolute; bottom: 34px; right: 34px;
  display: flex; align-items: center; gap: 12px; z-index: 10;
}
.cdots { display: flex; gap: 8px; align-items: center; }
.cdot {
  width: 24px; height: 3px; border-radius: 3px;
  background: rgba(0,0,0,0.15); cursor: pointer;
  transition: all 0.3s;
}
.cdot.on { background: #5e88bf; width: 36px; }
.carrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1.5px solid #D9E4EE;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: #0d1520;
}
.carrow:hover { background: #5e88bf; border-color: #5e88bf; color: #fff; }

/* =============================================================
   SERVICES GRID
   ============================================================= */
.svc-section { background: #fff; padding: 100px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  text-align: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #3D5473;
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: #0d1520; text-align: center;
  margin-bottom: 60px;
}

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #D9E4EE;
  border: 1px solid #D9E4EE; border-radius: 16px; overflow: hidden;
}
.svc-cell {
  background: #fff; padding: 44px 36px;
  transition: background 0.25s;
  position: relative; cursor: pointer;
}
.svc-cell:hover { background: #EEF3F9; }
.snum2 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #5e88bf;
  margin-bottom: 16px; opacity: 0.5;
}
.svc-cell h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #0d1520; margin-bottom: 10px;
}
.svc-cell p { font-size: 0.88rem; color: #484868; line-height: 1.7; }
.sarrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #E8EFF7;
  display: flex; align-items: center; justify-content: center;
  color: #5e88bf; opacity: 0; transition: opacity 0.2s;
}
.svc-cell:hover .sarrow { opacity: 1; }

/* =============================================================
   PRODUCTS SECTION
   ============================================================= */
.prod-section { background: #F4F8FC; padding: 100px 0; }
.prod-intro {
  text-align: center; font-size: 1rem; color: #484868;
  max-width: 540px; margin: -40px auto 60px;
  line-height: 1.7;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px; align-items: start;
}

.prod-card {
  background: #fff;
  border: 1.5px solid #D9E4EE;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.prod-card:hover {
  box-shadow: 0 12px 40px rgba(61, 84, 115, 0.12);
  transform: translateY(-4px);
}
.prod-card.featured {
  border-color: #5e88bf;
  box-shadow: 0 0 0 3px rgba(94,136,191,0.12);
}

.prod-badge {
  position: absolute; top: -13px; left: 28px;
  background: #5e88bf; color: #fff;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}

.prod-icon {
  width: 56px; height: 56px;
  background: rgba(61,84,115,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #3D5473; margin-bottom: 20px;
}
.prod-icon svg { width: 32px; height: 32px; }

.prod-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: #0d1520; line-height: 1.3;
  margin-bottom: 12px;
}
.prod-desc {
  font-size: 0.88rem; color: #484868;
  line-height: 1.7; margin-bottom: 20px;
}

.prod-features {
  list-style: none; padding: 0;
  margin-bottom: 24px;
}
.prod-features li {
  font-size: 0.82rem; color: #3D5473;
  padding: 5px 0 5px 18px;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid #EEF3F9;
}
.prod-features li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: #96B9D9;
}

.prod-price {
  font-size: 1.5rem; font-weight: 800;
  color: #0d1520; letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.ct-section { background: #3D5473; padding: 120px 0; }
.ct-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.ct-left .eyebrow { text-align: left; color: #C9DFF2; margin-bottom: 20px; }
.ct-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 20px;
}
.ct-left > p { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

.ct-details { margin-top: 44px; }
.ct-det { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ct-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(94,136,191,0.18); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #C9DFF2;
}
.ct-txt { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.ct-txt strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.ct-txt a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ct-txt a:hover { color: #fff; }

/* RSForm!Pro / contact form wrapper */
.ct-form-wrap { }

/* Styling for RSForm!Pro when it renders inside the module position.
   Adjust selectors to match your RSForm form field IDs as needed. */
.ct-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255, 0.06)}


.ct-form-wrap input[type="text"],
.ct-form-wrap input[type="email"],
.ct-form-wrap select,
.ct-form-wrap textarea,
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.ct-form-wrap input::placeholder,
.ct-form-wrap textarea::placeholder,
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.ct-form-wrap input:focus,
.ct-form-wrap select:focus,
.ct-form-wrap textarea:focus,
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: #96B9D9; }
.ct-form-wrap select, .fg select { color: rgba(255,255,255,0.35); }
.ct-form-wrap select option, .fg select option { background: #3D5473; color: #fff; }
.ct-form-wrap textarea, .fg textarea { min-height: 110px; resize: vertical; }

.ct-form-wrap .rsform-submit-button,
.fsub {
  width: 100%; padding: 14px;
  font-size: 0.9rem; font-weight: 700; color: #fff;
  background: #723847; border: none; border-radius: 999px;
  cursor: pointer; transition: all 0.25s;
  margin-top: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
}
.ct-form-wrap .rsform-submit-button:hover,
.fsub:hover { background: #8a4558; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(114,56,71,0.45); }

.fg { margin-bottom: 18px; }
.fg label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 8px;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* =============================================================
   FOOTER
   ============================================================= */
.sf { background: #0a1220; padding: 72px 0 40px; border-top: 1px solid rgba(94,136,191,0.1); }
.si { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

.sb {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 52px;
}
.slogo-link { display: inline-block; }
.footer-logo { height: 36px; width: auto; opacity: 0.85; }
.stag { font-size: 0.84rem; color: rgba(255,255,255,0.22); max-width: 360px; text-align: right; line-height: 1.65; }

.sgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px; margin-bottom: 56px; }
.scol h4 {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.26);
  margin-bottom: 18px;
}
.scol ul { list-style: none; padding: 0; }
.scol li { margin-bottom: 10px; }
.scol a { font-size: 0.87rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.scol a:hover { color: #fff; }
.scol a.ft { color: #96B9D9; font-weight: 600; }
.scol a.ft:hover { color: #C9DFF2; }

.sbot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.scopy { font-size: 0.78rem; color: rgba(255,255,255,0.18); }
.ssoc { display: flex; gap: 10px; }
.sbtn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.32);
  transition: all 0.2s;
}
.sbtn:hover { background: #5e88bf; border-color: #5e88bf; color: #fff; }

/* =============================================================
   INNER PAGE / COMPONENT OUTPUT
   ============================================================= */
.site-main { padding: 140px 0 80px; min-height: 60vh; }
.site-main h1,
.site-main h2 { font-family: 'Plus Jakarta Sans', sans-serif; color: #e8eaf0; }

/* =============================================================
   PAGE STRUCTURE STACKING
   ============================================================= */
.car-section, .svc-section, .prod-section, .ct-section, .sf { position: relative; z-index: 1; }

/* =============================================================
   REPLAY BUTTON (dev convenience — remove before launch)
   ============================================================= */
.rbtn {
  position: fixed; bottom: 24px; left: 24px; z-index: 998;
  padding: 8px 18px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(61,84,115,0.85); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(150,185,217,0.22); border-radius: 999px;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.rbtn:hover { background: rgba(61,84,115,1); color: #fff; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ct-inner { grid-template-columns: 1fr; gap: 48px; }
  .sgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pill-nav { top: 16px; padding: 8px 8px 8px 16px; }
  .nav-links { display: none; }
  .car-slide { flex-direction: column; }
  .slide-txt { width: 100%; padding: 40px 32px 28px; }
  .slide-vis { flex: 1; min-height: 200px; }
  .svc-grid { grid-template-columns: 1fr; }
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .sb { flex-direction: column; gap: 20px; }
  .stag { text-align: left; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sgrid { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2.4rem; }
}
/* =============================================================
   PRODUCTS PAGE — Tabbed catalog
   ============================================================= */
.products-page { padding: 48px 0px 80px; }

.prod-ph { max-width: 960px; margin: 0 auto 48px; }
.prod-ph-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #14a3a9; margin-bottom: 12px;
}
.prod-ph-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: normal;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.prod-ph-title em { font-style: italic; color: #96B9D9; }
.prod-ph-sub {
  font-size: 15px; color: #8a8fa8; line-height: 1.6; max-width: 580px;
}

.tab-wrap { max-width: 960px; margin: 0 auto; }

.tab-nav {
  display: flex; gap: 2px;
  border-bottom: 1px solid rgba(94,136,191,0.15);
  margin-bottom: 40px;
  overflow-x: auto; scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #8a8fa8; background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 20px 14px; cursor: pointer; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s; margin-bottom: -1px;
}
.tab-btn:hover { color: #96B9D9; }
.tab-btn.active { color: #14a3a9; border-bottom-color: #14a3a9; }
.tab-count {
  display: inline-block; background: #3D5473; color: #C9DFF2;
  font-size: 10px; padding: 1px 6px; border-radius: 10px;
  margin-left: 6px; vertical-align: middle;
}

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

.bundle-banner {
  background: linear-gradient(135deg, #0a2a2b 0%, #0d1a2e 60%, #1a1232 100%);
  border: 1px solid rgba(13,115,119,0.4);
  border-radius: 12px; padding: 28px 32px;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 32px;
  position: relative; overflow: hidden;
}
.bundle-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(13,115,119,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bundle-tag {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #14a3a9; background: rgba(13,115,119,0.12);
  border: 1px solid rgba(13,115,119,0.3);
  padding: 4px 10px; border-radius: 3px;
  display: inline-block; margin-bottom: 8px;
}
.bundle-title { font-size: 20px; font-weight: normal; margin-bottom: 6px; letter-spacing: -0.01em; }
.bundle-desc { font-size: 13px; color: #8a8fa8; line-height: 1.5; }
.bundle-desc strong { color: #C9DFF2; }
.bundle-price-col { flex-shrink: 0; text-align: center; min-width: 130px; }
.bundle-was { font-size: 12px; color: #5a5f78; text-decoration: line-through; margin-bottom: 2px; }
.bundle-price { font-size: 32px; font-weight: bold; color: #14a3a9; line-height: 1; margin-bottom: 4px; }
.bundle-save { font-size: 11px; color: #96B9D9; margin-bottom: 16px; }

.prod-section-label {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #5a5f78; margin-bottom: 16px;
}
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.pcard {
  background: #12121f; border: 1px solid rgba(94,136,191,0.15);
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.25s, transform 0.2s;
  position: relative; overflow: hidden;
}
.pcard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #0D7377, #3D5473);
  opacity: 0; transition: opacity 0.25s;
}
.pcard:hover { border-color: rgba(94,136,191,0.35); transform: translateY(-2px); }
.pcard:hover::after { opacity: 1; }
.pcard-type {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #5a5f78;
}
.pcard-title { font-size: 16px; line-height: 1.3; font-weight: normal; letter-spacing: -0.01em; }
.pcard-desc { font-size: 13px; color: #8a8fa8; line-height: 1.55; flex: 1; }
.pcard-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px; padding-top: 14px;
  border-top: 1px solid rgba(94,136,191,0.15);
}
.pcard-price { font-size: 20px; font-weight: 600; }
.pcard-badge {
  display: inline-block; align-self: flex-start;
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: #723847;
  padding: 5px 10px; border-radius: 4px; margin-bottom: 4px;
}

.payhip-buy-btn {
  display: inline-block; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
  background: #0D7377; color: #fff; border: none;
}
.payhip-buy-btn:hover { background: #14a3a9; }

.cs-panel {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 64px 24px; text-align: center;
  border: 1px dashed rgba(94,136,191,0.15); border-radius: 12px; gap: 12px;
}
.cs-icon { width: 40px; height: 40px; opacity: 0.2; margin-bottom: 8px; }
.cs-label {
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #0D7377;
}
.cs-title { font-size: 20px; color: #8a8fa8; font-weight: normal; }
.cs-sub { font-size: 13px; color: #5a5f78; max-width: 420px; line-height: 1.6; }

@media (max-width: 640px) {
  .bundle-banner { flex-direction: column; gap: 20px; }
  .bundle-price-col { width: 100%; text-align: left; }
  .pcard-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =============================================================
   INNER PAGE — Bootstrap grid reset + component full width
   ============================================================= */

/* Kill Bootstrap column constraints */
.site-main .row { display: block; margin: 0; }
.site-main [class*="col-"],
.site-main .col { 
  width: 100% !important; 
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}

/* Joomla article wrappers — full width */
.site-main .com-content-article,
.site-main .item-page,
.site-main .blog,
.site-main .categories-list {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide Joomla chrome */
.site-main .page-header,
.site-main .article-info,
.site-main .article-header,
.site-main .com-content-article__header { display: none; }

/* Fix heading colors — override the dark color set earlier */
.site-main h1,
.site-main h2 { 
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #e8eaf0; 
}

/* Products page padding adjustment */
.products-page { padding-top: 24px; }

/* Kill Bootstrap flexbox grid on inner pages */
.site-main .row {
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.site-main [class*="col-"],
.site-main .col {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =============================================================
   SERVICES PAGE — Hero + Accordion
   ============================================================= */

.services-page { padding: 48px 0 80px; }

/* Hero */
.svc-hero { max-width: 760px; margin: 0 auto 56px; }
.svc-hero-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #14a3a9; margin-bottom: 16px;
}
.svc-hero-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: normal;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.svc-hero-title em { font-style: italic; color: #96B9D9; }
.svc-hero-sub {
  font-size: 15px; color: #8a8fa8; line-height: 1.7;
  max-width: 600px; margin-bottom: 32px;
}
.svc-hero-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #0D7377, transparent);
}

/* Accordion */
.svc-accordion { max-width: 960px; margin: 0 auto; }

.svc-item {
  border-top: 1px solid rgba(94,136,191,0.15);
  transition: background 0.2s;
}
.svc-item:last-child { border-bottom: 1px solid rgba(94,136,191,0.15); }
.svc-item.open { background: rgba(13,115,119,0.04); }

.svc-trigger {
  cursor: pointer;
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; gap: 24px; color: #e8eaf0;
  text-align: left;
}
.svc-trigger:hover .svc-name { color: #14a3a9; }

.svc-trigger-left {
  display: flex; align-items: center; gap: 20px;
}
.svc-num {
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: #3D5473; min-width: 24px;
}
.svc-item.open .svc-num { color: #0D7377; }
.svc-name {
  font-size: clamp(18px, 2.5vw, 24px); font-weight: normal;
  letter-spacing: -0.01em; transition: color 0.2s;
  font-family: 'Playfair Display', serif;
}
.svc-item.open .svc-name { color: #14a3a9; }

.svc-trigger-right {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.svc-tag {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #5a5f78;
}
.svc-chevron {
  transition: transform 0.3s ease; color: #3D5473; flex-shrink: 0;
}
.svc-item.open .svc-chevron { transform: rotate(180deg); color: #0D7377; }

/* Panel */
.svc-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-item.open .svc-panel { max-height: 600px; }

.svc-panel-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 48px; padding: 0 0 40px 44px;
}
.svc-panel-body p {
  font-size: 14px; color: #8a8fa8; line-height: 1.75;
  margin-bottom: 16px;
}
.svc-panel-body p:last-of-type { margin-bottom: 24px; }

/* Deliverables */
.svc-deliverables { margin-top: 8px; }
.svc-del-label {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #5a5f78; margin-bottom: 12px;
}
.svc-del-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.svc-del-item {
  font-size: 12px; color: #96B9D9;
  padding: 6px 10px;
  background: rgba(94,136,191,0.06);
  border: 1px solid rgba(94,136,191,0.12);
  border-radius: 4px;
}

/* Aside */
.svc-panel-aside {
  border-left: 1px solid rgba(94,136,191,0.12);
  padding-left: 32px;
}
.svc-aside-label {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #5a5f78; margin-bottom: 14px;
}
.svc-aside-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-aside-list li {
  font-size: 13px; color: #8a8fa8; line-height: 1.4;
  padding-left: 14px; position: relative;
}
.svc-aside-list li::before {
  content: '—'; position: absolute; left: 0;
  color: #0D7377; font-size: 11px;
}

/* Page CTA */
.svc-cta {
  max-width: 960px; margin: 64px auto 0;
  background: linear-gradient(135deg, #0a2a2b 0%, #0d1a2e 100%);
  border: 1px solid rgba(13,115,119,0.3);
  border-radius: 12px; padding: 48px;
}
.svc-cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.svc-cta-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #0D7377; margin-bottom: 10px;
}
.svc-cta-heading {
  font-size: 22px; font-weight: normal;
  font-family: 'Playfair Display', serif;
  color: #e8eaf0; margin-bottom: 8px; letter-spacing: -0.01em;
}
.svc-cta-sub { font-size: 14px; color: #8a8fa8; }
.svc-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0D7377; color: #fff;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 6px; white-space: nowrap;
  text-decoration: none; transition: background 0.2s;
  flex-shrink: 0;
}
.svc-cta-btn:hover { background: #14a3a9; }

/* Responsive */
@media (max-width: 768px) {
  .svc-panel-inner { grid-template-columns: 1fr; gap: 28px; }
  .svc-panel-aside { border-left: none; padding-left: 0; border-top: 1px solid rgba(94,136,191,0.12); padding-top: 24px; }
  .svc-panel-inner { padding-left: 0; }
  .svc-trigger-right .svc-tag { display: none; }
  .svc-cta-inner { flex-direction: column; align-items: flex-start; }
  .svc-del-grid { grid-template-columns: 1fr; }
}
/* ── About Page ─────────────────────────────── */
.cc-about-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.cc-about-hero {
  border-left: 4px solid #5e88bf;
  padding-left: 20px;
  margin-bottom: 40px;
}

.cc-about-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #C9DFF2;
  margin: 0;
  letter-spacing: 0.01em;
}

.cc-about-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #96B9D9;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.cc-about-body p:last-child {
  margin-bottom: 0;
}
/* ── Portfolio Page ─────────────────────────────── */
.cc-portfolio-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.cc-port-section {
  margin-bottom: 80px;
}

.cc-port-section-header {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid #3D5473;
}

.cc-port-section-header.ld {
  border-bottom-color: #5e88bf;
}

.cc-port-section-header.creative {
  border-bottom-color: #723847;
}

.cc-port-section-header h1,
.cc-port-section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #C9DFF2;
  margin: 0 0 8px;
}

.cc-port-section-header.creative h2 {
  color: #C9DFF2;
}

.cc-port-section-header p {
  font-size: 0.95rem;
  color: #96B9D9;
  margin: 0;
}

/* Grid */
.cc-port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Cards */
.cc-port-card {
  background: #1a2236;
  border: 1px solid #3D5473;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cc-port-card:hover {
  transform: translateY(-3px);
  border-color: #5e88bf;
}

.cc-port-card.creative:hover {
  border-color: #723847;
}

.cc-port-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f1520;
}

.cc-port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-port-info {
  padding: 20px;
}

.cc-port-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #C9DFF2;
  margin: 0 0 8px;
}

.cc-port-info p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #96B9D9;
  margin: 0 0 16px;
}

/* Buttons */
.cc-port-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-btn-preview,
.cc-btn-demo,
.cc-btn-creative {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.03em;
}

.cc-btn-preview {
  background: transparent;
  border: 1px solid #5e88bf;
  color: #5e88bf;
}

.cc-btn-demo {
  background: #5e88bf;
  border: 1px solid #5e88bf;
  color: #fff;
}

.cc-btn-creative {
  background: #723847;
  border: 1px solid #723847;
  color: #fff;
}

.cc-btn-preview:hover,
.cc-btn-demo:hover,
.cc-btn-creative:hover {
  opacity: 0.8;
}
/* ── Blog List ─────────────────────────────── */
.com-content-category-blog .portfolio-grid {
  max-width: 860px;
  margin: 40px auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.com-content-category-blog .portfolio-item {
  padding: 28px 0;
  border-bottom: 1px solid #3D5473;
}

/* Hide image placeholder */
.com-content-category-blog .portfolio-item-image {
  display: none;
}

/* Hide View Project overlay link */
.com-content-category-blog .portfolio-item-overlay {
  display: none;
}

/* Post body */
.com-content-category-blog .portfolio-item-body {
  padding: 0;
}

/* Category label */
.com-content-category-blog .portfolio-item [class*="category"],
.com-content-category-blog .portfolio-item .article-info-term {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5e88bf;
  display: block;
  margin-bottom: 8px;
}

/* Post title */
.com-content-category-blog .portfolio-item h2 a,
.com-content-category-blog .portfolio-item h3 a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #C9DFF2;
  text-decoration: none;
  line-height: 1.4;
}

.com-content-category-blog .portfolio-item h2 a:hover,
.com-content-category-blog .portfolio-item h3 a:hover {
  color: #5e88bf;
}

/* Excerpt */
.com-content-category-blog .portfolio-item p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #96B9D9;
  margin: 10px 0 0;
}

/* Date / meta */
.com-content-category-blog .portfolio-item time,
.com-content-category-blog .portfolio-item .article-info dd {
  font-size: 0.8rem;
  color: #3D5473;
}

.com-content-category-blog .portfolio-item .article-info dt {
  display: none;
}
/* ── Blog Read More ─────────────────────────────── */
.com-content-category-blog .portfolio-item-overlay {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5e88bf;
  text-decoration: none;
  text-transform: uppercase;
}

.com-content-category-blog .portfolio-item-overlay:hover {
  color: #96B9D9;
}
/* ── RSForm Override ─────────────────────────────── */

/* Remove individual block cards */
.ct-form-wrap .rsform-block {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: 20px;
}

/* Remove outer form card */
.ct-form-wrap .rsform {
  background: none;
  border: none;
  padding: 0;
}

/* Hide Contact h2 title */
.ct-form-wrap h2 {
  display: none;
}

/* Labels */
.ct-form-wrap .formControlLabel {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  width: auto;
  text-align: left;
}

/* Inputs */
.ct-form-wrap .rsform-input-box,
.ct-form-wrap input[type="text"],
.ct-form-wrap input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.ct-form-wrap .rsform-input-box:focus,
.ct-form-wrap input[type="text"]:focus,
.ct-form-wrap input[type="email"]:focus {
  border-color: #96B9D9;
}

/* Hide field descriptions */
.ct-form-wrap .formDescription {
  display: none;
}

/* Checkboxes */
.ct-form-wrap .rsform-type-checkboxgroup .formBody {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-form-wrap .rsform-type-checkboxgroup label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  cursor: pointer;
}

.ct-form-wrap .rsform-type-checkboxgroup input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #5e88bf;
  flex-shrink: 0;
}

/* Submit button */
.ct-form-wrap input[type="submit"],
.ct-form-wrap .rsform-submit-button {
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: #723847;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
}

.ct-form-wrap input[type="submit"]:hover,
.ct-form-wrap .rsform-submit-button:hover {
  background: #8a4558;
  transform: translateY(-2px);
}

/* Remove formHorizontal layout behavior */
.ct-form-wrap .formHorizontal .formRow {
  display: block;
}

.ct-form-wrap .formHorizontal .formControlLabel {
  width: auto;
  float: none;
}

.ct-form-wrap .formHorizontal .formControls {
  margin-left: 0;
}
/* ── Article body typography ─────────────────────────────── */
.article-body p {
  margin-bottom: 1.4em;
  line-height: 1.8;
  color: #96B9D9;
}
/* ============================================
   Custom additions — May 2026
   ============================================ */

.prod-notice {
  background: rgba(94, 136, 191, 0.08);
  border-left: 3px solid #5e88bf;
  padding: 14px 20px;
  margin: 0 0 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #C9DFF2;
  line-height: 1.5;
}

.prod-notice strong {
  color: #fff;
}