/* =========================================================
   ContractorsLeadPro — Main Stylesheet
   Design tokens ported 1:1 from the original Lovable build
   ========================================================= */

:root{
  --radius: 0.75rem;

  --ink: #0a0a0a;
  --orange: #ff5b1f;
  --orange-soft: #ff8a4c;

  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --primary: #ff5b1f;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --muted: #f5f5f5;
  --muted-foreground: #6b6b6b;
  --accent: #fff1e8;
  --accent-foreground: #0a0a0a;
  --border: #ececec;
  --input: #ececec;
  --ring: #ff5b1f;

  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --foreground-rgb: 10,10,10;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body.clp-body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
svg{ width:18px; height:18px; flex-shrink:0; }
.clp-icon{ width:18px; height:18px; display:inline-block; vertical-align:middle; flex-shrink:0; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  letter-spacing:-0.02em;
  line-height:1.02;
  margin:0;
}
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
.clp-container{
  margin-left:auto; margin-right:auto; max-width:1280px; padding-left:24px; padding-right:24px;
}
.clp-container-xl{ margin-left:auto; margin-right:auto; max-width:1152px; padding-left:24px; padding-right:24px; }
.clp-italic-primary{ color:var(--primary); font-style:italic; }
.clp-eyebrow{
  display:flex; align-items:center; gap:12px; margin-bottom:20px;
}
.clp-eyebrow .clp-line{ height:1px; width:48px; background:var(--primary); display:inline-block; }
.clp-eyebrow span{
  font-size:11px; font-weight:600; letter-spacing:.25em; text-transform:uppercase; color:var(--primary);
}

/* ---------- Keyframes ---------- */
@keyframes clp-marquee{ 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
@keyframes clp-float-y{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px);} }
@keyframes clp-spin-slow{ to{transform:rotate(360deg);} }
@keyframes clp-pulse-ring{ 0%{box-shadow:0 0 0 0 rgba(255,91,31,.5);} 100%{box-shadow:0 0 0 24px rgba(255,91,31,0);} }
@keyframes clp-ping{ 75%,100%{ transform:scale(2); opacity:0; } }
@keyframes clp-fade-up{ from{opacity:0; transform:translateY(30px);} to{opacity:1; transform:translateY(0);} }

.clp-animate-in{ animation: clp-fade-up .6s ease both; }

/* Scroll-reveal: elements start hidden, JS (main.js) adds .clp-revealed via IntersectionObserver */
.clp-reveal{
	opacity:0;
	transform:translateY(28px);
	transition:opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1);
}
.clp-reveal.clp-revealed{
	opacity:1;
	transform:translateY(0);
}
.clp-reveal-stagger > *{
	opacity:0;
	transform:translateY(28px);
	transition:opacity .6s cubic-bezier(0.22,1,0.36,1), transform .6s cubic-bezier(0.22,1,0.36,1);
}
.clp-reveal-stagger.clp-revealed > *{
	opacity:1;
	transform:translateY(0);
}
.clp-reveal-stagger.clp-revealed > *:nth-child(1){ transition-delay:0s; }
.clp-reveal-stagger.clp-revealed > *:nth-child(2){ transition-delay:.08s; }
.clp-reveal-stagger.clp-revealed > *:nth-child(3){ transition-delay:.16s; }
.clp-reveal-stagger.clp-revealed > *:nth-child(4){ transition-delay:.24s; }
.clp-reveal-stagger.clp-revealed > *:nth-child(5){ transition-delay:.32s; }
.clp-reveal-stagger.clp-revealed > *:nth-child(6){ transition-delay:.4s; }
/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
	.clp-reveal, .clp-reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
	.clp-animate-in{ animation:none; }
}

/* ---------- Top utility bar ---------- */
.clp-topbar{ display:none; background:var(--foreground); color:rgba(255,255,255,.7); font-size:12px; }
@media (min-width:768px){ .clp-topbar{ display:block; } }
.clp-topbar-inner{ margin:0 auto; max-width:1280px; padding:0 24px; height:36px; display:flex; align-items:center; justify-content:space-between; }
.clp-topbar-left{ display:flex; align-items:center; gap:24px; }
.clp-topbar a{ display:inline-flex; align-items:center; gap:6px; transition:color .2s; }
.clp-topbar a:hover{ color:var(--primary); }
.clp-topbar svg{ width:12px; height:12px; color:var(--primary); }
.clp-dot-wrap{ position:relative; display:inline-flex; height:6px; width:6px; }
.clp-dot-ping{ position:absolute; display:inline-flex; height:100%; width:100%; border-radius:50%; background:var(--primary); opacity:.75; animation:clp-ping 1.6s cubic-bezier(0,0,0.2,1) infinite; }
.clp-dot{ position:relative; display:inline-flex; border-radius:50%; height:6px; width:6px; background:var(--primary); }
.clp-topbar-right{ display:flex; align-items:center; gap:8px; }

/* ---------- Header ---------- */
.clp-header{ position:sticky; top:0; inset-inline:0; z-index:50; padding:12px 0; }
.clp-header-inner{ margin:0 auto; max-width:1280px; padding:0 20px; }
.clp-header-bar{
  display:flex; align-items:center; justify-content:space-between;
  border-radius:16px; padding:12px 20px;
  background:var(--foreground); color:var(--background);
  box-shadow:0 20px 40px -10px rgba(0,0,0,.15);
  transition:all .4s;
}
.clp-logo{ display:flex; align-items:center; gap:10px; }
.clp-logo-badge{
  position:relative; display:grid; place-items:center; width:36px; height:36px; border-radius:12px;
  background:linear-gradient(135deg,var(--orange),var(--orange-soft)); overflow:hidden; flex-shrink:0;
}
.clp-logo-badge span{ position:relative; font-family:var(--font-display); font-weight:700; color:#fff; font-size:18px; }
.clp-logo-text{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; font-size:15px; white-space:nowrap; }
.clp-logo-text .accent{ color:var(--primary); }
.clp-nav{ display:none; align-items:center; gap:4px; }
@media (min-width:1024px){ .clp-nav{ display:flex; } }
.clp-nav a{
  position:relative; padding:8px 14px; font-size:14px; font-weight:500; color:rgba(255,255,255,.7);
  transition:color .2s;
}
.clp-nav a:hover{ color:#fff; }
.clp-header-actions{ display:flex; align-items:center; gap:8px; }
.clp-btn-start{
  display:none; align-items:center; gap:6px; background:var(--primary); color:#fff; font-weight:600; font-size:14px;
  padding:10px 16px; border-radius:12px; transition:all .3s;
}
@media (min-width:768px){ .clp-btn-start{ display:inline-flex; } }
.clp-btn-start:hover{ background:var(--orange-soft); gap:10px; }
.clp-menu-toggle{ display:inline-flex; background:none; border:none; color:#fff; padding:8px; margin-right:-4px; }
.clp-menu-toggle .clp-icon-menu{ width:22px; height:22px; display:block; }
.clp-menu-toggle .clp-icon-close{ width:22px; height:22px; display:none; }
.clp-menu-toggle[aria-expanded="true"] .clp-icon-menu{ display:none; }
.clp-menu-toggle[aria-expanded="true"] .clp-icon-close{ display:block; }
@media (min-width:1024px){ .clp-menu-toggle{ display:none; } }
.clp-mobile-menu{
  display:none; margin-top:8px; border-radius:16px; background:var(--foreground); color:var(--background); padding:16px;
}
.clp-mobile-menu.is-open{ display:block; }
.clp-mobile-menu a{ display:block; padding:10px 12px; border-radius:8px; font-size:14px; font-weight:500; }
.clp-mobile-menu a:hover{ background:rgba(255,255,255,.1); }
.clp-mobile-menu .clp-btn-start{ display:flex; justify-content:center; margin-top:8px; width:100%; }

/* ---------- Hero ---------- */
.clp-hero{ position:relative; padding:144px 0 96px; overflow:hidden; }
@media (min-width:768px){ .clp-hero{ padding:176px 0 128px; } }
.clp-grid-bg{
  background-image:linear-gradient(rgba(10,10,10,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(10,10,10,.06) 1px, transparent 1px);
  background-size:56px 56px;
}
.clp-orb{ position:absolute; border-radius:50%; pointer-events:none; filter:blur(40px); }
.clp-hero-orb-1{ top:128px; right:-80px; width:384px; height:384px; background:radial-gradient(circle at 30% 30%,#ff5b1f 0,#ff8a4c 40%,transparent 70%); opacity:.35; animation:clp-float-y 10s ease-in-out infinite; }
.clp-hero-orb-2{ bottom:40px; left:-128px; width:448px; height:448px; background:radial-gradient(circle,#0a0a0a 0,transparent 70%); opacity:.1; filter:blur(60px); }
.clp-hero-inner{ position:relative; }
.clp-badge-pill{
  display:inline-flex; align-items:center; gap:8px; border-radius:999px; border:1px solid rgba(10,10,10,.15);
  background:rgba(255,255,255,.6); backdrop-filter:blur(6px); padding:6px 16px; margin-bottom:32px;
}
.clp-badge-pill span.txt{ font-size:12px; font-weight:500; letter-spacing:.02em; }
.clp-badge-dot{ position:relative; display:inline-flex; height:8px; width:8px; }
.clp-hero-grid{ display:grid; grid-template-columns:1fr; gap:48px; align-items:end; }
@media (min-width:1024px){ .clp-hero-grid{ grid-template-columns:repeat(12,1fr); } }
.clp-hero-title-col{ }
@media (min-width:1024px){ .clp-hero-title-col{ grid-column:span 8; } }
.clp-hero-title{ font-weight:700; letter-spacing:-0.02em; font-size:clamp(48px,8.5vw,128px); line-height:.88; }
.clp-hero-title span.block{ display:block; }
.clp-hero-title .underline-word{ position:relative; display:inline-block; }
.clp-hero-title .underline-word svg{ position:absolute; bottom:-8px; left:0; width:100%; height:14px; overflow:visible; }
.clp-hero-title .underline-word svg path{
	stroke-dasharray: 320;
	stroke-dashoffset: 320;
	transition: stroke-dashoffset 1.1s cubic-bezier(0.22,1,0.36,1) 0.5s;
}
.clp-hero-title.clp-revealed .underline-word svg path{
	stroke-dashoffset: 0;
}
.clp-primary-text{ color:var(--primary); }
.clp-hero-side{ }
@media (min-width:1024px){ .clp-hero-side{ grid-column:span 4; } }
.clp-hero-side p.sub{ font-size:16px; color:var(--muted-foreground); line-height:1.6; max-width:28rem; margin-bottom:24px; }
@media (min-width:768px){ .clp-hero-side p.sub{ font-size:18px; } }
.clp-hero-cta-row{ display:flex; flex-wrap:wrap; align-items:center; gap:16px; margin-bottom:24px; }
.clp-btn-dark{
  display:inline-flex; align-items:center; gap:8px; background:var(--foreground); color:var(--background);
  font-weight:600; padding:14px 24px; border-radius:999px; transition:all .25s; border:none;
}
.clp-btn-dark:hover{ background:var(--primary); }
.clp-link-underline{ font-size:14px; font-weight:500; text-decoration:underline; text-decoration-color:var(--primary); text-decoration-thickness:2px; text-underline-offset:4px; }
.clp-stars{ display:flex; }
.clp-stars svg{ width:16px; height:16px; fill:var(--primary); color:var(--primary); }
.clp-hero-rating{ display:flex; align-items:center; gap:12px; padding-top:8px; }
.clp-hero-rating .label{ font-size:12px; color:var(--muted-foreground); }

.clp-stat-strip{
  margin-top:80px; display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:rgba(10,10,10,.1);
  border-radius:16px; overflow:hidden; border:1px solid rgba(10,10,10,.1);
}
@media (min-width:768px){ .clp-stat-strip{ grid-template-columns:repeat(4,1fr); margin-top:112px; } }
.clp-stat{ background:var(--background); padding:24px; transition:background .5s, color .5s; }
@media (min-width:768px){ .clp-stat{ padding:32px; } }
.clp-stat:hover{ background:var(--foreground); color:var(--background); }
.clp-stat .num{ font-family:var(--font-display); font-size:36px; font-weight:700; margin-bottom:4px; transition:color .2s; }
@media (min-width:768px){ .clp-stat .num{ font-size:48px; } }
.clp-stat:hover .num{ color:var(--primary); }
.clp-stat .lbl{ font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--muted-foreground); }
.clp-stat:hover .lbl{ color:rgba(255,255,255,.6); }

/* ---------- Marquee ---------- */
.clp-marquee-section{ background:var(--foreground); color:var(--background); padding:24px 0; border-top:1px solid rgba(255,255,255,.05); border-bottom:1px solid rgba(255,255,255,.05); overflow:hidden; }
.clp-marquee-track{ display:flex; white-space:nowrap; animation:clp-marquee 40s linear infinite; width:max-content; }
.clp-marquee-group{ display:flex; align-items:center; gap:48px; padding:0 24px; flex-shrink:0; }
.clp-marquee-group span.word{ display:flex; align-items:center; gap:48px; font-family:var(--font-display); font-size:24px; font-weight:500; }
@media (min-width:768px){ .clp-marquee-group span.word{ font-size:30px; } }
.clp-marquee-group .dot{ width:10px; height:10px; border-radius:50%; background:var(--primary); flex-shrink:0; }

/* ---------- Services ---------- */
.clp-section{ position:relative; padding:112px 0; }
@media (min-width:768px){ .clp-section{ padding:144px 0; } }
.clp-services-head{ display:flex; flex-direction:column; gap:24px; justify-content:space-between; margin-bottom:64px; }
@media (min-width:768px){ .clp-services-head{ flex-direction:row; align-items:flex-end; } }
.clp-h2{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.02em; font-size:48px; line-height:.95; }
@media (min-width:768px){ .clp-h2{ font-size:72px; } }
.clp-h2.size-lg{ font-size:48px; }
@media (min-width:768px){ .clp-h2.size-lg{ font-size:60px; } }
.clp-muted{ color:var(--muted-foreground); }
.clp-services-head .desc{ max-width:24rem; color:var(--muted-foreground); }

.clp-services-grid{
  display:grid; grid-template-columns:1fr; gap:1px; background:var(--border); border-radius:24px; overflow:hidden; border:1px solid var(--border);
}
@media (min-width:768px){ .clp-services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px){ .clp-services-grid{ grid-template-columns:repeat(3,1fr); } }
.clp-service-card{
  position:relative; background:var(--background); padding:32px; min-height:280px; display:flex; flex-direction:column;
  justify-content:space-between; transition:background .5s,color .5s; cursor:default;
}
@media (min-width:768px){ .clp-service-card{ padding:40px; } }
.clp-service-card:hover{ background:var(--foreground); color:var(--background); }
.clp-service-icon{
  display:inline-grid; place-items:center; width:48px; height:48px; border-radius:12px; background:var(--accent);
  color:var(--primary); margin-bottom:24px; transition:background .2s,color .2s;
}
.clp-service-card:hover .clp-service-icon{ background:var(--primary); color:#fff; }
.clp-service-icon svg{ width:20px; height:20px; }
.clp-service-card h3{ font-size:24px; font-weight:600; margin-bottom:12px; }
.clp-service-card p{ font-size:14px; line-height:1.6; color:var(--muted-foreground); transition:color .2s; }
.clp-service-card:hover p{ color:rgba(255,255,255,.7); }
.clp-service-explore{ margin-top:24px; font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; opacity:0; transition:opacity .2s; display:flex; align-items:center; gap:8px; color:var(--primary); }
.clp-service-card:hover .clp-service-explore{ opacity:1; }

/* ---------- Featured client ---------- */
.clp-featured{ position:relative; padding:112px 0; background:var(--foreground); color:var(--background); overflow:hidden; }
@media (min-width:768px){ .clp-featured{ padding:144px 0; } }
.clp-featured-grid-bg{
  position:absolute; inset:0; opacity:.2; pointer-events:none;
  background-image:linear-gradient(rgba(255,91,31,.4) 1px,transparent 1px), linear-gradient(90deg,rgba(255,91,31,.4) 1px,transparent 1px);
  background-size:60px 60px;
  -webkit-mask-image:radial-gradient(ellipse at center, black 30%, transparent 70%);
  mask-image:radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.clp-featured-orb{ position:absolute; top:33%; right:0; width:480px; height:480px; border-radius:50%; pointer-events:none; background:radial-gradient(circle,#ff5b1f 0,transparent 65%); filter:blur(60px); opacity:.35; animation:clp-float-y 9s ease-in-out infinite; }
.clp-featured-body{ position:relative; display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
@media (min-width:1024px){ .clp-featured-body{ grid-template-columns:repeat(12,1fr); gap:64px; } }
.clp-featured-quote-col{ }
@media (min-width:1024px){ .clp-featured-quote-col{ grid-column:span 7; } }
.clp-quote-icon{ width:48px; height:48px; color:var(--primary); margin-bottom:24px; margin-left:-4px; }
.clp-featured-quote{ font-family:var(--font-display); font-size:24px; line-height:1.25; letter-spacing:-0.02em; margin-bottom:32px; }
@media (min-width:768px){ .clp-featured-quote{ font-size:30px; } }
@media (min-width:1024px){ .clp-featured-quote{ font-size:34px; } }
.clp-featured-person{ display:flex; align-items:center; gap:20px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); }
.clp-featured-person img{ position:relative; width:64px; height:64px; border-radius:50%; object-fit:cover; box-shadow:0 0 0 2px rgba(255,91,31,.4); }
.clp-featured-person .name{ font-weight:600; font-size:18px; }
.clp-featured-person .role{ font-size:14px; color:rgba(255,255,255,.6); }
.clp-featured-img-col{ position:relative; }
@media (min-width:1024px){ .clp-featured-img-col{ grid-column:span 5; } }
.clp-featured-img-frame{ position:relative; border-radius:24px; overflow:hidden; padding:4px; background:linear-gradient(135deg, rgba(255,91,31,.2), transparent); }
.clp-featured-img-inner{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/5; background:rgba(255,255,255,.05); }
.clp-featured-img-inner img{ width:100%; height:100%; object-fit:cover; }
.clp-featured-img-overlay{ position:absolute; inset:0; background:linear-gradient(to top, var(--foreground), rgba(10,10,10,.4), transparent); }
.clp-featured-img-caption{ position:absolute; bottom:0; left:0; right:0; padding:24px; }
.clp-tag-pill{ display:inline-flex; align-items:center; gap:6px; background:var(--primary); color:#fff; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:4px 10px; border-radius:999px; margin-bottom:12px; }
.clp-featured-img-caption h3{ font-size:24px; font-weight:700; margin-bottom:4px; }
.clp-featured-img-caption p{ font-size:14px; color:rgba(255,255,255,.7); }
.clp-floater{ position:absolute; background:var(--background); color:var(--foreground); border-radius:16px; padding:16px; box-shadow:0 20px 40px rgba(0,0,0,.25); display:none; }
@media (min-width:768px){ .clp-floater{ display:block; } }
.clp-floater.f1{ bottom:-24px; left:-24px; animation:clp-float-y 4s ease-in-out infinite; }
.clp-floater.f2{ top:-24px; right:-24px; background:var(--primary); color:#fff; animation:clp-float-y 5s ease-in-out infinite reverse; }
.clp-floater .lbl{ font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--muted-foreground); margin-bottom:4px; }
.clp-floater.f2 .lbl{ color:rgba(255,255,255,.8); }
.clp-floater .val{ font-family:var(--font-display); font-size:30px; font-weight:700; }
.clp-floater .val .accent{ color:var(--primary); }

/* ---------- Case studies ---------- */
.clp-cases-head{ display:flex; flex-direction:column; gap:24px; justify-content:space-between; margin-bottom:56px; }
@media (min-width:768px){ .clp-cases-head{ flex-direction:row; align-items:flex-end; } }
.clp-cases-nav{ display:flex; gap:8px; }
.clp-cases-nav button{ width:48px; height:48px; border-radius:50%; border:1px solid rgba(10,10,10,.15); display:grid; place-items:center; background:transparent; transition:all .2s; }
.clp-cases-nav button:hover{ background:var(--foreground); color:var(--background); border-color:var(--foreground); }
.clp-cases-nav svg{ width:16px; height:16px; }
.clp-cases-scroller{ display:flex; gap:24px; overflow-x:auto; padding:0 24px 32px; scroll-snap-type:x mandatory; scrollbar-width:none; }
.clp-cases-scroller::-webkit-scrollbar{ display:none; }
.clp-case-card{ position:relative; flex-shrink:0; width:88vw; scroll-snap-align:start; }
@media (min-width:768px){ .clp-case-card{ width:520px; } }
.clp-case-img-wrap{ position:relative; aspect-ratio:4/3; overflow:hidden; border-radius:24px; background:var(--foreground); }
.clp-case-img-wrap img{ width:100%; height:100%; object-fit:cover; opacity:.8; transition:all .7s; }
.clp-case-card:hover .clp-case-img-wrap img{ opacity:1; transform:scale(1.05); }
.clp-case-overlay{ position:absolute; inset:0; background:linear-gradient(to top, var(--foreground), rgba(10,10,10,.3), transparent); }
.clp-case-tag{ position:absolute; top:20px; left:20px; display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.95); color:var(--foreground); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:6px 12px; border-radius:999px; }
.clp-case-arrow{ position:absolute; top:20px; right:20px; display:grid; place-items:center; width:44px; height:44px; border-radius:50%; background:var(--primary); color:#fff; opacity:0; transition:opacity .2s; }
.clp-case-card:hover .clp-case-arrow{ opacity:1; }
.clp-case-body{ position:absolute; bottom:0; inset-inline:0; padding:28px; color:#fff; }
.clp-case-metric-row{ display:flex; align-items:baseline; gap:12px; margin-bottom:12px; }
.clp-case-metric{ font-family:var(--font-display); font-size:48px; font-weight:700; color:var(--primary); }
.clp-case-metric-label{ font-size:12px; text-transform:uppercase; letter-spacing:.05em; color:rgba(255,255,255,.7); }
.clp-case-title{ font-size:24px; font-weight:700; margin-bottom:8px; }
.clp-case-summary{ font-size:14px; color:rgba(255,255,255,.7); line-height:1.6; }
.clp-cases-dots{ margin:0 auto; max-width:1280px; padding:0 24px; margin-top:8px; display:flex; gap:6px; }
.clp-cases-dots .dot{ height:4px; border-radius:999px; width:20px; background:rgba(10,10,10,.15); border:none; transition:all .2s; }
.clp-cases-dots .dot.active{ width:40px; background:var(--primary); }

/* ---------- Process ---------- */
.clp-process-head{ margin-bottom:64px; max-width:48rem; }
.clp-process-rail{ position:relative; }
.clp-process-line{ position:absolute; top:0; bottom:0; left:27px; width:1px; background:var(--border); }
@media (min-width:768px){ .clp-process-line{ left:50%; transform:translateX(-50%); } }
.clp-process-steps{ display:flex; flex-direction:column; gap:48px; }
@media (min-width:768px){ .clp-process-steps{ gap:80px; } }
.clp-process-step{ position:relative; display:grid; grid-template-columns:1fr; gap:32px; align-items:center; }
@media (min-width:768px){ .clp-process-step{ grid-template-columns:1fr 1fr; } }
.clp-process-step.odd .text-col{ order:1; }
@media (min-width:768px){ .clp-process-step.odd .text-col{ order:2; } }
.clp-process-text{ position:relative; padding-left:64px; }
@media (min-width:768px){ .clp-process-text{ padding-left:0; } }
.clp-process-step.even .clp-process-text{ }
@media (min-width:768px){ .clp-process-step.even .clp-process-text{ text-align:right; padding-right:64px; } }
@media (min-width:768px){ .clp-process-step.odd .clp-process-text{ padding-left:64px; } }
.clp-process-num{ position:absolute; top:0; left:0; display:grid; place-items:center; width:56px; height:56px; border-radius:50%; background:var(--foreground); color:var(--background); font-family:var(--font-display); font-size:18px; font-weight:700; }
@media (min-width:768px){
  .clp-process-step.even .clp-process-num{ left:auto; right:-30px; }
  .clp-process-step.odd .clp-process-num{ left:-30px; }
}
.clp-process-text h3{ font-size:30px; font-weight:700; margin-bottom:12px; }
@media (min-width:768px){ .clp-process-text h3{ font-size:36px; } }
.clp-process-text p{ color:var(--muted-foreground); max-width:28rem; }
@media (min-width:768px){ .clp-process-step.even .clp-process-text p{ margin-left:auto; } }
.clp-process-spacer{ display:none; }
@media (min-width:768px){ .clp-process-spacer{ display:block; } }

/* ---------- Reviews ---------- */
.clp-reviews-section{ position:relative; padding:112px 0; background:var(--accent); overflow:hidden; }
@media (min-width:768px){ .clp-reviews-section{ padding:144px 0; } }
.clp-reviews-grid-bg{ position:absolute; inset:0; opacity:.04; pointer-events:none; background-image:linear-gradient(rgba(10,10,10,1) 1px,transparent 1px), linear-gradient(90deg,rgba(10,10,10,1) 1px,transparent 1px); background-size:44px 44px; }
.clp-reviews-body{ position:relative; display:grid; grid-template-columns:1fr; gap:64px; align-items:center; }
@media (min-width:1024px){ .clp-reviews-body{ grid-template-columns:repeat(12,1fr); } }
.clp-reviews-left{ }
@media (min-width:1024px){ .clp-reviews-left{ grid-column:span 4; } }
.clp-rating-row{ display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.clp-rating-row .num{ font-family:var(--font-display); font-size:24px; font-weight:700; }
.clp-reviews-left .note{ font-size:14px; color:var(--muted-foreground); }
.clp-reviews-dots{ margin-top:40px; display:flex; gap:8px; }
.clp-reviews-dots button{ height:6px; border-radius:999px; width:20px; background:rgba(10,10,10,.15); border:none; transition:all .2s; }
.clp-reviews-dots button.active{ width:40px; background:var(--foreground); }
.clp-reviews-right{ position:relative; min-height:420px; }
@media (min-width:1024px){ .clp-reviews-right{ grid-column:span 8; } }
.clp-review-card{
  position:absolute; inset:0; background:var(--background); border-radius:24px; padding:40px; box-shadow:0 30px 60px rgba(10,10,10,.06);
  border:1px solid rgba(10,10,10,.05); opacity:0; transform:translateY(20px) scale(.98); pointer-events:none; transition:all .5s;
}
@media (min-width:768px){ .clp-review-card{ padding:56px; } }
.clp-review-card.active{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; position:relative; }
.clp-review-card .quote-icon{ width:56px; height:56px; color:rgba(255,91,31,.2); margin-bottom:24px; }
.clp-review-text{ font-family:var(--font-display); font-size:24px; line-height:1.35; letter-spacing:-0.02em; margin-bottom:40px; }
@media (min-width:768px){ .clp-review-text{ font-size:28px; } }
.clp-review-person{ display:flex; align-items:center; gap:16px; padding-top:24px; border-top:1px solid rgba(10,10,10,.1); }
.clp-review-person img{ width:56px; height:56px; border-radius:50%; object-fit:cover; box-shadow:0 0 0 2px rgba(255,91,31,.3); }
.clp-review-person .name{ font-weight:600; }
.clp-review-person .role{ font-size:14px; color:var(--muted-foreground); }
.clp-review-person .stars{ margin-left:auto; display:flex; gap:2px; }

/* ---------- Founder ---------- */
.clp-founder-body{ display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
@media (min-width:1024px){ .clp-founder-body{ grid-template-columns:repeat(12,1fr); gap:80px; } }
.clp-founder-img-col{ position:relative; }
@media (min-width:1024px){ .clp-founder-img-col{ grid-column:span 5; } }
.clp-founder-frame{ position:relative; aspect-ratio:1/1; max-width:28rem; margin:0 auto; }
.clp-founder-ring{ position:absolute; inset:0; border-radius:40px; animation:clp-spin-slow 18s linear infinite; }
.clp-founder-ring-inner{ position:absolute; inset:0; border-radius:40px; background:linear-gradient(135deg,var(--orange), transparent, var(--foreground)); padding:2px; }
.clp-founder-ring-mask{ width:100%; height:100%; border-radius:38.4px; background:var(--background); }
.clp-founder-photo-wrap{ position:absolute; inset:12px; border-radius:35.2px; overflow:hidden; background:var(--foreground); }
.clp-founder-photo-wrap img{ width:100%; height:100%; object-fit:cover; }
.clp-founder-photo-overlay{ position:absolute; inset:0; background:linear-gradient(to top, rgba(10,10,10,.7), transparent 60%); }
.clp-founder-caption{ position:absolute; bottom:20px; left:20px; right:20px; display:flex; align-items:center; justify-content:space-between; color:#fff; }
.clp-founder-caption .name{ font-family:var(--font-display); font-size:20px; font-weight:700; }
.clp-founder-caption .role{ font-size:12px; color:rgba(255,255,255,.7); }
.clp-founder-caption svg{ width:24px; height:24px; color:var(--primary); }
.clp-founder-floater{ position:absolute; border-radius:16px; padding:12px 16px; box-shadow:0 20px 40px rgba(0,0,0,.2); }
.clp-founder-floater.f1{ top:-16px; right:-16px; background:var(--background); border:1px solid var(--border); animation:clp-float-y 5s ease-in-out infinite; }
.clp-founder-floater.f2{ bottom:-16px; left:-16px; background:var(--foreground); color:var(--background); animation:clp-float-y 6s ease-in-out infinite reverse; }
.clp-founder-floater .lbl{ font-size:10px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--muted-foreground); margin-bottom:2px; }
.clp-founder-floater.f2 .lbl{ color:rgba(255,255,255,.6); }
.clp-founder-floater .val{ font-family:var(--font-display); font-weight:700; color:var(--primary); }
.clp-founder-floater.f2 .val{ color:var(--background); }
.clp-founder-copy-col{ }
@media (min-width:1024px){ .clp-founder-copy-col{ grid-column:span 7; } }
.clp-founder-copy-col h2{ font-size:48px; font-weight:700; line-height:.95; margin-bottom:32px; }
@media (min-width:768px){ .clp-founder-copy-col h2{ font-size:60px; } }
.clp-founder-text{ font-size:18px; line-height:1.7; color:var(--muted-foreground); max-width:42rem; display:flex; flex-direction:column; gap:20px; }
.clp-founder-text .accent{ color:var(--foreground); font-weight:600; }
.clp-founder-socials{ margin-top:40px; display:flex; flex-wrap:wrap; gap:12px; }
.clp-pill-btn{ display:inline-flex; align-items:center; gap:8px; padding:12px 20px; border-radius:999px; font-size:14px; font-weight:600; transition:all .2s; }
.clp-pill-btn.dark{ background:var(--foreground); color:var(--background); }
.clp-pill-btn.dark:hover{ background:var(--primary); }
.clp-pill-btn.outline{ border:1px solid var(--border); }
.clp-pill-btn.outline:hover{ background:var(--foreground); color:var(--background); }
.clp-pill-btn svg{ width:16px; height:16px; }

/* ---------- Blog ---------- */
.clp-blog-head{ display:flex; flex-direction:column; gap:24px; justify-content:space-between; margin-bottom:56px; }
@media (min-width:768px){ .clp-blog-head{ flex-direction:row; align-items:flex-end; } }
.clp-blog-head a{ display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; text-decoration:underline; text-decoration-color:var(--primary); text-decoration-thickness:2px; text-underline-offset:4px; flex-shrink:0; }
.clp-blog-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media (min-width:768px){ .clp-blog-grid{ grid-template-columns:repeat(3,1fr); } }
.clp-blog-card{ display:flex; flex-direction:column; border-radius:24px; overflow:hidden; background:var(--background); border:1px solid rgba(10,10,10,.1); transition:all .5s; }
.clp-blog-card:hover{ border-color:rgba(255,91,31,.4); transform:translateY(-4px); }
.clp-blog-img-wrap{ position:relative; aspect-ratio:5/3; overflow:hidden; background:var(--muted); }
.clp-blog-img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.clp-blog-card:hover .clp-blog-img-wrap img{ transform:scale(1.05); }
.clp-blog-cat{ position:absolute; top:16px; left:16px; display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.95); color:var(--foreground); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:6px 10px; border-radius:999px; }
.clp-blog-body{ padding:28px; display:flex; flex-direction:column; flex-grow:1; }
.clp-blog-body h3{ font-size:20px; font-weight:700; line-height:1.3; margin-bottom:12px; transition:color .2s; }
.clp-blog-card:hover .clp-blog-body h3{ color:var(--primary); }
.clp-blog-body .excerpt{ font-size:14px; color:var(--muted-foreground); line-height:1.6; margin-bottom:24px; flex-grow:1; }
.clp-blog-meta{ display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid rgba(10,10,10,.1); }
.clp-blog-meta .read-time{ display:inline-flex; align-items:center; gap:6px; font-size:12px; color:var(--muted-foreground); }
.clp-blog-meta .read-time svg{ width:14px; height:14px; }
.clp-blog-meta .read-link{ display:inline-flex; align-items:center; gap:4px; font-size:12px; font-weight:600; }
.clp-blog-empty{ text-align:center; padding:48px 0; color:var(--muted-foreground); }

/* ---------- FAQ ---------- */
.clp-faq-body{ max-width:72rem; margin:0 auto; display:grid; grid-template-columns:1fr; gap:64px; }
@media (min-width:1024px){ .clp-faq-body{ grid-template-columns:repeat(12,1fr); } }
.clp-faq-side{ }
@media (min-width:1024px){ .clp-faq-side{ grid-column:span 4; position:sticky; top:128px; align-self:start; } }
.clp-faq-side h2{ font-size:48px; font-weight:700; line-height:.95; margin-bottom:24px; }
@media (min-width:768px){ .clp-faq-side h2{ font-size:60px; } }
.clp-faq-side p{ color:var(--muted-foreground); line-height:1.7; margin-bottom:32px; }
.clp-faq-list-col{ }
@media (min-width:1024px){ .clp-faq-list-col{ grid-column:span 8; } }
.clp-faq-list{ border-top:1px solid rgba(10,10,10,.1); border-bottom:1px solid rgba(10,10,10,.1); }
.clp-faq-item{ border-bottom:1px solid rgba(10,10,10,.1); }
.clp-faq-item:last-child{ border-bottom:none; }
.clp-faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:24px; padding:24px 0; text-align:left; background:none; border:none; }
.clp-faq-q .label{ font-family:var(--font-display); font-size:18px; font-weight:600; padding-right:16px; transition:color .2s; }
@media (min-width:768px){ .clp-faq-q .label{ font-size:20px; } }
.clp-faq-item:hover .clp-faq-q .label{ color:var(--primary); }
.clp-faq-toggle{ flex-shrink:0; display:grid; place-items:center; width:40px; height:40px; border-radius:50%; border:1px solid rgba(10,10,10,.15); transition:all .2s; }
.clp-faq-item.open .clp-faq-toggle{ background:var(--primary); color:#fff; border-color:var(--primary); transform:rotate(45deg); }
.clp-faq-a-wrap{ height:0; overflow:hidden; opacity:0; transition:all .35s; }
.clp-faq-item.open .clp-faq-a-wrap{ height:auto; opacity:1; }
.clp-faq-a{ padding-bottom:28px; padding-right:56px; color:var(--muted-foreground); line-height:1.7; }

/* ---------- CTA ---------- */
.clp-cta-box{
  position:relative; border-radius:40px; background:var(--foreground); color:var(--background); padding:40px; overflow:hidden;
}
@media (min-width:768px){ .clp-cta-box{ padding:80px; } }
.clp-cta-grid-bg{
  position:absolute; inset:0; opacity:.3; pointer-events:none;
  background-image:linear-gradient(rgba(255,91,31,.3) 1px,transparent 1px), linear-gradient(90deg,rgba(255,91,31,.3) 1px,transparent 1px); background-size:48px 48px;
  -webkit-mask-image:radial-gradient(ellipse at top right, black, transparent 70%);
  mask-image:radial-gradient(ellipse at top right, black, transparent 70%);
}
.clp-cta-orb{ position:absolute; right:-80px; bottom:-80px; width:384px; height:384px; border-radius:50%; pointer-events:none; background:radial-gradient(circle,#ff5b1f 0,transparent 70%); filter:blur(40px); }
.clp-cta-content{ position:relative; max-width:48rem; }
.clp-cta-content h2{ font-size:48px; font-weight:700; line-height:.95; letter-spacing:-0.02em; margin-bottom:32px; }
@media (min-width:768px){ .clp-cta-content h2{ font-size:72px; } }
.clp-cta-content > p{ color:rgba(255,255,255,.7); font-size:18px; max-width:36rem; margin-bottom:40px; }
.clp-cta-actions{ display:flex; flex-wrap:wrap; gap:16px; }
.clp-btn-primary-round{ display:inline-flex; align-items:center; gap:12px; background:var(--primary); color:#fff; font-weight:600; padding:16px 32px; border-radius:999px; transition:all .2s; }
.clp-btn-primary-round:hover{ background:var(--orange-soft); }
.clp-btn-circle-arrow{ display:grid; place-items:center; width:28px; height:28px; border-radius:50%; background:var(--background); color:var(--primary); transition:transform .2s; }
.clp-btn-primary-round:hover .clp-btn-circle-arrow{ transform:rotate(45deg); }
.clp-btn-outline-round{ display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,.2); padding:16px 32px; border-radius:999px; font-weight:600; transition:all .2s; }
.clp-btn-outline-round:hover{ border-color:var(--primary); color:var(--primary); }

/* ---------- Contact form ---------- */
.clp-contact-section{ position:relative; padding:112px 0; background:var(--foreground); color:var(--background); overflow:hidden; }
@media (min-width:768px){ .clp-contact-section{ padding:144px 0; } }
.clp-contact-orb{ position:absolute; top:25%; left:-128px; width:448px; height:448px; border-radius:50%; pointer-events:none; background:radial-gradient(circle,#ff5b1f 0,transparent 70%); filter:blur(80px); opacity:.3; animation:clp-float-y 11s ease-in-out infinite; }
.clp-contact-grid-bg{ position:absolute; inset:0; opacity:.05; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,1) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px); background-size:56px 56px; }
.clp-contact-body{ position:relative; display:grid; grid-template-columns:1fr; gap:56px; }
@media (min-width:1024px){ .clp-contact-body{ grid-template-columns:repeat(12,1fr); } }
.clp-contact-info{ }
@media (min-width:1024px){ .clp-contact-info{ grid-column:span 5; } }
.clp-contact-info h2{ font-size:48px; font-weight:700; line-height:.95; margin-bottom:24px; }
@media (min-width:768px){ .clp-contact-info h2{ font-size:60px; } }
.clp-contact-info > p{ color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:40px; max-width:28rem; }
.clp-contact-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:20px; font-size:14px; }
.clp-contact-list li{ display:flex; align-items:center; gap:16px; }
.clp-contact-icon{ display:grid; place-items:center; width:44px; height:44px; border-radius:12px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); flex-shrink:0; }
.clp-contact-icon svg{ width:16px; height:16px; color:var(--primary); }
.clp-contact-list a{ transition:color .2s; }
.clp-contact-list a:hover{ color:var(--primary); }
.clp-contact-form-col{ }
@media (min-width:1024px){ .clp-contact-form-col{ grid-column:span 7; } }

/* form (shared by widget shortcode + section) */
.clp-form{ position:relative; border-radius:24px; background:rgba(255,255,255,.04); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.1); padding:32px; display:flex; flex-direction:column; gap:20px; }
@media (min-width:768px){ .clp-form{ padding:40px; } }
.clp-form.light{ background:#fff; border-color:var(--border); color:var(--foreground); }
.clp-form-success{ position:absolute; inset:0; display:none; place-items:center; border-radius:24px; background:rgba(10,10,10,.95); backdrop-filter:blur(4px); z-index:10; text-align:center; padding:24px; }
.clp-form.light .clp-form-success{ background:rgba(255,255,255,.97); }
.clp-form.show-success .clp-form-success{ display:grid; }
.clp-form-success svg{ width:56px; height:56px; color:var(--primary); margin:0 auto 16px; }
.clp-form-success h3{ font-size:24px; font-weight:700; margin-bottom:8px; color:#fff; }
.clp-form.light .clp-form-success h3{ color:var(--foreground); }
.clp-form-success p{ font-size:14px; color:rgba(255,255,255,.6); }
.clp-form.light .clp-form-success p{ color:var(--muted-foreground); }
.clp-form-error{ display:none; background:rgba(220,38,38,.1); border:1px solid rgba(220,38,38,.4); color:#ff8585; font-size:13px; padding:10px 14px; border-radius:10px; }
.clp-form.light .clp-form-error{ color:#dc2626; }
.clp-form.show-error .clp-form-error{ display:block; }
.clp-form-row{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px){ .clp-form-row{ grid-template-columns:1fr 1fr; } }
.clp-field label{ display:block; font-size:11px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.clp-form.light .clp-field label{ color:var(--muted-foreground); }
.clp-field input, .clp-field textarea{
  width:100%; background:transparent; border:1px solid rgba(255,255,255,.15); border-radius:12px; padding:12px 16px; font-size:14px;
  color:inherit; outline:none; transition:border-color .2s; font-family:inherit;
}
.clp-form.light .clp-field input, .clp-form.light .clp-field textarea{ border-color:var(--border); }
.clp-field input::placeholder, .clp-field textarea::placeholder{ color:rgba(255,255,255,.3); }
.clp-form.light .clp-field input::placeholder, .clp-form.light .clp-field textarea::placeholder{ color:#b3b3b3; }
.clp-field input:focus, .clp-field textarea:focus{ border-color:var(--primary); box-shadow:0 0 0 1px var(--primary); }
.clp-field textarea{ resize:none; }
.clp-budget-group label{ display:block; font-size:11px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.clp-form.light .clp-budget-group label{ color:var(--muted-foreground); }
.clp-budget-options{ display:flex; flex-wrap:wrap; gap:8px; }
.clp-budget-options .opt{ cursor:pointer; padding:8px 16px; border-radius:999px; border:1px solid rgba(255,255,255,.15); font-size:14px; transition:all .2s; }
.clp-form.light .clp-budget-options .opt{ border-color:var(--border); }
.clp-budget-options .opt:hover{ border-color:var(--primary); color:var(--primary); }
.clp-budget-options input{ position:absolute; opacity:0; pointer-events:none; }
.clp-budget-options .opt.checked{ background:var(--primary); color:#fff; border-color:var(--primary); }
.clp-form-submit{ width:100%; display:inline-flex; align-items:center; justify-content:center; gap:12px; background:var(--primary); color:#fff; font-weight:600; padding:16px 28px; border-radius:999px; border:none; transition:background .2s; }
.clp-form-submit:hover{ background:var(--orange-soft); }
.clp-form-submit:disabled{ opacity:.6; cursor:not-allowed; }
.clp-form-submit .clp-btn-arrow{ width:18px; height:18px; flex-shrink:0; transition:transform .2s; }
.clp-form-submit:hover .clp-btn-arrow{ transform:rotate(45deg); }
.clp-form-hp{ position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }
.clp-form-shortcode-wrap{ max-width:640px; }

/* newsletter band */
.clp-newsletter-band{ position:relative; border-bottom:1px solid rgba(255,255,255,.1); }
.clp-newsletter-inner{ margin:0 auto; max-width:1280px; padding:56px 24px; display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
@media (min-width:1024px){ .clp-newsletter-inner{ grid-template-columns:repeat(12,1fr); } }
.clp-newsletter-text{ }
@media (min-width:1024px){ .clp-newsletter-text{ grid-column:span 7; } }
.clp-newsletter-text h3{ font-size:30px; font-weight:700; letter-spacing:-0.02em; }
@media (min-width:768px){ .clp-newsletter-text h3{ font-size:36px; } }
.clp-newsletter-text p{ color:rgba(255,255,255,.6); margin-top:12px; max-width:32rem; font-size:14px; }
.clp-newsletter-form{ display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:999px; padding:6px; }
@media (min-width:1024px){ .clp-newsletter-form{ grid-column:span 5; } }
.clp-newsletter-form input{ flex:1; background:transparent; border:none; padding:10px 20px; font-size:14px; color:#fff; outline:none; }
.clp-newsletter-form input::placeholder{ color:rgba(255,255,255,.4); }
.clp-newsletter-form button{ background:var(--primary); color:#fff; font-weight:600; font-size:14px; padding:10px 20px; border-radius:999px; border:none; display:inline-flex; align-items:center; gap:6px; }

/* footer */
.clp-footer{ position:relative; background:var(--foreground); color:var(--background); overflow:hidden; }
.clp-footer-mark{ position:absolute; inset-inline:0; bottom:0; pointer-events:none; user-select:none; display:flex; justify-content:center; }
.clp-footer-mark span{
  font-family:var(--font-display); font-weight:700; line-height:1; letter-spacing:-0.04em; font-size:clamp(120px,22vw,360px);
  background:linear-gradient(180deg, rgba(255,91,31,.18) 0, rgba(255,91,31,0) 70%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.clp-footer-main{ position:relative; margin:0 auto; max-width:1280px; padding:96px 24px 40px; }
.clp-footer-grid{ display:grid; grid-template-columns:1fr; gap:48px; margin-bottom:80px; }
@media (min-width:1024px){ .clp-footer-grid{ grid-template-columns:repeat(12,1fr); } }
.clp-footer-cta{ }
@media (min-width:1024px){ .clp-footer-cta{ grid-column:span 5; } }
.clp-footer-cta h2{ font-size:48px; font-weight:700; line-height:.95; margin-bottom:24px; }
@media (min-width:768px){ .clp-footer-cta h2{ font-size:60px; } }
.clp-footer-cta > p{ color:rgba(255,255,255,.6); max-width:28rem; margin-bottom:32px; line-height:1.7; }
.clp-footer-socials{ display:flex; align-items:center; gap:12px; margin-top:40px; }
.clp-footer-socials a{ display:grid; place-items:center; width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.15); transition:all .2s; }
.clp-footer-socials a:hover{ background:var(--primary); border-color:var(--primary); }
.clp-footer-socials svg{ width:16px; height:16px; }
.clp-footer-cols{ }
@media (min-width:1024px){ .clp-footer-cols{ grid-column:span 7; display:grid; grid-template-columns:repeat(3,1fr); gap:40px; } }
.clp-footer-cols > div{ margin-bottom:32px; }
@media (min-width:1024px){ .clp-footer-cols > div{ margin-bottom:0; } }
.clp-footer-cols h4{ font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:20px; }
.clp-footer-cols ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; font-size:14px; }
.clp-footer-cols ul li a, .clp-footer-cols ul li span{ color:rgba(255,255,255,.8); transition:color .2s; }
.clp-footer-cols ul li a:hover{ color:var(--primary); }
.clp-footer-cols .contact-item{ display:flex; align-items:flex-start; gap:10px; }
.clp-footer-cols .contact-item svg{ width:16px; height:16px; margin-top:2px; color:var(--primary); flex-shrink:0; }
.clp-footer-bottom{ display:flex; flex-direction:column; align-items:flex-start; justify-content:space-between; gap:24px; padding-top:32px; border-top:1px solid rgba(255,255,255,.1); position:relative; }
@media (min-width:768px){ .clp-footer-bottom{ flex-direction:row; align-items:center; } }
.clp-footer-brand{ display:flex; align-items:center; gap:12px; }
.clp-footer-brand .logo-sq{ display:grid; place-items:center; width:36px; height:36px; border-radius:12px; background:var(--primary); font-family:var(--font-display); font-weight:700; }
.clp-footer-bottom .copy{ font-size:12px; color:rgba(255,255,255,.4); }
.clp-footer-legal{ display:flex; gap:16px; font-size:12px; color:rgba(255,255,255,.6); }
.clp-footer-legal a:hover{ color:var(--primary); }

/* ---------- Single post ---------- */
.clp-single-hero{ position:relative; padding:160px 0 64px; overflow:hidden; }
@media (min-width:768px){ .clp-single-hero{ padding:188px 0 80px; } }
.clp-single-cat{ display:inline-flex; align-items:center; gap:6px; background:var(--accent); color:var(--primary); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:6px 14px; border-radius:999px; margin-bottom:24px; }
.clp-single-title{ font-size:40px; font-weight:700; letter-spacing:-0.02em; line-height:1.08; max-width:52rem; }
@media (min-width:768px){ .clp-single-title{ font-size:56px; } }
.clp-single-meta{ display:flex; flex-wrap:wrap; align-items:center; gap:20px; margin-top:32px; color:var(--muted-foreground); font-size:14px; }
.clp-single-meta .item{ display:inline-flex; align-items:center; gap:8px; }
.clp-single-meta .item img{ width:32px; height:32px; border-radius:50%; object-fit:cover; }
.clp-single-meta svg{ width:14px; height:14px; }
.clp-single-feat-img{ margin:0 auto 64px; max-width:1024px; padding:0 24px; }
.clp-single-feat-img img{ width:100%; border-radius:24px; aspect-ratio:16/9; object-fit:cover; }
.clp-single-body-wrap{ max-width:760px; margin:0 auto; padding:0 24px 96px; }
.clp-single-content{ font-size:18px; line-height:1.8; color:var(--foreground); }
.clp-single-content > * + *{ margin-top:24px; }
.clp-single-content h2{ font-size:32px; margin-top:48px; margin-bottom:8px; }
.clp-single-content h3{ font-size:24px; margin-top:36px; margin-bottom:4px; }
.clp-single-content p{ margin:0; }
.clp-single-content ul, .clp-single-content ol{ padding-left:24px; display:flex; flex-direction:column; gap:8px; }
.clp-single-content a{ color:var(--primary); text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:2px; }
.clp-single-content img{ border-radius:16px; }
.clp-single-content blockquote{ border-left:3px solid var(--primary); padding-left:24px; font-style:italic; color:var(--muted-foreground); margin-left:0; }
.clp-single-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:48px; padding-top:32px; border-top:1px solid var(--border); }
.clp-single-tags a{ font-size:12px; font-weight:600; background:var(--muted); padding:6px 14px; border-radius:999px; transition:all .2s; }
.clp-single-tags a:hover{ background:var(--primary); color:#fff; }
.clp-single-share{ display:flex; align-items:center; gap:12px; margin-top:32px; }
.clp-single-share span{ font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--muted-foreground); }
.clp-single-share a{ display:grid; place-items:center; width:36px; height:36px; border-radius:50%; border:1px solid var(--border); transition:all .2s; }
.clp-single-share a:hover{ background:var(--foreground); color:#fff; border-color:var(--foreground); }
.clp-single-share svg{ width:14px; height:14px; }
.clp-single-author-card{ display:flex; align-items:center; gap:20px; margin-top:56px; padding:28px; border-radius:20px; background:var(--accent); }
.clp-single-author-card img{ width:64px; height:64px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.clp-single-author-card .name{ font-weight:700; font-size:16px; }
.clp-single-author-card .bio{ font-size:13px; color:var(--muted-foreground); margin-top:4px; }
.clp-single-nav{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:48px; }
@media (min-width:640px){ .clp-single-nav{ grid-template-columns:1fr 1fr; } }
.clp-single-nav a{ display:block; padding:20px; border-radius:16px; border:1px solid var(--border); transition:all .2s; }
.clp-single-nav a:hover{ border-color:var(--primary); }
.clp-single-nav .dir{ font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--primary); font-weight:700; margin-bottom:6px; display:flex; align-items:center; gap:6px; }
.clp-single-nav .ttl{ font-weight:600; font-size:14px; line-height:1.4; }
.clp-single-nav.next{ text-align:right; }
.clp-single-nav.next .dir{ justify-content:flex-end; }
.clp-single-related{ background:var(--muted); padding:96px 0; }
.clp-single-related h2{ font-size:32px; margin-bottom:40px; }

/* archive */
.clp-archive-wrap{ padding:160px 0 96px; }
.clp-archive-head{ margin-bottom:56px; }
.clp-archive-head h1{ font-size:48px; }
@media (min-width:768px){ .clp-archive-head h1{ font-size:60px; } }
.clp-pagination{ display:flex; justify-content:center; gap:8px; margin-top:64px; }
.clp-pagination a, .clp-pagination span{ display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border-radius:10px; border:1px solid var(--border); font-size:14px; font-weight:600; }
.clp-pagination .current{ background:var(--foreground); color:#fff; border-color:var(--foreground); }
.clp-pagination a:hover{ border-color:var(--primary); color:var(--primary); }

/* utility */
.clp-sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
