/* ============================================================
   LEADNOX - Brand Color Override for Aigocy Template
   Purple: #7c5cf5 | Blue: #4f8ef7
   ============================================================ */

/* === Get In Touch Banner (contact.html) === */
.lnx-git-banner {
  background: #06081a;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lnx-git-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 48px 60px;
  background: rgba(255,255,255,0.02);
}
.lnx-git-text {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}
.lnx-git-solid { color: #ffffff; }
.lnx-git-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.80);
}
.lnx-git-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lnx-git-arrow svg {
  width: clamp(38px, 5vw, 72px);
  height: clamp(38px, 5vw, 72px);
}
@media (max-width: 640px) {
  .lnx-git-inner { flex-direction: column; gap: 20px; padding: 36px 28px; border-radius: 16px; }
  .lnx-git-text { gap: 14px; }
  .lnx-git-arrow svg { width: 44px; height: 44px; }
}

/* === Industry Ticker === */
.lnx-industry-ticker {
  background: #080c1e;
  padding: 28px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.ticker-overflow {
  overflow: hidden;
  width: 100%;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  padding: 0 8px;
  transition: color 0.2s;
}
.ticker-track span:hover { color: #fff; }
.ticker-dot {
  color: rgba(124,92,245,0.7) !important;
  font-size: 18px !important;
  padding: 0 4px !important;
  letter-spacing: 0 !important;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Services Dropdown - dark card with icons === */
.lnx-services-dropdown {
  background: #0b0d1e !important;
  border: 1px solid rgba(124,92,245,0.2) !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 72px rgba(0,0,0,0.65), 0 0 0 1px rgba(124,92,245,0.08) !important;
  padding: 10px !important;
  min-width: 292px !important;
  overflow: hidden !important;
}
.lnx-services-dropdown .sub-menu-item {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.lnx-services-dropdown .sub-menu-item a.item-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 11px 14px !important;
  border-radius: 11px !important;
  color: rgba(255,255,255,0.80) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  transition: background 0.18s ease, color 0.18s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}
.lnx-services-dropdown .sub-menu-item a.item-link:hover {
  background: rgba(124,92,245,0.14) !important;
  color: #fff !important;
}
.lnx-services-dropdown .dd-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,92,245,0.13);
  border-radius: 9px;
  color: #a48fff;
  flex-shrink: 0;
}
.lnx-services-dropdown .dd-icon svg {
  display: block;
  flex-shrink: 0;
}

/* --- Services image panel - larger override --- */
.services-image {
  height: 380px !important;
  max-width: 460px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}
.services-image img {
  border-radius: 20px !important;
  transition: opacity 0.35s ease, transform 0.5s ease !important;
}
.services-image img:hover { transform: scale(1.03) !important; }

/* --- Header: solid white pill (desktop) --- */
.tf-header .header-inner {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10) !important;
}

/* --- Nav: align all items uniformly so the active underline doesn't shift "Home" --- */
.nav-menu-main {
  align-items: center !important;
}
.nav-menu-main .menu-item {
  display: flex;
  align-items: center;
}
.item-link {
  padding: 6px 0 !important;
  align-self: center !important;
}

/* --- Mobile menu canvas footer: lift above browser chrome --- */
@media (max-width: 991px) {
  .offcanvas-menu .offcanvas-content {
    padding-bottom: max(80px, calc(60px + env(safe-area-inset-bottom))) !important;
  }
}

/* --- Mobile header: no pill, just logo + hamburger floating --- */
@media (max-width: 991px) {
  .tf-header .header-inner {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 20px !important;
    padding: 0 !important;
  }
  .tf-header .mobile-menu {
    background: transparent !important;
    box-shadow: none !important;
    color: #ffffff !important;
  }
}

/* --- Brand variable override --- */
:root {
  --brand: #7c5cf5;
  --brand-2: #4f8ef7;
  --body: #f0f2f8;
}

/* --- Hero: dark gradient background --- */
.section-hero .hero-image {
  background-image: none !important;
  background: linear-gradient(135deg, #07091a 0%, #0c1028 55%, #111830 100%) !important;
}

/* --- Hero badge pill (brand colour on dark bg) --- */
.section-hero .content-wrap .sub {
  color: #b3a8ff;
  background: rgba(124, 92, 245, 0.14);
  border: 1px solid rgba(124, 92, 245, 0.38);
  box-shadow: 0 0 24px rgba(124, 92, 245, 0.18);
}
.section-hero .content-wrap .sub svg path {
  fill: #b3a8ff;
}

/* --- Hero body text (light on dark bg) --- */
.section-hero .content-wrap .text {
  color: #8b96b8;
}

/* --- Hero "Scroll for more" link (light) --- */
.section-hero .scroll-more {
  background: rgba(6,8,26,0.75) !important;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.88) !important;
}
.section-hero .scroll-more .icon {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.88);
}

/* --- text-gradient-1: white → light purple (hero / dark sections) --- */
.text-gradient-1 {
  background: linear-gradient(132.09deg, #ffffff 10%, #c4b8ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- text-gradient-2: purple → blue (about section on body bg) --- */
.text-gradient-2 {
  background: linear-gradient(135deg, #7c5cf5 0%, #4f8ef7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- text-gradient-3: purple gradient (white / light sections) --- */
.text-gradient-3 {
  background: linear-gradient(95.5deg, #7c5cf5 0%, #4f8ef7 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.tf-btn {
  background: linear-gradient(135deg, #7c5cf5 0%, #4f8ef7 100%);
  border-color: #7c5cf5;
}
.tf-btn:hover {
  background: linear-gradient(135deg, #6a4de0 0%, #3e7de6 100%);
  border-color: #6a4de0;
}

/* --- Brand progress fill (statistic slider) --- */
.progress-fill {
  background: linear-gradient(90deg, #7c5cf5, #4f8ef7);
}

/* --- Title-icon box (hero) override from red to purple --- */
.section-hero .content-wrap .title-icon .box {
  background: linear-gradient(180deg, #7c5cf5 0%, #4f8ef7 100%);
  box-shadow:
    0px 22.91px 37.08px 0px rgba(124,92,245,0.20),
    0px 56px 83px 0px rgba(79,142,247,0.15),
    0px 14px 34px 0px rgba(124,92,245,0.25);
}

/* --- Hardcoded red → brand colours --- */
.benefits-step-inner .step-item i,
.list-text.type-check li i,
.accordion-asked-item .accordion-button::after {
  color: var(--brand);
}

/* --- Heading-sub accent colours --- */
.heading-sub,
.heading-sub.style-1 {
  color: var(--brand);
}

/* --- Page inner hero banner (about, services, etc.) --- */
.section-page-hero {
  background: linear-gradient(135deg, #07091a 0%, #0c1028 55%, #111830 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.section-page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(124, 92, 245, 0.15);
  border: 1px solid rgba(124, 92, 245, 0.38);
  color: #b3a8ff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}
.section-page-hero h1 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.section-page-hero .hero-sub {
  color: #8b96b8;
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.7;
}

/* --- Stats strip --- */
.section-stats-strip {
  background: #ffffff;
  border-bottom: 1px solid #e8ebf4;
  padding: 16px 0;
}
.stats-strip-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 40px;
  border-right: 1px solid #e8ebf4;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item .stat-number {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #7c5cf5 0%, #4f8ef7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-item .stat-label {
  font-size: 13px;
  color: #7a85a0;
  font-weight: 500;
  margin-top: 4px;
}

/* --- CTA band / founding slot section --- */
.section-cta-band {
  background: linear-gradient(135deg, #07091a 0%, #0c1028 60%, #161d38 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(124,92,245,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta-band .cta-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(124,92,245,0.15);
  border: 1px solid rgba(124,92,245,0.38);
  color: #b3a8ff;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
}
.section-cta-band h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-cta-band p {
  color: #8b96b8;
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.7;
}
.section-cta-band .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta-band .cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(139,150,184,0.7);
}

/* --- Bento / value cards --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 991px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .bento-grid { grid-template-columns: 1fr; } }

.bento-card {
  background: #ffffff;
  border: 1px solid #e8ebf4;
  border-radius: 20px;
  padding: 28px;
}
.bento-card .bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,92,245,0.12), rgba(79,142,247,0.12));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: #7c5cf5;
}
.bento-card h6 { font-weight: 700; margin-bottom: 8px; color: #09090b; }
.bento-card p { color: #71717a; font-size: 14px; line-height: 1.6; margin: 0; }

/* --- Case study detail section --- */
.case-study-section {
  padding: 80px 0;
  border-bottom: 1px solid #e8ebf4;
}
.case-study-section:last-child { border-bottom: none; }
.case-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(124,92,245,0.1);
  border: 1px solid rgba(124,92,245,0.25);
  color: #7c5cf5;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.case-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 767px) { .case-result-grid { grid-template-columns: repeat(2, 1fr); } }
.case-result-item {
  background: #ffffff;
  border: 1px solid #e8ebf4;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.case-result-item .result-number {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #7c5cf5, #4f8ef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-result-item .result-label {
  font-size: 12px;
  color: #7a85a0;
  font-weight: 500;
  margin-top: 4px;
}

/* --- Blog article cards --- */
.blog-article-card {
  background: #ffffff;
  border: 1px solid #e8ebf4;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-article-card:hover {
  box-shadow: 0 8px 32px rgba(124,92,245,0.12);
  transform: translateY(-4px);
}
.blog-article-card .card-body { padding: 24px; }
.blog-category-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  background: rgba(124,92,245,0.1);
  color: #7c5cf5;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-article-card h5 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #09090b;
}
.blog-article-card p {
  font-size: 14px;
  color: #71717a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-link {
  font-size: 13px;
  font-weight: 600;
  color: #7c5cf5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-link:hover { color: #4f8ef7; }

/* --- ROI Table --- */
.roi-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8ebf4;
}
.roi-table th {
  background: linear-gradient(135deg, #7c5cf5, #4f8ef7);
  color: #ffffff;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.roi-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #3f3f46;
  border-bottom: 1px solid #f0f0f0;
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table td:nth-child(3) { color: #7c5cf5; font-weight: 700; }

/* --- AI chat demo --- */
.chat-demo {
  background: #ffffff;
  border: 1px solid #e8ebf4;
  border-radius: 20px;
  padding: 28px;
  max-width: 540px;
}
.chat-demo .chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.chat-demo .chat-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #7c5cf5, #4f8ef7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
}
.chat-msg { margin-bottom: 16px; }
.chat-msg.homeowner .bubble {
  background: #f4f4f5;
  border-radius: 16px 16px 16px 4px;
  padding: 10px 16px;
  font-size: 14px;
  color: #3f3f46;
  max-width: 80%;
}
.chat-msg.ai .bubble {
  background: linear-gradient(135deg, rgba(124,92,245,0.08), rgba(79,142,247,0.08));
  border: 1px solid rgba(124,92,245,0.2);
  border-radius: 16px 16px 4px 16px;
  padding: 10px 16px;
  font-size: 14px;
  color: #3f3f46;
  max-width: 85%;
  margin-left: auto;
}
.chat-msg .chat-time { font-size: 11px; color: #a1a1aa; margin-top: 4px; }
.chat-msg.ai .chat-time { text-align: right; }
.chat-result-label {
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  text-align: center;
}

/* --- Process steps for about/services --- */
.lnx-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 991px) { .lnx-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .lnx-process-grid { grid-template-columns: 1fr; } }
.lnx-process-card {
  background: #ffffff;
  border: 1px solid #e8ebf4;
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
}
.lnx-process-card .step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #7c5cf5;
  margin-bottom: 16px;
}
.lnx-process-card h6 { font-weight: 700; margin-bottom: 8px; color: #09090b; }
.lnx-process-card p { font-size: 14px; color: #71717a; line-height: 1.6; margin: 0; }

/* --- Contact sidebar --- */
.contact-sidebar-promise {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-sidebar-promise .promise-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,92,245,0.12), rgba(79,142,247,0.12));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #7c5cf5;
  font-size: 16px;
}
.contact-sidebar-promise h6 { font-weight: 700; margin-bottom: 4px; font-size: 15px; color: #09090b; }
.contact-sidebar-promise p { font-size: 13px; color: #71717a; margin: 0; }

/* --- Reassurance strip --- */
.reassurance-strip {
  background: #f8f9ff;
  border-top: 1px solid #e8ebf4;
  padding: 20px 0;
}
.reassurance-strip .strip-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.reassurance-strip .strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #3f3f46;
}
.reassurance-strip .strip-item i { color: #7c5cf5; }

/* --- Metric float card in hero --- */
.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.metric-float-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}
.metric-float-card .mf-number {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c5cf5, #4f8ef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.metric-float-card .mf-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
}

/* --- Trust badges in hero --- */
.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.trust-badge i { color: #7c5cf5; }

/* --- Testimonial quote override (dark sections) --- */
.box-black .heading-sub.style-1 {
  color: var(--brand);
}

/* --- Partner/tool bar text override --- */
.section-partner .partner-wrap .text {
  color: #71717a;
}

/* --- Standalone contact info item (sidebar use) --- */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,92,245,0.1), rgba(79,142,247,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c5cf5;
  font-size: 15px;
  flex-shrink: 0;
}
.contact-item .content .title { font-size: 13px; color: #a1a1aa; }
.contact-item .content .text { font-size: 15px; color: #3f3f46; }

/* --- Contact form consistent input/select styles --- */
.form-contact input,
.form-contact textarea,
.form-contact select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: #3f3f46;
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-contact input:focus,
.form-contact textarea:focus,
.form-contact select:focus {
  border-color: #7c5cf5;
  box-shadow: 0 0 0 3px rgba(124,92,245,0.1);
}
.form-contact textarea { min-height: 120px; resize: vertical; }
.form-contact label { display: block; font-size: 13px; font-weight: 600; color: #3f3f46; margin-bottom: 8px; }

/* --- Image placeholder (swap with your own photos) --- */
.lnx-img-placeholder {
  background: linear-gradient(135deg, #0c1028 0%, #111830 100%);
  border-radius: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px dashed rgba(124,92,245,0.25);
}
.lnx-img-placeholder::before {
  content: '';
  display: block;
  width: 36px; height: 36px;
  border: 2px dashed rgba(124,92,245,0.35);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(124,92,245,0.4)' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E") center/20px no-repeat;
}

/* --- Secondary button (outline style for CTA bands) --- */
.tf-btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 14px 28px;
  border-radius: 99px;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}
.tf-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   CARD STACK - Homepage Case Studies
   ============================================================ */
.lnx-cs-stack-section { padding-bottom: 100px; }

.lnx-stack-wrapper {
  position: relative;
  height: 460px;
  max-width: 960px;
  margin: 64px auto 0;
}

/* Each card */
.lnx-stack-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  transition: transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1),
              opacity  0.45s ease,
              box-shadow 0.45s ease;
  will-change: transform, opacity;
  background: #0b0d1e;
  cursor: pointer;
}

/* Stack positions */
.lnx-stack-card[data-pos="0"] {
  transform: translateX(0) translateY(0) scale(1);
  z-index: 10; opacity: 1;
  box-shadow: 0 16px 56px rgba(0,0,0,0.28);
  pointer-events: all;
}
.lnx-stack-card[data-pos="1"] {
  transform: translateX(18px) translateY(18px) scale(0.955);
  z-index: 9;  opacity: 0.72;
  pointer-events: none;
}
.lnx-stack-card[data-pos="2"] {
  transform: translateX(36px) translateY(36px) scale(0.910);
  z-index: 8;  opacity: 0.44;
  pointer-events: none;
}

/* Fly-out exit class */
.lnx-stack-card.lnx-exit-left {
  transform: translateX(-110%) translateY(-30px) scale(0.82) rotate(-6deg) !important;
  opacity: 0 !important;
  transition: transform 0.48s cubic-bezier(0.55, 0, 0.55, 0.9),
              opacity 0.35s ease !important;
  z-index: 11 !important;
}
.lnx-stack-card.lnx-exit-right {
  transform: translateX(110%) translateY(-30px) scale(0.82) rotate(6deg) !important;
  opacity: 0 !important;
  transition: transform 0.48s cubic-bezier(0.55, 0, 0.55, 0.9),
              opacity 0.35s ease !important;
  z-index: 11 !important;
}

/* Card image (left half) */
.lnx-sc-image {
  width: 52%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.lnx-sc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lnx-stack-card[data-pos="0"]:hover .lnx-sc-image img {
  transform: scale(1.04);
}
.lnx-sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #0b0d1e 100%);
}

/* Card content (right half) */
.lnx-sc-content {
  flex: 1;
  padding: 36px 36px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0b0d1e;
  position: relative;
}
.lnx-sc-content::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(124,92,245,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.lnx-sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.lnx-sc-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #b3a8ff;
  background: rgba(124,92,245,0.18);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(124,92,245,0.22);
}

.lnx-sc-metric {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 30%, #b3a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.lnx-sc-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lnx-sc-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  margin-bottom: 20px;
}

.lnx-sc-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.lnx-sc-stat {
  background: rgba(124,92,245,0.12);
  border: 1px solid rgba(124,92,245,0.20);
  border-radius: 10px;
  padding: 10px 12px;
  flex: 1;
  text-align: center;
}
.lnx-sc-stat .n {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #a48fff;
  line-height: 1;
}
.lnx-sc-stat .l {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.2;
}

.lnx-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #7c5cf5;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.lnx-sc-link:hover {
  color: #a48fff;
  gap: 10px;
}

/* Navigation row */
.lnx-stack-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.lnx-stack-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(124,92,245,0.35);
  background: transparent;
  color: #7c5cf5;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lnx-stack-btn:hover {
  background: rgba(124,92,245,0.12);
  border-color: #7c5cf5;
  color: #fff;
}
.lnx-stack-dots { display: flex; gap: 8px; align-items: center; }
.lnx-stack-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(124,92,245,0.25);
  transition: background 0.25s, transform 0.25s;
  display: block;
}
.lnx-stack-dots span.active {
  background: #7c5cf5;
  transform: scale(1.35);
}

/* Mobile */
@media (max-width: 767px) {
  .lnx-stack-wrapper { height: auto; }
  .lnx-stack-card { position: relative; flex-direction: column; }
  .lnx-stack-card[data-pos="1"],
  .lnx-stack-card[data-pos="2"] { display: none; }
  .lnx-sc-image { width: 100%; height: 220px; }
  .lnx-sc-overlay { background: linear-gradient(180deg, transparent 50%, #0b0d1e 100%); }
  .lnx-sc-metric { font-size: 38px; }
}

/* --- Mobile fixes --- */
/* Mobile fixes */
@media (max-width: 575px) {
  .section-page-hero { padding: 120px 0 60px; }
  .section-cta-band { padding: 60px 0; }
}

/* ============================================================
   FOUNDING CLIENT PROGRAM - dark section
   ============================================================ */
.lnx-founding-section {
  background: #000000;
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow behind content */
.lnx-founding-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(124,92,245,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.lnx-founding-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Badge */
.lnx-founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,92,245,0.25);
  border: 1px solid rgba(124,92,245,0.45);
  color: #c4b5fd;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 44px;
}

/* Headline */
.lnx-founding-headline {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.lnx-founding-gradient {
  background: linear-gradient(90deg, #a78bfa 0%, #7c5cf5 50%, #4f8ef7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub paragraph */
.lnx-founding-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #8b96b8;
  max-width: 620px;
  margin: 0 auto 52px;
}
.lnx-founding-sub strong {
  color: #fff;
  font-weight: 600;
}

/* Slot boxes */
.lnx-founding-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lnx-slot {
  width: 88px;
  height: 88px;
  border: 2px dashed rgba(124,92,245,0.5);
  border-radius: 18px;
  background: rgba(124,92,245,0.06);
  color: rgba(124,92,245,0.7);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  transition: border-color 0.2s, background 0.2s;
}
.lnx-slot:hover {
  border-color: rgba(124,92,245,0.9);
  background: rgba(124,92,245,0.12);
}

/* Slots count */
.lnx-founding-count {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.lnx-founding-count-sub {
  font-size: 15px;
  color: #8b96b8;
  margin-bottom: 48px;
}
.lnx-founding-count-sub strong {
  color: #fff;
  font-weight: 600;
}

/* CTA button */
.lnx-founding-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #7c5cf5 0%, #4f8ef7 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(124,92,245,0.45);
}
.lnx-founding-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(124,92,245,0.55);
  color: #fff;
  text-decoration: none;
}
.lnx-founding-cta-arrow {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .lnx-slot { width: 62px; height: 62px; font-size: 15px; border-radius: 12px; }
  .lnx-founding-slots { gap: 10px; }
}

/* ============================================================
   TESTIMONIALS - card stack carousel (hook.agency style)
   ============================================================ */
.lnx-testi-section {
  padding: 100px 0 80px;
  background: #f0f1f5;
  overflow: hidden;
}
.lnx-testi-label {
  color: #7c5cf5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lnx-testi-headline {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: #0b1120;
  line-height: 1.18;
  margin-bottom: 64px;
}

/* Track - holds all cards absolutely positioned */
.lnx-testi-track {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Individual card */
.lnx-tcard {
  position: absolute;
  width: 440px;
  max-width: 90vw;
  background: #fff;
  border-radius: 28px;
  padding: 40px 38px 34px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.55s cubic-bezier(0.4, 0, 0.2, 1),
              filter    0.55s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* Active / center card */
.lnx-tcard[data-pos="0"] {
  background: #0b1120;
  transform: translateX(0) scale(1);
  z-index: 10;
  opacity: 1;
  filter: none;
  box-shadow: 0 32px 80px rgba(11,17,32,0.40), 0 8px 24px rgba(11,17,32,0.20);
  cursor: default;
}

/* Right card */
.lnx-tcard[data-pos="1"] {
  transform: translateX(68%) scale(0.86);
  z-index: 5;
  opacity: 0.55;
  filter: blur(1.5px);
}

/* Left card */
.lnx-tcard[data-pos="-1"] {
  transform: translateX(-68%) scale(0.86);
  z-index: 5;
  opacity: 0.55;
  filter: blur(1.5px);
}

/* Exit/hidden state (used during animation) */
.lnx-tcard[data-pos="2"],
.lnx-tcard[data-pos="-2"] {
  transform: translateX(110%) scale(0.72);
  z-index: 1;
  opacity: 0;
  filter: blur(3px);
  pointer-events: none;
}
.lnx-tcard[data-pos="-2"] {
  transform: translateX(-110%) scale(0.72);
}

/* Card internals - default (inactive card) */
.lnx-tcard-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.lnx-tcard-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8e8f0;
  color: #0b1120;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.lnx-tcard-stars {
  color: #c5c5d5;
  font-size: 18px;
  letter-spacing: 2px;
}
.lnx-tcard-quote {
  font-size: 15px;
  line-height: 1.72;
  color: #555;
  margin-bottom: 28px;
  font-style: italic;
}
.lnx-tcard-cite { display: flex; flex-direction: column; gap: 6px; }
.lnx-tcard-line {
  width: 36px;
  height: 2px;
  background: #d0d0e0;
  border-radius: 2px;
  margin-bottom: 4px;
}
.lnx-tcard-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.lnx-tcard-role {
  font-size: 13px;
  color: #888;
}

/* Active card - overrides */
.lnx-tcard[data-pos="0"] .lnx-tcard-avatar {
  background: rgba(124,92,245,0.18);
  color: #a78bfa;
}
.lnx-tcard[data-pos="0"] .lnx-tcard-stars {
  color: #7c5cf5;
}
.lnx-tcard[data-pos="0"] .lnx-tcard-quote {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
}
.lnx-tcard[data-pos="0"] .lnx-tcard-line {
  background: rgba(124,92,245,0.5);
}
.lnx-tcard[data-pos="0"] .lnx-tcard-name {
  color: #fff;
}
.lnx-tcard[data-pos="0"] .lnx-tcard-role {
  color: rgba(255,255,255,0.5);
}

/* Navigation buttons */
.lnx-testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
}
.lnx-testi-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.10);
  color: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.lnx-testi-btn:hover {
  background: #0b1120;
  border-color: #0b1120;
  color: #fff;
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
  .lnx-testi-track { height: 480px; }
  .lnx-tcard { width: 88vw; padding: 30px 24px 26px; }
  .lnx-tcard[data-pos="1"] { transform: translateX(78%) scale(0.80); opacity: 0.35; }
  .lnx-tcard[data-pos="-1"] { transform: translateX(-78%) scale(0.80); opacity: 0.35; }
}

/* ============================================================
   STRATEGY FORM - "Book Your Free Strategy Session"
   ============================================================ */
.lnx-strategy-form {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Title & sub */
.lnx-sf-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: #18181b;
  margin: 0 0 6px;
  line-height: 1.25;
}
.lnx-sf-sub {
  font-size: 14px;
  line-height: 1.65;
  color: #52525b;
  margin: 0;
}

/* Qualification notice box */
.lnx-sf-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(124,92,245,0.06);
  border: 1px solid rgba(124,92,245,0.22);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #52525b;
}
.lnx-sf-notice svg { flex-shrink: 0; margin-top: 2px; }
.lnx-sf-notice strong { color: #18181b; font-weight: 600; }

/* 2-column grid */
.lnx-sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Labels */
.lnx-sf-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #71717a;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.lnx-sf-label span { color: #7c5cf5; }

/* Inputs, selects, textarea */
.lnx-strategy-form input,
.lnx-strategy-form select,
.lnx-strategy-form textarea {
  box-sizing: border-box !important;
  width: 100%;
  background: #f9f9fb !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 12px !important;
  color: #18181b !important;
  font-size: 14px !important;
  padding: 13px 16px !important;
  outline: none !important;
  transition: border-color 0.2s, background 0.2s !important;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
}
.lnx-strategy-form input::placeholder,
.lnx-strategy-form textarea::placeholder {
  color: rgba(0,0,0,0.30) !important;
}
.lnx-strategy-form input:focus,
.lnx-strategy-form select:focus,
.lnx-strategy-form textarea:focus {
  border-color: rgba(124,92,245,0.55) !important;
  background: rgba(124,92,245,0.04) !important;
}
.lnx-strategy-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 38px !important;
  cursor: pointer;
}
.lnx-strategy-form select option {
  background: #ffffff;
  color: #18181b;
}
.lnx-strategy-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* fieldset reset */
.lnx-strategy-form fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0;
}

/* Submit button */
.lnx-sf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #7c5cf5 0%, #4f8ef7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 17px 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(124,92,245,0.40);
  margin-top: 4px;
}
.lnx-sf-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(124,92,245,0.50);
}

/* Responsive */
@media (max-width: 576px) {
  .lnx-sf-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE - redesigned layout
   ============================================================ */

/* Section background - white */
.lnx-contact-section {
  padding: 80px 0 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.lnx-contact-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,92,245,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Light form card */
.lnx-sf-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(124,92,245,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(124,92,245,0.06);
  position: relative;
  z-index: 1;
}

.lnx-sf-footer-note {
  text-align: center;
  font-size: 13px;
  color: rgba(0,0,0,0.40);
  margin-top: 14px;
  margin-bottom: 0;
}

/* ---- Sidebar light cards ---- */
.lnx-sbar-card {
  background: #f8f8ff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #e8e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.lnx-sbar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #18181b;
  line-height: 1.3;
}
.lnx-sbar-head-icon {
  width: 32px;
  height: 32px;
  background: rgba(124,92,245,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.lnx-sbar-promise {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.lnx-sbar-promise:last-child { margin-bottom: 0; }
.lnx-sbar-picon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(124,92,245,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 14px;
  flex-shrink: 0;
}
.lnx-sbar-promise h6 {
  font-size: 13.5px;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 4px;
}
.lnx-sbar-promise p {
  font-size: 12.5px;
  color: #52525b;
  margin: 0;
  line-height: 1.55;
}

/* WhatsApp CTA button */
.lnx-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #22c55e;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.lnx-wa-btn:hover {
  background: #16a34a;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Contact lines in sidebar */
.lnx-sbar-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 13.5px;
  color: #3f3f46;
}
.lnx-sbar-contact-line:last-child { border-bottom: none; padding-bottom: 0; }
.lnx-sbar-contact-line:first-of-type { padding-top: 0; }
.lnx-sbar-contact-line i {
  color: #7c5cf5;
  font-size: 14px;
  width: 18px;
  flex-shrink: 0;
}
.lnx-sbar-contact-line a {
  color: #3f3f46;
  text-decoration: none;
}
.lnx-sbar-contact-line a:hover { color: #7c5cf5; }

/* Testimonial quote */
.lnx-sbar-quote {
  font-size: 13.5px;
  color: #52525b;
  line-height: 1.68;
  font-style: italic;
  margin-bottom: 12px;
}
.lnx-sbar-cite {
  font-size: 12.5px;
  font-weight: 600;
  color: #71717a;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .lnx-sf-card { padding: 28px 22px; }
}
@media (max-width: 576px) {
  .lnx-contact-section { padding: 60px 0 80px; }
  .lnx-sf-card { padding: 24px 18px; border-radius: 18px; }
}

/* ============================================================
   PHONE MOCKUP ANIMATION v4 - realistic titanium + vivid bokeh
   ============================================================ */
.lnx-phone-card {
  background: linear-gradient(165deg, #0d0e1a 0%, #080910 100%) !important;
  position: relative;
  overflow: hidden;
}
.lnx-phone-card .title { color: #ffffff !important; }
.lnx-phone-card .text  { color: rgba(255,255,255,0.50) !important; }

/* Scene - phone pushed right so notifications spill deep into left space */
.lnx-phone-scene {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 50px 28px 0 40px;
  min-height: 520px;
  position: relative;
  z-index: 1;
}

/* warm amber radial glow behind phone */
.lnx-phone-scene::before {
  content: '';
  position: absolute;
  top: 20px; right: 28px;
  width: 320px; height: 560px;
  background: radial-gradient(ellipse at 50% 28%, rgba(200,108,20,0.26) 0%, transparent 58%);
  pointer-events: none;
}

/* iPhone shell - true 1:2.16 ratio like iPhone 15 Pro */
.lnx-iphone {
  width: 264px;
  height: 568px;
  border-radius: 56px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
  background:
    linear-gradient(145deg,
      rgba(90,84,78,1) 0%,
      rgba(52,48,46,1) 15%,
      rgba(28,26,26,1) 45%,
      rgba(16,14,14,1) 75%,
      rgba(10,9,9,1) 100%
    );
  box-shadow:
    0 0 0 1px rgba(225,155,55,0.32),
    0 0 0 2.5px rgba(0,0,0,0.82),
    0 0 100px rgba(200,108,22,0.48),
    0 0 50px rgba(168,80,12,0.32),
    0 50px 130px rgba(0,0,0,0.92),
    0 22px 64px rgba(0,0,0,0.72),
    inset 0 2.5px 0 rgba(255,255,255,0.14),
    inset 0 -2px 0 rgba(0,0,0,0.62);
  animation: lnxIphoneFloat 5s ease-in-out infinite;
}

/* Left: silent switch + two volume buttons */
.lnx-iphone::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 104px;
  width: 4.5px;
  height: 126px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg,
    #3c3836 0px, #3c3836 30px,
    transparent 30px, transparent 46px,
    #3c3836 46px, #3c3836 92px,
    transparent 92px, transparent 104px,
    #3c3836 104px, #3c3836 150px
  );
  box-shadow: -1.5px 0 4px rgba(0,0,0,0.6), inset 0.5px 0 0 rgba(255,255,255,0.07);
}

/* Right: power/side button */
.lnx-iphone::after {
  content: '';
  position: absolute;
  right: -4.5px;
  top: 162px;
  width: 4.5px;
  height: 76px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #2c2a28 0%, #3c3a36 30%, #3c3a36 70%, #2c2a28 100%);
  box-shadow: 1.5px 0 4px rgba(0,0,0,0.6), inset -0.5px 0 0 rgba(255,255,255,0.07);
}

@keyframes lnxIphoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50%       { transform: translateY(-24px) rotate(-2.5deg); }
}

/* Dynamic Island */
.lnx-di {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 104px; height: 32px;
  background: #000;
  border-radius: 26px;
  z-index: 22;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.9);
}

/* Screen - vivid bronze/copper bokeh wallpaper */
.lnx-ps {
  position: absolute;
  inset: 2px;
  border-radius: 54px;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(circle 155px at 17% 10%,
      #f8a830 0%,
      rgba(245,165,48,0.90) 12%,
      rgba(210,120,28,0.62) 28%,
      rgba(160,80,14,0.30) 50%,
      transparent 70%
    ),
    radial-gradient(circle 125px at 84% 92%,
      rgba(230,120,28,0.98) 0%,
      rgba(200,95,20,0.80) 15%,
      rgba(160,72,12,0.48) 34%,
      transparent 58%
    ),
    radial-gradient(ellipse at 48% 52%, rgba(72,34,6,0.35) 0%, transparent 55%),
    linear-gradient(155deg, #2e1507 0%, #160b03 42%, #0e0802 68%, #070503 100%);
}

/* grain overlay */
.lnx-ps::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.76' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.065;
  pointer-events: none;
  z-index: 3;
}

/* Status bar - time/icons sit BESIDE the Dynamic Island (same vertical level) */
.lnx-sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.4px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  z-index: 5;
}
.lnx-sb-r { display: flex; gap: 5px; align-items: center; }

/* Lock screen */
.lnx-ld {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.2px;
  margin-top: 32px; margin-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative; z-index: 5;
  text-shadow: 0 1px 16px rgba(0,0,0,0.70);
}
.lnx-lt {
  text-align: center;
  font-size: 88px;
  font-weight: 200;
  color: #fff;
  line-height: 0.93;
  letter-spacing: -5px;
  margin-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative; z-index: 5;
  text-shadow: 0 6px 60px rgba(0,0,0,0.52), 0 0 130px rgba(230,160,50,0.10);
}

/* Notifications - absolutely positioned, overflow phone frame */
.lnx-notif {
  position: absolute;
  z-index: 30;
  background: rgba(244,244,248,0.88);
  border-radius: 22px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.62),
    0 12px 36px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.86),
    inset 0 -1px 0 rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateX(-200%);
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.14, 1.28, 0.28, 1);
  animation-duration: 10s;
}

/* Notif 1 - extends 120px LEFT of phone frame (big depth effect like reference) */
.lnx-notif-1 {
  top: 258px; left: -120px; right: 10px;
  z-index: 13;
  animation-name: lnxN1; animation-delay: 0.8s;
}
/* Notif 2 - extends 90px LEFT of phone frame */
.lnx-notif-2 {
  top: 340px; left: -90px; right: 10px;
  z-index: 12;
  animation-name: lnxN2; animation-delay: 0.8s;
}
/* Notif 3 - sits within the phone frame (smaller, bottom-right like reference) */
.lnx-notif-3 {
  top: 416px; left: 10px; right: 10px;
  z-index: 11;
  animation-name: lnxN3; animation-delay: 0.8s;
}

@keyframes lnxN1 {
  0%        { transform: translateX(-200%); opacity: 0; }
  8%        { transform: translateX(0);     opacity: 1; }
  76%       { transform: translateX(0);     opacity: 1; }
  85%       { transform: translateX(-200%); opacity: 0; }
  100%      { transform: translateX(-200%); opacity: 0; }
}
@keyframes lnxN2 {
  0%, 17%   { transform: translateX(-200%); opacity: 0; }
  25%       { transform: translateX(0);     opacity: 1; }
  76%       { transform: translateX(0);     opacity: 1; }
  85%       { transform: translateX(-200%); opacity: 0; }
  100%      { transform: translateX(-200%); opacity: 0; }
}
@keyframes lnxN3 {
  0%, 32%   { transform: translateX(-200%); opacity: 0; }
  40%       { transform: translateX(0);     opacity: 1; }
  76%       { transform: translateX(0);     opacity: 1; }
  85%       { transform: translateX(-200%); opacity: 0; }
  100%      { transform: translateX(-200%); opacity: 0; }
}

/* === Launch Guarantee Card - Rocket + Timeline === */
.lnx-launch-visual {
  margin-bottom: 8px;
}
.lnx-rocket-scene {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0;
}
.lnx-rocket-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,245,0.22) 0%, transparent 70%);
  animation: rktGlow 2.4s ease-in-out infinite alternate;
}
.lnx-rocket-svg {
  width: 90px;
  height: 120px;
  animation: rktFloat 2.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(124,92,245,0.45));
  position: relative;
  z-index: 1;
}
.lnx-exhaust {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  margin-top: -2px;
  position: relative;
  z-index: 1;
}
.lnx-flame {
  display: block;
  border-radius: 50% 50% 40% 40%;
  animation: flamePulse 0.35s ease-in-out infinite alternate;
}
.lnx-flame-c {
  width: 12px;
  height: 28px;
  background: linear-gradient(to bottom, #fff9, #f97316, #7c3aed00);
  animation-delay: 0s;
}
.lnx-flame-l {
  width: 8px;
  height: 18px;
  background: linear-gradient(to bottom, #fcd34d99, #f59e0b, transparent);
  animation-delay: 0.1s;
  margin-top: 5px;
}
.lnx-flame-r {
  width: 8px;
  height: 18px;
  background: linear-gradient(to bottom, #fcd34d99, #f59e0b, transparent);
  animation-delay: 0.2s;
  margin-top: 5px;
}
@keyframes rktFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes rktGlow {
  0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(0.9); }
  100% { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}
@keyframes flamePulse {
  0%   { transform: scaleY(0.8) scaleX(0.9); opacity: 0.8; }
  100% { transform: scaleY(1.2) scaleX(1.1); opacity: 1; }
}

/* Launch Timeline */
.lnx-launch-timeline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lnx-lt-item {
  display: grid;
  grid-template-columns: 16px 1px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  row-gap: 0;
}
.lnx-lt-item.lnx-lt-last {
  grid-template-columns: 16px 1fr;
}
.lnx-lt-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.lnx-lt-done {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}
.lnx-lt-active {
  background: #7c5cf5;
  box-shadow: 0 0 0 3px rgba(124,92,245,0.22);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.lnx-lt-guarantee {
  background: linear-gradient(135deg, #7c5cf5, #4f8ef7);
  box-shadow: 0 0 0 3px rgba(124,92,245,0.22), 0 0 12px rgba(124,92,245,0.35);
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(124,92,245,0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(124,92,245,0.08); }
}
.lnx-lt-line {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 1px;
  background: rgba(0,0,0,0.1);
  margin-left: 0;
  min-height: 32px;
}
.lnx-lt-info {
  grid-column: 3;
  grid-row: 1;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.lnx-lt-item.lnx-lt-last .lnx-lt-info {
  grid-column: 2;
  padding-bottom: 0;
}
.lnx-lt-info strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main, #111);
}
.lnx-lt-info span {
  font-size: 13.5px;
  color: #666;
  line-height: 1.45;
}
.lnx-lt-dot {
  width: 18px;
  height: 18px;
}

/* Guarantee badge */
.lnx-guarantee-badge {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,92,245,0.08) 0%, rgba(79,142,247,0.08) 100%);
  border: 1px solid rgba(124,92,245,0.2);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lnx-gb-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c5cf5, #4f8ef7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.lnx-gb-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}
.lnx-gb-text span {
  font-size: 12px;
  color: #666;
  line-height: 1.45;
}

/* Included perks row */
.lnx-launch-perks {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lnx-lp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}
.lnx-lp-item svg {
  flex-shrink: 0;
  color: #10b981;
}

/* === Notif icon === */
.lnx-ni {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lnx-ni-g { background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,0.16); }
.lnx-ni-m { background: #1877F2; }
.lnx-ni-c { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }

/* Notif text */
.lnx-nb { flex: 1; min-width: 0; }
.lnx-nh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.lnx-na { font-size: 12px; font-weight: 700; color: #1c1c1e; letter-spacing: -0.2px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.lnx-nt { font-size: 11px; color: rgba(0,0,0,0.38); font-family: -apple-system, BlinkMacSystemFont, sans-serif; white-space: nowrap; }
.lnx-nm { font-size: 12px; color: rgba(0,0,0,0.68); line-height: 1.42; font-family: -apple-system, BlinkMacSystemFont, sans-serif; margin: 0; }

/* Caption below phone */
.lnx-phone-caption {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  margin-top: 22px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* === Services page - prevent floating image from covering stats text === */
.section-services .col-xxl-4,
.section-services .col-lg-5 {
  padding-bottom: 400px;
}
.services-image {
  z-index: 0;
}
.section-services .col-xxl-4 > *,
.section-services .col-lg-5 > * {
  position: relative;
  z-index: 1;
}

/* === box-white service sections: image at top in landscape, negative overlap === */
.box-white .section-services .row {
  flex-wrap: wrap;
}
.box-white .section-services .services-image {
  order: -1;
  flex: 0 0 100%;
  max-width: 100% !important;
  height: clamp(260px, 38vh, 400px) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  margin-bottom: -56px;
  position: relative;
  z-index: 0;
}
.box-white .section-services .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0 !important;
  transition: transform 0.5s ease !important;
}
.box-white .section-services .col-xxl-4,
.box-white .section-services .col-lg-5 {
  padding-bottom: 0 !important;
  position: relative;
  z-index: 1;
}
.box-white .section-services .col-xxl-7,
.box-white .section-services .col-lg-7 {
  position: relative;
  z-index: 1;
}

/* === Home page services - image is inline, undo the gap margins === */
#services .col-left {
  margin-bottom: 0;
}
#services .col-xxl-4 {
  padding-bottom: 0;
}

/* === Service accordion - body text white === */
.accordion-faq_item .accordion-content .text {
  color: rgba(255,255,255,0.90) !important;
}

/* === Features Center - override orange to black === */
.features-center {
  background: #000 !important;
  box-shadow:
    0px -3px 0px 0px rgba(0,0,0,0.06) inset,
    0px 1px 0px 0px rgba(255,255,255,0.06) inset,
    0px 4px 8px 0px rgba(0,0,0,0.18),
    0px 14px 40px 0px rgba(0,0,0,0.22),
    0px 0px 0px 3px rgba(255,255,255,0.06) !important;
}

/* ============================================================
   LNX FOOTER - TEQUILA-style multi-column footer
   ============================================================ */

.lnx-footer {
  position: relative;
  background: #06081a;
  padding: 72px 0 0;
  overflow: hidden;
}

/* Watermark logo behind */
.lnx-footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
}

/* Top gradient border */
.lnx-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124,92,245,0.5) 30%, rgba(79,142,247,0.5) 70%, transparent 100%);
}

/* Main grid */
.lnx-footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 280px;
  gap: 0 40px;
  padding-bottom: 64px;
}

/* === Left: About === */
.lnx-footer-about {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lnx-footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.lnx-footer-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.lnx-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 22px;
}
.lnx-footer-contact a,
.lnx-footer-contact span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.lnx-footer-contact a:hover { color: #7c5cf5; }
.lnx-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border: 1px solid rgba(124,92,245,0.45);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-bottom: 20px;
}
.lnx-footer-cta:hover {
  background: rgba(124,92,245,0.15);
  border-color: #7c5cf5;
  color: #fff;
}
.lnx-footer-built {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

/* === Service columns === */
.lnx-footer-col {
  display: flex;
  flex-direction: column;
}

/* LEAD / NOX / .IO header with line */
.lnx-fc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.lnx-fc-head-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.lnx-fc-hr {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* Section title (e.g. "PAID GROWTH") */
.lnx-fc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Links */
.lnx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lnx-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.lnx-footer-col ul li a:hover { color: #7c5cf5; }

/* === Right: Quick Links + Socials === */
.lnx-footer-right {
  display: flex;
  gap: 32px;
}
.lnx-footer-right .lnx-footer-col { flex: 1; }

/* Plain header for Quick Links / Socials */
.lnx-fc-head-plain {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* === Bottom bar === */
.lnx-footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.lnx-footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}
.lnx-footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.lnx-footer-top {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.lnx-footer-top:hover { color: #7c5cf5; }

/* === Responsive === */
@media (max-width: 1199px) {
  .lnx-footer-grid {
    grid-template-columns: 200px 1fr 1fr 1fr 240px;
    gap: 0 28px;
  }
}

@media (max-width: 991px) {
  .lnx-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 28px;
  }
  .lnx-footer-about {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
  }
  .lnx-footer-about > * { flex-shrink: 0; }
  .lnx-footer-desc { flex-basis: 100%; margin-bottom: 0; }
  .lnx-footer-right {
    grid-column: span 1;
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .lnx-footer { padding-top: 48px; }
  .lnx-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }
  .lnx-footer-about {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 14px;
  }
  .lnx-footer-right {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 24px;
  }
  .lnx-footer-bottom {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lnx-footer-grid { grid-template-columns: 1fr; }
  .lnx-footer-right { flex-direction: row; }
}

/* ============================================================
   ALTERNATING SECTION BACKGROUNDS
   Pattern: BLACK → WHITE → BLACK → WHITE → BLACK → WHITE → BLACK
   Services(W) → Case Studies(B) → Benefits(W) → Features(B) → Testimonials(W) → FAQ(B)
   ============================================================ */

/* Body: white base so white sections are clean */
body {
  background-color: #ffffff !important;
}

/* ── Stats Band: stays dark ─────────────────── */
.lnx-stats-band {
  background: #06081a;
}

/* ══ WHITE: Services ═══════════════════════════ */
#services.section-services {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}
#services .col-left .text-secondary,
#services .text-neutral-300:not(.accordion-content *),
#services .text:not(.accordion-content *) {
  color: #52525b !important;
}
#services .accordion-content .text-body-3 {
  color: rgba(255,255,255,0.90) !important;
}
#services .tags-item {
  color: #374151 !important;
  border-color: rgba(0,0,0,0.12) !important;
}

/* ══ BLACK: Case Studies ═══════════════════════ */
.lnx-cs-stack-section {
  background: #06081a;
  padding-top: 100px;
  padding-bottom: 100px;
}
.lnx-cs-stack-section .text-secondary {
  color: rgba(255,255,255,0.55) !important;
}
/* cs-card already has dark header + white body - perfect on dark bg */

/* ══ WHITE: Benefits ═══════════════════════════ */
.section-benefits {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-benefits .heading-title {
  /* text-gradient-3 purple stays visible on white */
}
.section-benefits .text-secondary {
  color: #52525b !important;
}

/* ══ BLACK: Features ═══════════════════════════ */
.section-features {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #06081a;
}
/* Heading: purple gradient on dark bg */
.section-features .heading-title {
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.section-features .features-item .title {
  color: #ffffff !important;
}
.section-features .features-item .text-secondary,
.section-features .features-item p {
  color: rgba(255,255,255,0.62) !important;
}
.section-features .simu-electric {
  background: rgba(124,92,245,0.6) !important;
}

/* ══ WHITE: Testimonials (already #f0f1f5) ═════ */
/* .lnx-testi-section already has background:#f0f1f5 */
/* Active card is dark - inactive cards are white - great contrast on light bg ✓ */

/* ══ BLACK: FAQ ════════════════════════════════ */
.section-faqs {
  background: #06081a;
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-faqs .heading-title {
  /* text-gradient-3 looks great on dark */
}
/* Dark card for accordion items */
.section-faqs .accordion-asked-item {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  box-shadow: none !important;
}
.section-faqs .accordion-button {
  color: #ffffff !important;
  background: transparent !important;
  box-shadow: none !important;
}
.section-faqs .accordion-button:hover {
  color: #a78bfa !important;
}
.section-faqs .accordion-button:not(.collapsed) {
  color: #a78bfa !important;
}
.section-faqs .accordion-body {
  color: rgba(255,255,255,0.62) !important;
}
.section-faqs .accordion-body::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%) !important;
}

/* ══ Founding CTA: keep dark (gradient handles it) ═ */
/* .lnx-founding-section already has gradient bg */

/* ══ Ensure smooth full-width edges, no gaps ═══ */
#services.section-services,
.lnx-cs-stack-section,
.section-benefits,
.section-features,
.lnx-testi-section,
.section-faqs {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* Remove the pt-0 override on benefits/features since sections now have own padding */
.section-benefits.pt-0,
.section-features.pt-0,
.lnx-cs-stack-section.pt-0 {
  padding-top: 100px !important;
}

/* ============================================================
   FOUNDERS / TEAM SECTION - Orixy portrait-card style
   ============================================================ */
.lnx-founders-section {
  background: #06081a;
  padding: 100px 0;
}
.lnx-founders-header {
  text-align: center;
  margin-bottom: 60px;
}
.lnx-founders-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(124,92,245,0.38);
  background: rgba(124,92,245,0.10);
  color: #b3a8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lnx-founders-header .heading-title {
  font-size: clamp(32px,4vw,52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lnx-founders-sub {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.lnx-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.lnx-team-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #111827;
  cursor: pointer;
}
.lnx-tc-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.lnx-tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) brightness(0.88);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.4s ease;
}
.lnx-team-card:hover .lnx-tc-photo img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
/* Gradient overlay */
.lnx-tc-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(4,5,18,0.92) 0%,
    rgba(4,5,18,0.35) 45%,
    transparent 72%);
  pointer-events: none;
  z-index: 1;
}
/* Name & role - sits above gradient */
.lnx-tc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 28px;
  z-index: 3;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lnx-team-card:hover .lnx-tc-info {
  transform: translateY(-54px);
}
.lnx-tc-name {
  color: #ffffff !important;
  font-size: clamp(18px,2vw,22px);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}
.lnx-tc-role {
  color: #b3a8ff !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 !important;
}
/* Social bar - slides up on hover */
.lnx-tc-socials {
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #7c5cf5 0%, #4f8ef7 100%);
  padding: 14px 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  z-index: 4;
  transition: bottom 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lnx-team-card:hover .lnx-tc-socials {
  bottom: 0;
}
.lnx-tc-socials a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.lnx-tc-socials a:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  .lnx-team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

/* ============================================================
   INNER PAGES - ALTERNATING SECTION BACKGROUNDS
   Pattern per page: hero(B) → stats(B) → 1st(W) → 2nd(B) → 3rd(W) → …
   Uses .section-page-hero sibling selector (inner pages only, not home)
   Uses .box-white > div:nth-child to alternate inside service/about wrappers
   ============================================================ */

/* Stats strip on inner pages: dark to extend the black header zone */
.section-page-hero ~ .section-stats-strip {
  background: #06081a !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  position: relative;
  z-index: 1;
}
.section-page-hero ~ .section-stats-strip .stat-label {
  color: rgba(255,255,255,0.55) !important;
}

/* ── Service sections: full-width text | image split ──
   GSAP wraps each col in an overflow-hidden div, breaking Bootstrap's grid.
   We target those wrappers directly and build a full-bleed 50/50 layout. ── */
@media (min-width: 600px) {
  /* Remove section vertical padding - text column handles its own */
  .box-white .flat-spacing:has(.row.align-items-center.g-5) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Break container horizontal constraint */
  .box-white .flat-spacing .container:has(.row.align-items-center.g-5) {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Row: landscape height - fixed so image columns stay cinematic */
  .box-white .flat-spacing .row.align-items-center.g-5 {
    align-items: stretch !important;
    --bs-gutter-x: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-height: clamp(560px, 75vh, 820px) !important;
    overflow: hidden !important;
  }
  /* Each GSAP wrapper: 50% wide, constrained to row height */
  .box-white .flat-spacing .row.align-items-center.g-5 > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  /* Both inner col-lg-6 elements must fill their GSAP wrapper 100% -
     Bootstrap sets col-lg-6 to 50% at ≥992px which leaves a gap */
  .box-white .flat-spacing .row.align-items-center.g-5 > div > .col-lg-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Text col-lg-6: comfortable padding, vertically centred */
  .box-white .flat-spacing .row.align-items-center.g-5 > div:first-child .col-lg-6 {
    padding: 72px 8% 72px 9% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  /* Scale heading to readable size for the text column */
  .box-white .flat-spacing .row.align-items-center.g-5 > div:first-child h2 {
    font-size: clamp(28px, 3.2vw, 52px) !important;
    line-height: 1.2 !important;
    overflow-wrap: break-word !important;
  }
  /* Template hides <br> at ≤991px - restore it in service section headings
     so manual line breaks don't cause words to run together */
  .box-white .flat-spacing .row.align-items-center.g-5 > div:first-child h2 br {
    display: inline !important;
  }
  /* Image col-lg-6: no padding, fills wrapper */
  .box-white .flat-spacing .row.align-items-center.g-5 > div:last-child .col-lg-6 {
    padding: 0 !important;
    height: 100% !important;
  }
  /* Image: full-bleed cover within the fixed landscape row height */
  .box-white .flat-spacing .row.align-items-center.g-5 > div:last-child img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    display: block !important;
  }
}

/* ── Section dividers: clear visual gap between service sections ── */
/* border-top on the section boundary (standard selector, no override needed) */
.box-white > div + div {
  border-top: 3px solid rgba(124, 92, 245, 0.35);
}
/* padding-top override for 2nd+ sections: selector specificity (0,4,3)
   beats the zero-padding rule's (0,4,1) so we get the gap back */
.box-white > div + div.flat-spacing:has(.row.align-items-center.g-5) {
  padding-top: 40px !important;
}
@media (max-width: 599px) {
  .box-white .flat-spacing .row.align-items-center.g-5 > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .box-white .flat-spacing .row.align-items-center.g-5 > div:first-child .col-lg-6 {
    padding: 48px 5% !important;
  }
}

/* box-white sections: ODD children = WHITE, EVEN children = BLACK */
.box-white > div:nth-child(odd) {
  background: #ffffff !important;
}
.box-white > div:nth-child(even) {
  background: #06081a !important;
}

/* - WHITE (odd) sections: accordion content is only shown when expanded (dark overlay active) → white text - */
.box-white > div:nth-child(odd) .accordion-content .text {
  color: rgba(255,255,255,0.90) !important;
}
/* Tags also only visible when expanded (dark overlay) → light */
.box-white > div:nth-child(odd) .tags-item {
  color: rgba(255,255,255,0.80) !important;
  border-color: rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
}
/* Collapsed only: gray title on light card. Expanded uses template's white (on dark overlay). */
.box-white > div:nth-child(odd) .accordion-action.collapsed .accordion-title {
  color: var(--secondary) !important;
}
.box-white > div:nth-child(odd) .text-secondary {
  color: #52525b !important;
}
.box-white > div:nth-child(odd) p {
  color: #52525b !important;
}

/* - BLACK (even) sections: make text white - */
.box-white > div:nth-child(even) .text-secondary {
  color: rgba(255,255,255,0.70) !important;
}
.box-white > div:nth-child(even) p {
  color: rgba(255,255,255,0.70) !important;
}
.box-white > div:nth-child(even) h2,
.box-white > div:nth-child(even) h3,
.box-white > div:nth-child(even) h4,
.box-white > div:nth-child(even) h5 {
  color: #ffffff !important;
}
/* List item body text (span + strong inside li) */
.box-white > div:nth-child(even) li span {
  color: rgba(255,255,255,0.85) !important;
}
.box-white > div:nth-child(even) li strong {
  color: #ffffff !important;
}
/* Standalone spans (sub-labels, badges not caught above) */
.box-white > div:nth-child(even) .sub,
.box-white > div:nth-child(even) .text-body-3:not([class*="text-brand"]) {
  color: rgba(255,255,255,0.70) !important;
}
/* Accordion in dark sections: collapsed = dark text on light card, expanded = white on dark overlay */
.box-white > div:nth-child(even) .accordion-action.collapsed .accordion-title {
  color: #1e1e2e !important;
}
.box-white > div:nth-child(even) .accordion-action.collapsed .accordion-title .num {
  color: rgba(0,0,0,0.35) !important;
}
.box-white > div:nth-child(even) .accordion-action:not(.collapsed) .accordion-title {
  color: #ffffff !important;
}
.box-white > div:nth-child(even) .accordion-action:not(.collapsed) .accordion-title .num {
  color: rgba(255,255,255,0.45) !important;
}
.box-white > div:nth-child(even) .accordion-content .text {
  color: rgba(255,255,255,0.85) !important;
}
.box-white > div:nth-child(even) .accordion-faq_item {
  border-color: rgba(255,255,255,0.10) !important;
}
/* Tags in dark sections */
.box-white > div:nth-child(even) .tags-item {
  color: rgba(255,255,255,0.80) !important;
  border-color: rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
}
/* Process cards sit on light bg inside dark section - keep card text dark */
.box-white > div:nth-child(even) .process-card .title {
  color: #0b0d1e !important;
}
.box-white > div:nth-child(even) .process-card p,
.box-white > div:nth-child(even) .process-card .text-secondary {
  color: #52525b !important;
}
/* Features items sit on white cards inside dark section - keep card text dark */
.box-white > div:nth-child(even) .features-item .title {
  color: #0b0d1e !important;
}
.box-white > div:nth-child(even) .features-item .text-secondary,
.box-white > div:nth-child(even) .features-item p {
  color: #52525b !important;
}

/* Case studies page: main cards section is white */
.section-page-hero ~ .section-stats-strip ~ .cs-section {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ============================================================
   FOUNDING CLIENT SECTION - White background override
   ============================================================ */

.lnx-founding-section {
  background: #ffffff !important;
}

/* Radial glow - softer purple tint on white */
.lnx-founding-section::before {
  background: radial-gradient(ellipse at center, rgba(124,92,245,0.08) 0%, transparent 65%) !important;
}

/* Top edge to cleanly separate from black FAQ above */
.lnx-founding-section {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Badge - darker border + text for white bg */
.lnx-founding-badge {
  background: rgba(124,92,245,0.1) !important;
  border-color: rgba(124,92,245,0.35) !important;
  color: #7c5cf5 !important;
}
.lnx-founding-badge svg path {
  fill: #7c5cf5 !important;
}

/* Headline - dark on white */
.lnx-founding-headline {
  color: #0b0d1e !important;
}

/* Gradient spans ("launch rate for life", "5 slots") - same purple gradient, stays ✓ */

/* Sub paragraph - readable dark gray */
.lnx-founding-sub {
  color: #52525b !important;
}
.lnx-founding-sub strong {
  color: #0b0d1e !important;
}

/* Slot boxes - deeper purple on white */
.lnx-slot {
  border-color: rgba(124,92,245,0.45) !important;
  background: rgba(124,92,245,0.07) !important;
  color: #7c5cf5 !important;
}
.lnx-slot:hover {
  border-color: #7c5cf5 !important;
  background: rgba(124,92,245,0.14) !important;
}

/* Slots count */
.lnx-founding-count {
  color: #0b0d1e !important;
}

/* Count sub */
.lnx-founding-count-sub {
  color: #52525b !important;
}
.lnx-founding-count-sub strong {
  color: #0b0d1e !important;
}

/* CTA button - unchanged (purple gradient with white text) ✓ */

/* ============================================================
   FEATURES SECTION - Dark bg connector line + card fixes
   ============================================================ */

/* ── Feature cards: stronger presence on dark bg ── */
.section-features .features-item {
  position: relative;
  z-index: 2;
  background: #0f1127 !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.04) inset,
    0 8px 32px rgba(0,0,0,0.5) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section-features .features-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 16px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(124,92,245,0.4) !important;
}

/* ── Connector lines: purple-tinted, visible on dark ── */
.section-features .link-break-line {
  border-color: rgba(124,92,245,0.35) !important;
}
/* Cutout fill matches dark section bg */
.section-features .link-break-line::after {
  background: #06081a !important;
}
/* Horizontal center connector */
.section-features .link-break-center {
  border-color: rgba(124,92,245,0.35) !important;
}
/* End dots */
.section-features .link-break-center::before,
.section-features .link-break-center::after {
  background: #7c5cf5 !important;
  box-shadow: 0 0 8px rgba(124,92,245,0.8);
}

/* ── Animated electric pulse: more visible ── */
.section-features .simu-electric.left {
  background: linear-gradient(to right, #7c5cf5 0%, transparent 100%) !important;
  width: 70px;
  opacity: 1;
}
.section-features .simu-electric.right {
  background: linear-gradient(to left, #4f8ef7 0%, transparent 100%) !important;
  width: 70px;
  opacity: 1;
}

/* ── Center logo element: purple brand gradient ── */
.section-features .features-center {
  background: linear-gradient(135deg, #7c5cf5 0%, #4f8ef7 100%) !important;
  box-shadow:
    0 0 0 1px rgba(124,92,245,0.4),
    0 8px 40px rgba(124,92,245,0.5),
    0 2px 8px rgba(0,0,0,0.4) !important;
  border-radius: 32px;
}

/* ============================================================
   COMPACT SECOND-ROW BENEFIT CARDS
   Match height of Revenue Over Reports / One Client cards
   ============================================================ */

/* Rocket: smaller visual to match card scale */
.benefits-secure.no-div .lnx-rocket-svg {
  width: 64px;
  height: 86px;
}
.benefits-secure.no-div .lnx-rocket-glow {
  width: 100px;
  height: 100px;
}
.benefits-secure.no-div .lnx-launch-visual {
  margin-bottom: 0;
  padding: 0;
}
.benefits-secure.no-div .lnx-rocket-scene {
  padding-top: 10px;
}

/* Compact card padding */
.benefits-secure.no-div.benefits-box {
  padding: 32px !important;
}

/* Tighter timeline spacing */
.benefits-secure.no-div .lnx-launch-timeline {
  margin-top: 14px;
}
.benefits-secure.no-div .lnx-lt-info {
  padding-bottom: 10px;
}
.benefits-secure.no-div .lnx-lt-line {
  min-height: 20px;
}
.benefits-secure.no-div .lnx-lt-info strong {
  font-size: 13.5px;
}
.benefits-secure.no-div .lnx-lt-info span {
  font-size: 12px;
}

/* Compact padding on phone card to match launch card */
.lnx-phone-card.benefits-box {
  padding: 32px !important;
}

/* Phone card: scale iPhone shell + reclaim layout space.
   We define a NEW animation that bakes the scale in, because CSS
   animations always override static `transform` declarations. */
@keyframes lnxIphoneFloatScaled {
  0%, 100% { transform: scale(0.58) translateY(0)    rotate(-2.5deg); }
  50%       { transform: scale(0.58) translateY(-14px) rotate(-2.5deg); }
}

.lnx-phone-card .lnx-phone-scene {
  min-height: 270px;
  padding: 16px 12px 0 20px;
}
.lnx-phone-card .lnx-phone-scene::before {
  width: 190px;
  height: 330px;
  top: 10px;
  right: 12px;
}
.lnx-phone-card .lnx-iphone {
  animation-name: lnxIphoneFloatScaled;
  transform-origin: top right;
  margin-bottom: -238px; /* 568 * 0.42 - reclaims the scaled-away layout space */
}
.lnx-phone-caption {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 1.4px;
}

/* ============================================================
   FLUID CURSOR CANVAS
   Fixed overlay, z-index below all UI, pointer-events: none
   so it never blocks clicks, links, or scroll.
   ============================================================ */
#fluid-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* === About page: remove dark card from col-left, show image cleanly === */
.section-about-us .col-left {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: 100%;
  display: block !important;
}

/* Fix heading: remove template's negative margin, add proper gap below */
.section-about-us .heading-section {
  margin-bottom: 32px !important;
}

/* Prevent descenders (g, y) from clipping at line-height: 72px */
.section-about-us .heading-section .heading-title {
  padding-bottom: 10px;
  overflow: visible !important;
}

/* Image fills the full column height to match right card */
.section-about-us .col-left img {
  height: 100% !important;
  max-height: none !important;
  min-height: 380px;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  margin-top: 0 !important;
  border-radius: 20px !important;
  display: block;
}

/* Equal section padding top and bottom */
.section-about-us.flat-spacing {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

/* === Process card: tighten the template's 96px gaps === */
.process-card .icon {
  margin-bottom: 32px !important;
}
.process-card .content {
  margin-bottom: 32px !important;
}

/* === Process section: equal top & bottom padding === */
.box-white .section-process {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* === Services listing page: section heading top spacing === */
.box-white #seo,
.box-white #ai,
.box-white #social,
.box-white #web {
  padding-top: 72px !important;
}

/* === Services listing page: mini-stats spacing === */
.section-services .col-xxl-4 .stat-item,
.section-services .col-lg-5 .stat-item {
  margin-bottom: 28px !important;
}
.section-services .col-xxl-4 .stat-number,
.section-services .col-lg-5 .stat-number {
  margin-bottom: 4px;
  display: block;
}
/* Push stats block down from the paragraph above */
.section-services .col-xxl-4 .mt-24,
.section-services .col-lg-5 .mt-24 {
  margin-top: 52px !important;
}

/* ============================================================
   MOBILE - COMPREHENSIVE RESPONSIVE OVERHAUL
   Target: 375–767px. Smooth, touch-friendly, no horizontal scroll.
   ============================================================ */

/* ── Global: prevent horizontal overflow ── */
@media (max-width: 767px) {
  html, body { overflow-x: hidden; }

  /* Reduce all heavy section padding */
  .lnx-cs-stack-section,
  .section-benefits,
  .section-features,
  .lnx-testi-section,
  .section-faqs,
  .lnx-founding-section,
  #services.section-services {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Headings: fluid but never too large */
  .heading-title { font-size: clamp(26px, 7vw, 38px) !important; }
  .lnx-testi-headline { font-size: clamp(26px, 7vw, 36px) !important; margin-bottom: 40px; }
  .lnx-founding-headline { font-size: clamp(28px, 8vw, 42px) !important; }
  .lnx-cs-stack-section .heading-title { font-size: clamp(24px, 7vw, 36px) !important; }
}

/* ── Stats strip: 2×2 grid on small screens ── */
@media (max-width: 600px) {
  .stats-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-item {
    padding: 14px 16px;
    border-right: 1px solid #e8ebf4;
    border-bottom: 1px solid #e8ebf4;
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-item .stat-number { font-size: 24px; }
  .stat-item .stat-label { font-size: 11px; }
}

/* ── Inner page hero: tighter on mobile ── */
@media (max-width: 767px) {
  .section-page-hero { padding: 110px 0 56px; }
  .section-page-hero h1 { font-size: clamp(28px, 8vw, 42px) !important; }
  .section-page-hero .hero-sub { font-size: 15px; margin-bottom: 24px; }
}

/* ── Case study stack: full-width single card + swipeable ── */
@media (max-width: 767px) {
  .lnx-stack-wrapper { height: auto; margin-top: 36px; }
  .lnx-stack-card {
    position: relative !important;
    flex-direction: column;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  }
  .lnx-stack-card[data-pos="1"],
  .lnx-stack-card[data-pos="2"],
  .lnx-stack-card[style*="display: none"] { display: none !important; }
  .lnx-sc-image { width: 100%; height: 200px; }
  .lnx-sc-overlay { background: linear-gradient(180deg, transparent 40%, #0b0d1e 95%); }
  .lnx-sc-content { padding: 24px 20px 28px; }
  .lnx-sc-metric { font-size: 40px; }
  .lnx-sc-title { font-size: 16px; }
  .lnx-sc-stats { gap: 8px; }
  .lnx-sc-stat .n { font-size: 18px; }
  .lnx-stack-nav { margin-top: 24px; gap: 20px; }
  .lnx-stack-btn { width: 48px; height: 48px; }
}

/* ── Testimonials: full-width active card, no side peeks ── */
@media (max-width: 600px) {
  .lnx-testi-section { padding-top: 56px !important; padding-bottom: 56px !important; }
  .lnx-testi-track { height: auto; min-height: 360px; padding: 0 16px; }
  .lnx-tcard {
    width: 92vw;
    padding: 28px 22px 24px;
    border-radius: 22px;
  }
  /* Hide side cards - show only center on small screens */
  .lnx-tcard[data-pos="1"],
  .lnx-tcard[data-pos="-1"] {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateX(0) scale(0.88) !important;
  }
  .lnx-tcard-quote { font-size: 14px; line-height: 1.65; }
  .lnx-testi-nav { gap: 20px; margin-top: 24px; }
  .lnx-testi-btn { width: 48px; height: 48px; }
}

/* ── Features (Six Reasons) cards: better mobile padding ── */
@media (max-width: 767px) {
  .section-features .features-item { padding: 24px 20px !important; }
  .section-features .features-item .title { font-size: 15px !important; }
  .section-features .features-item p { font-size: 13px !important; }
}

/* ── Founding section: compact on mobile ── */
@media (max-width: 600px) {
  .lnx-founding-section { padding: 72px 20px !important; }
  .lnx-founding-slots { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .lnx-founding-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .lnx-founding-cta a { text-align: center; }
}

/* ── Contact / Strategy form: force single column ── */
@media (max-width: 640px) {
  .lnx-sf-grid { grid-template-columns: 1fr !important; }
  .lnx-git-inner { padding: 28px 18px !important; }
}

/* ── Footer: full single column on small phones ── */
@media (max-width: 480px) {
  .lnx-footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .lnx-footer-right { flex-direction: column !important; }
  .lnx-footer-about { gap: 12px; }
  .lnx-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .lnx-footer-bottom p { font-size: 11px; }
}

/* ── Blog post: sidebar always hidden, content full-width ── */
@media (max-width: 960px) {
  .lnx-post-layout { grid-template-columns: 1fr !important; }
  .lnx-post-sidebar { display: none !important; }
  .lnx-post-content { min-width: 0; padding: 0 4px; }
}

/* ── Touch targets: all interactive elements ≥44px ── */
@media (max-width: 767px) {
  .tf-btn, .tf-btn-2, .lnx-sc-link,
  .lnx-testi-btn, .lnx-stack-btn,
  .lnx-sidebar-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* CTA buttons: full width on mobile */
  .section-cta-band .tf-btn,
  .section-cta-band .tf-btn-2 {
    width: 100%;
    max-width: 320px;
  }
  .section-cta-band > .container > div[style*="display:flex"],
  .section-cta-band > .container > div[style*="display: flex"] {
    flex-direction: column;
    align-items: center;
  }
}

/* ── CTA band: stack buttons vertically ── */
@media (max-width: 520px) {
  .section-cta-band { padding: 56px 0 !important; }
  .section-cta-band h2 { font-size: clamp(24px, 7vw, 36px) !important; }
}

/* ── Smooth scrolling for in-page links on iOS ── */
@media (max-width: 767px) {
  html { -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
}

