/*
Theme Name: Lawthentics Limited
Theme URI: https://lawthentics.com
Description: Custom theme for Lawthentics Limited - Legal Marketing Agency
Author: Lawthentics Limited
Version: 1.0.0
Text Domain: lawthentics
*/

/* ========================================
   CSS Variables / Brand System
   ======================================== */
:root {
  /* Brand Colors */
  --lt-dark-green: #1a3a2a;
  --lt-deep-green: #0d2818;
  --lt-teal: #006d5b;
  --lt-medium-green: #2d5a3d;
  --lt-lime: #a0d911;
  --lt-lime-light: #c5e84b;
  --lt-white: #ffffff;
  --lt-off-white: #f5f7f2;
  --lt-light-gray: #e8ebe4;
  --lt-text-dark: #1a1a1a;
  --lt-text-light: #f0f0f0;
  --lt-text-muted: #8a9a8e;

  /* Tier Metallic Colors */
  --lt-bronze: #cd7f32;
  --lt-bronze-light: #daa06d;
  --lt-silver: #c0c0c0;
  --lt-silver-light: #d8d8d8;
  --lt-gold: #d4af37;
  --lt-gold-light: #f0d060;
  --lt-platinum: #e5e4e2;
  --lt-platinum-light: #f5f5f3;

  /* Typography */
  --lt-font-heading: 'Montserrat', sans-serif;
  --lt-font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --lt-section-pad: 80px;
  --lt-container-width: 1200px;

  /* Transitions */
  --lt-transition: all 0.3s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--lt-font-body);
  color: var(--lt-text-dark);
  background: var(--lt-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lt-teal);
  text-decoration: none;
  transition: var(--lt-transition);
}

a:hover {
  color: var(--lt-lime);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lt-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lt-dark-green);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

/* ========================================
   Utility Classes
   ======================================== */
.lt-container {
  max-width: var(--lt-container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.lt-section {
  padding: var(--lt-section-pad) 0;
}

.lt-section--dark {
  background: var(--lt-deep-green);
  color: var(--lt-text-light);
}

.lt-section--dark h2,
.lt-section--dark h3,
.lt-section--dark h4 {
  color: var(--lt-white);
}

.lt-section--light {
  background: var(--lt-off-white);
}

.lt-text-center { text-align: center; }
.lt-text-lime { color: var(--lt-lime); }
.lt-text-muted { color: var(--lt-text-muted); }

.lt-subtitle {
  font-size: 1.15rem;
  color: var(--lt-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ========================================
   Buttons
   ======================================== */
.lt-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--lt-transition);
  border: 2px solid transparent;
  text-align: center;
}

.lt-btn--primary {
  background: var(--lt-lime);
  color: var(--lt-deep-green);
  border-color: var(--lt-lime);
}

.lt-btn--primary:hover {
  background: var(--lt-lime-light);
  border-color: var(--lt-lime-light);
  color: var(--lt-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(160, 217, 17, 0.4);
}

.lt-btn--outline {
  background: transparent;
  color: var(--lt-white);
  border-color: var(--lt-lime);
}

.lt-btn--outline:hover {
  background: var(--lt-lime);
  color: var(--lt-deep-green);
  transform: translateY(-2px);
}

.lt-btn--dark {
  background: var(--lt-dark-green);
  color: var(--lt-white);
  border-color: var(--lt-dark-green);
}

.lt-btn--dark:hover {
  background: var(--lt-medium-green);
  border-color: var(--lt-medium-green);
  transform: translateY(-2px);
}

/* ========================================
   Top Bar
   ======================================== */
.lt-topbar {
  background: var(--lt-dark-green);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

.lt-topbar__inner {
  max-width: var(--lt-container-width);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lt-topbar__left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.lt-topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--lt-text-muted);
  font-size: 0.8rem;
  transition: var(--lt-transition);
}

.lt-topbar__link:hover {
  color: var(--lt-lime);
}

.lt-topbar__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.lt-topbar__social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lt-topbar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  color: var(--lt-text-muted);
  transition: var(--lt-transition);
}

.lt-topbar__social a:hover {
  color: var(--lt-lime);
}

.lt-topbar__social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .lt-topbar__left {
    gap: 12px;
  }
  .lt-topbar__link span,
  .lt-topbar__social {
    display: none;
  }
}

/* ========================================
   Header / Navigation
   ======================================== */
.lt-header {
  background: var(--lt-deep-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.lt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--lt-container-width);
  margin: 0 auto;
}

.lt-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.lt-header__logo img {
  height: 40px;
  width: auto;
}

/* ── Animated Starburst Logo ── */
.lt-logo-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.lt-logo-starburst {
  width: 100%;
  height: 100%;
  animation: lt-starburst-spin 8s linear infinite;
  filter: drop-shadow(0 0 4px rgba(163, 230, 53, 0.5));
}

.lt-header__logo:hover .lt-logo-starburst {
  animation: lt-starburst-spin 2s linear infinite;
  filter: drop-shadow(0 0 12px rgba(163, 230, 53, 0.9))
         drop-shadow(0 0 24px rgba(163, 230, 53, 0.4));
}

@keyframes lt-starburst-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Glow pulse on the starburst */
.lt-logo-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.25) 0%, transparent 70%);
  animation: lt-starburst-glow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lt-starburst-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

/* Logo text */
.lt-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.lt-logo-text__main {
  font-family: var(--lt-font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #0d6b52;
  letter-spacing: -0.5px;
}

.lt-logo-text__sub {
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: #a3e635;
  letter-spacing: 1px;
  text-align: right;
}

.lt-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-nav a {
  color: var(--lt-text-light);
  font-family: var(--lt-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--lt-transition);
}

.lt-nav a:hover,
.lt-nav a.active {
  color: var(--lt-lime);
  background: rgba(160, 217, 17, 0.1);
}

.lt-nav a.lt-nav__cta {
  background: var(--lt-lime);
  color: var(--lt-deep-green);
  font-weight: 600;
  border-radius: 6px;
  margin-left: 8px;
}

.lt-nav a.lt-nav__cta:hover {
  background: var(--lt-lime-light);
  color: var(--lt-deep-green);
}

/* Mobile Menu Toggle */
.lt-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.lt-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--lt-lime);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--lt-transition);
}

/* Services Dropdown */
.lt-nav__dropdown {
  position: relative;
}

.lt-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--lt-deep-green);
  border: 1px solid rgba(160, 217, 17, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 100;
}

.lt-nav__dropdown:hover .lt-nav__dropdown-menu {
  display: block;
}

.lt-nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.9rem;
}

.lt-nav__dropdown-menu a:hover {
  background: rgba(160, 217, 17, 0.15);
}

/* ========================================
   Hero Section
   ======================================== */
.lt-hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.lt-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 217, 17, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.lt-hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.lt-hero__content {
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.lt-hero__badge {
  display: inline-block;
  background: rgba(160, 217, 17, 0.15);
  color: var(--lt-lime);
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgePulse 2.5s ease-in-out infinite;
  border: 1px solid rgba(160, 217, 17, 0.2);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(160, 217, 17, 0.3); }
  50% { box-shadow: 0 0 16px 4px rgba(160, 217, 17, 0.15); }
}

.lt-hero h1 {
  color: var(--lt-white);
  margin-bottom: 24px;
}

.lt-hero h1 span {
  color: var(--lt-lime);
}

.lt-hero p {
  color: rgba(240, 240, 240, 0.85);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.lt-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   Services Overview
   ======================================== */
.lt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.lt-service-card {
  background: var(--lt-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--lt-transition);
  border: 1px solid var(--lt-light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lt-service-card .lt-btn {
  margin-top: auto;
}

.lt-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--lt-lime);
}

.lt-service-card__preview {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.lt-service-card:hover .lt-service-card__preview {
  max-height: 120px;
  opacity: 1;
  margin: 12px 0 20px;
}

.lt-service-card__preview li {
  font-size: 0.85rem;
  color: var(--lt-teal);
  padding: 3px 0;
}

.lt-service-card__preview li::before {
  content: "\2713  ";
  color: var(--lt-lime);
  font-weight: 700;
}

.lt-service-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--lt-deep-green), var(--lt-medium-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.lt-service-card h3 {
  margin-bottom: 16px;
}

.lt-service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ========================================
   Pricing Tables
   ======================================== */
.lt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.lt-pricing-card {
  background: var(--lt-deep-green);
  border-radius: 16px;
  padding: 40px 28px;
  color: var(--lt-text-light);
  position: relative;
  overflow: hidden;
  transition: var(--lt-transition);
  border: 2px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}

.lt-pricing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-teal), var(--lt-lime));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientBorder 4s ease infinite;
}

.lt-pricing-card:hover::before {
  opacity: 1;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.lt-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.lt-pricing-card--bronze { border-color: var(--lt-bronze); }
.lt-pricing-card--silver { border-color: var(--lt-silver); }
.lt-pricing-card--gold { border-color: var(--lt-gold); }
.lt-pricing-card--platinum { border-color: var(--lt-platinum); }

.lt-pricing-card--popular {
  transform: scale(1.04);
  z-index: 2;
}

.lt-pricing-card--popular:hover {
  transform: scale(1.04) translateY(-8px);
}

.lt-pricing-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--lt-gold);
  color: var(--lt-deep-green);
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lt-pricing-card__tier {
  font-family: var(--lt-font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 4px;
}

.lt-pricing-card--bronze .lt-pricing-card__tier { color: var(--lt-bronze-light); }
.lt-pricing-card--silver .lt-pricing-card__tier { color: var(--lt-silver-light); }
.lt-pricing-card--gold .lt-pricing-card__tier { color: var(--lt-gold-light); }
.lt-pricing-card--platinum .lt-pricing-card__tier { color: var(--lt-platinum-light); }

.lt-pricing-card__subtitle {
  font-size: 0.9rem;
  color: var(--lt-text-muted);
  margin-bottom: 20px;
}

.lt-pricing-card__price {
  font-family: var(--lt-font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.lt-pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--lt-text-muted);
}

.lt-pricing-card__note {
  font-size: 0.8rem;
  color: var(--lt-text-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.lt-pricing-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.lt-pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.lt-pricing-card__features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--lt-text-light);
  opacity: 0.9;
}

.lt-pricing-card__features li::before {
  content: '\2713';
  color: var(--lt-lime);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.lt-pricing-card .lt-btn {
  width: 100%;
  margin-top: auto;
}

/* ========================================
   Bundle Savings Banner
   ======================================== */
.lt-savings-tag {
  display: inline-block;
  background: var(--lt-lime);
  color: var(--lt-deep-green);
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ========================================
   Features Comparison Table
   ======================================== */
.lt-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: var(--lt-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.lt-comparison-table th,
.lt-comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--lt-light-gray);
  font-size: 0.9rem;
}

.lt-comparison-table th {
  background: var(--lt-deep-green);
  color: var(--lt-white);
  font-family: var(--lt-font-heading);
  font-weight: 600;
}

.lt-comparison-table th:first-child,
.lt-comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.lt-comparison-table tr:nth-child(even) {
  background: var(--lt-off-white);
}

.lt-comparison-table .check {
  color: var(--lt-lime);
  font-weight: 700;
  font-size: 1.2rem;
}

.lt-comparison-table .cross {
  color: #ccc;
}

/* ========================================
   CTA Section
   ======================================== */
.lt-cta {
  background: linear-gradient(135deg, var(--lt-deep-green) 0%, var(--lt-dark-green) 100%);
  padding: 80px 0;
  text-align: center;
}

.lt-cta h2 {
  color: var(--lt-white);
  margin-bottom: 16px;
}

.lt-cta p {
  color: var(--lt-text-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Footer
   ======================================== */
.lt-footer {
  background: var(--lt-deep-green);
  color: var(--lt-text-muted);
  padding: 60px 0 30px;
  border-top: 2px solid rgba(160, 217, 17, 0.2);
}

.lt-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.lt-footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.lt-footer__brand img {
  height: 40px;
}

.lt-footer h4 {
  color: var(--lt-white);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lt-footer ul {
  list-style: none;
}

.lt-footer ul li {
  margin-bottom: 10px;
}

.lt-footer ul a {
  color: var(--lt-text-muted);
  font-size: 0.9rem;
}

.lt-footer ul a:hover {
  color: var(--lt-lime);
}

.lt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.lt-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.lt-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--lt-text-muted);
  transition: var(--lt-transition);
}

.lt-footer__social a:hover {
  background: var(--lt-lime);
  color: var(--lt-deep-green);
}

.lt-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lt-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lt-deep-green);
  color: var(--lt-text-muted);
  transition: var(--lt-transition);
}

.lt-social-link:hover {
  background: var(--lt-lime);
  color: var(--lt-deep-green);
}

.lt-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ========================================
   Contact Form
   ======================================== */
.lt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lt-contact-form {
  max-width: none;
}

.lt-contact-form h3 {
  margin-bottom: 8px;
}

.lt-contact-form__subtitle {
  color: #666;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.lt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lt-form-group {
  margin-bottom: 24px;
}

.lt-btn--full {
  width: 100%;
}

.lt-form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(160, 217, 17, 0.12);
  border: 1px solid var(--lt-lime);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: var(--lt-dark-green);
}

.lt-form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--lt-lime);
}

.lt-form-error {
  background: rgba(220, 50, 50, 0.08);
  border: 1px solid #dc3232;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #dc3232;
}

.lt-form-error a {
  color: inherit;
  text-decoration: underline;
}

/* Contact Sidebar */
.lt-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lt-contact-reasons {
  background: var(--lt-deep-green);
  border-radius: 16px;
  padding: 40px 32px;
}

.lt-contact-reasons h3 {
  color: var(--lt-white);
  margin-bottom: 24px;
}

.lt-contact-reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.lt-contact-reason:last-child {
  margin-bottom: 0;
}

.lt-contact-reason h4 {
  color: var(--lt-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.lt-contact-reason p {
  color: var(--lt-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lt-icon--sm {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
}

.lt-icon--sm svg {
  width: 24px;
  height: 24px;
}

.lt-contact-card {
  background: var(--lt-off-white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.lt-contact-card__label {
  font-family: var(--lt-font-heading);
  font-weight: 600;
  color: var(--lt-dark-green);
  margin-bottom: 8px;
}

.lt-contact-card__value {
  color: var(--lt-teal);
  font-size: 1.1rem;
  font-weight: 600;
}

.lt-contact-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.lt-hero--subpage {
  padding: 80px 0 60px;
}

.lt-hero__subtitle {
  color: var(--lt-text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.lt-form-group label {
  display: block;
  font-family: var(--lt-font-heading);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--lt-dark-green);
}

.lt-form-group input,
.lt-form-group select,
.lt-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--lt-light-gray);
  border-radius: 8px;
  font-family: var(--lt-font-body);
  font-size: 1rem;
  transition: var(--lt-transition);
  background: var(--lt-white);
}

.lt-form-group input:focus,
.lt-form-group select:focus,
.lt-form-group textarea:focus {
  outline: none;
  border-color: var(--lt-lime);
  box-shadow: 0 0 0 3px rgba(160, 217, 17, 0.2);
}

.lt-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========================================
   About Page
   ======================================== */
.lt-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lt-about-intro__text h2 {
  margin-bottom: 20px;
}

.lt-about-intro__text p {
  margin-bottom: 16px;
  color: #555;
}

.lt-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.lt-value-card {
  text-align: center;
  padding: 30px;
}

.lt-value-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lt-value-card h4 {
  margin-bottom: 12px;
}

.lt-value-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .lt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lt-pricing-card--popular {
    transform: none;
  }
  .lt-pricing-card--popular:hover {
    transform: translateY(-8px);
  }
  .lt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --lt-section-pad: 50px;
  }

  .lt-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lt-deep-green);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .lt-nav.active {
    display: flex;
  }

  .lt-nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
  }

  .lt-nav__dropdown.active .lt-nav__dropdown-menu {
    display: block;
  }

  .lt-menu-toggle {
    display: block;
  }

  .lt-hero {
    padding: 80px 0 60px;
  }

  .lt-hero h1 {
    font-size: 1.8rem;
  }

  .lt-section h2 {
    font-size: 1.5rem;
  }

  .lt-hero__buttons {
    flex-direction: column;
  }

  .lt-services-grid,
  .lt-values-grid {
    grid-template-columns: 1fr;
  }

  .lt-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lt-about-intro {
    grid-template-columns: 1fr;
  }

  .lt-footer__grid {
    grid-template-columns: 1fr;
  }

  .lt-comparison-table {
    font-size: 0.8rem;
  }

  .lt-comparison-table th,
  .lt-comparison-table td {
    padding: 10px 8px;
  }

  .lt-stats-bar__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .lt-process-grid {
    grid-template-columns: 1fr !important;
  }

  .lt-faq-grid {
    grid-template-columns: 1fr !important;
  }

  .lt-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lt-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ========================================
   Skip to Content
   ======================================== */
.lt-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--lt-lime);
  color: var(--lt-deep-green);
  font-family: var(--lt-font-heading);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.lt-skip-link:focus {
  top: 0;
}

/* ========================================
   Focus States
   ======================================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lt-lime);
  outline-offset: 2px;
}

.lt-social-link:focus-visible,
.lt-footer__social a:focus-visible,
.lt-topbar__social a:focus-visible {
  outline: 2px solid var(--lt-lime);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lt-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */
.lt-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lt-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Keep popular card scale after reveal */
.lt-pricing-card--popular.lt-revealed {
  transform: scale(1.04);
}

/* ========================================
   Animated Hero Gradient
   ======================================== */
.lt-hero {
  background: linear-gradient(-45deg,
    var(--lt-deep-green),
    var(--lt-dark-green),
    #0b3020,
    var(--lt-deep-green),
    #102e1e
  );
  background-size: 400% 400%;
  animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.lt-hero--animated::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--lt-white), transparent);
  pointer-events: none;
}

/* ========================================
   Header Shrink on Scroll
   ======================================== */
.lt-header {
  transition: all 0.3s ease;
}

/* ========================================
   Metallic Glow Hover on Pricing Cards
   ======================================== */
.lt-pricing-card--bronze:hover {
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 40px rgba(205, 127, 50, 0.25),
    inset 0 1px 0 rgba(205, 127, 50, 0.3);
  border-color: var(--lt-bronze-light);
}

.lt-pricing-card--silver:hover {
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 40px rgba(192, 192, 192, 0.25),
    inset 0 1px 0 rgba(192, 192, 192, 0.3);
  border-color: var(--lt-silver-light);
}

.lt-pricing-card--gold:hover {
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 40px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(212, 175, 55, 0.3);
  border-color: var(--lt-gold-light);
}

.lt-pricing-card--platinum:hover {
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 40px rgba(229, 228, 226, 0.2),
    inset 0 1px 0 rgba(229, 228, 226, 0.3);
  border-color: var(--lt-platinum-light);
}

/* Metallic shimmer on tier name */
.lt-pricing-card:hover .lt-pricing-card__tier {
  text-shadow: 0 0 20px currentColor;
}

/* ========================================
   Stats Bar
   ======================================== */
.lt-stats-bar {
  background: var(--lt-deep-green);
  padding: 50px 0;
  border-top: 1px solid rgba(160, 217, 17, 0.15);
  border-bottom: 1px solid rgba(160, 217, 17, 0.15);
}

.lt-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.lt-stats-bar__item {
  padding: 10px;
}

.lt-stats-bar__number {
  font-family: var(--lt-font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--lt-lime);
  line-height: 1.1;
  margin-bottom: 8px;
  animation: statsGlow 3s ease-in-out infinite;
}

@keyframes statsGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(160, 217, 17, 0.3); }
  50% { text-shadow: 0 0 20px rgba(160, 217, 17, 0.6), 0 0 40px rgba(160, 217, 17, 0.2); }
}

.lt-stats-bar__label {
  font-size: 0.95rem;
  color: var(--lt-text-muted);
  font-weight: 500;
}

/* ========================================
   How It Works / Process Steps
   ======================================== */
.lt-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.lt-process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}

.lt-process-step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-lime-light));
  color: var(--lt-deep-green);
  font-family: var(--lt-font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(160, 217, 17, 0.3);
}

.lt-process-step h4 {
  margin-bottom: 12px;
  color: var(--lt-dark-green);
}

.lt-process-step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Connector line between steps */
.lt-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--lt-lime), rgba(160, 217, 17, 0.2));
}

/* ========================================
   FAQ Accordion
   ======================================== */
.lt-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.lt-faq-item {
  background: var(--lt-white);
  border: 1px solid var(--lt-light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--lt-transition);
}

.lt-faq-item:hover {
  border-color: rgba(160, 217, 17, 0.4);
}

.lt-faq-item.active {
  border-color: var(--lt-lime);
  box-shadow: 0 4px 20px rgba(160, 217, 17, 0.1);
}

.lt-faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lt-dark-green);
  transition: var(--lt-transition);
}

.lt-faq-question:hover {
  color: var(--lt-teal);
}

.lt-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--lt-lime);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.lt-faq-item.active .lt-faq-question::after {
  transform: rotate(45deg);
}

.lt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.3s ease;
  padding: 0 24px;
}

.lt-faq-item.active .lt-faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
}

.lt-faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ========================================
   SVG Icon Containers
   ======================================== */
.lt-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--lt-deep-green), var(--lt-medium-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--lt-transition);
}

.lt-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--lt-lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lt-service-card:hover .lt-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(160, 217, 17, 0.2);
}

/* ========================================
   Gradient Hero Text
   ======================================== */
.lt-gradient-text {
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-lime-light), #e0f590, var(--lt-lime));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
}

@keyframes gradientText {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ========================================
   Button Micro-Interactions
   ======================================== */
.lt-btn--primary,
.lt-btn--outline,
.lt-btn--dark {
  position: relative;
  overflow: hidden;
}

.lt-btn--primary::after,
.lt-btn--dark::after {
  content: '\2192';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.lt-btn--primary:hover,
.lt-btn--dark:hover {
  padding-right: 50px;
}

.lt-btn--primary:hover::after,
.lt-btn--dark:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ========================================
   Floating CTA Button
   ======================================== */
.lt-floating-cta {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.lt-floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lt-floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--lt-lime);
  color: var(--lt-deep-green);
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(160, 217, 17, 0.4), 0 4px 12px rgba(0,0,0,0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lt-floating-cta a:hover {
  background: var(--lt-lime-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(160, 217, 17, 0.5), 0 6px 16px rgba(0,0,0,0.2);
  color: var(--lt-deep-green);
}

.lt-floating-cta a svg {
  width: 18px;
  height: 18px;
  stroke: var(--lt-deep-green);
  fill: none;
  stroke-width: 2;
}

/* Pulse ring */
.lt-floating-cta a::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50px;
  border: 2px solid var(--lt-lime);
  opacity: 0;
  animation: floatingPulse 2.5s ease-in-out infinite;
}

@keyframes floatingPulse {
  0%   { opacity: 0; transform: scale(1); }
  50%  { opacity: 0.4; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* ========================================
   Dot Grid Pattern Background
   ======================================== */
.lt-pattern {
  position: relative;
}

.lt-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(160, 217, 17, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.lt-pattern > * {
  position: relative;
  z-index: 1;
}

/* Dark variant */
.lt-pattern--dark::before {
  background-image: radial-gradient(circle, rgba(160, 217, 17, 0.04) 1px, transparent 1px);
}

/* ========================================
   Platform Cards (Social Media Page)
   ======================================== */
.lt-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.lt-platform-card:hover {
  background: rgba(160, 217, 17, 0.08);
  border-color: rgba(160, 217, 17, 0.25);
  transform: translateY(-4px);
}

.lt-platform-icon {
  width: 48px;
  height: 48px;
  color: var(--lt-lime);
  transition: all 0.3s ease;
}

.lt-platform-card:hover .lt-platform-icon {
  color: var(--lt-lime-light);
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(160, 217, 17, 0.4));
}

.lt-platform-card span {
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--lt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.lt-platform-card:hover span {
  color: var(--lt-white);
}

@media (max-width: 768px) {
  .lt-services-grid[style*="repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ========================================
   Testimonials
   ======================================== */
.lt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.lt-testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  transition: var(--lt-transition);
}

.lt-testimonial:hover {
  border-color: rgba(160, 217, 17, 0.3);
  transform: translateY(-4px);
}

.lt-testimonial__stars {
  color: var(--lt-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.lt-testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--lt-text-light);
  opacity: 0.9;
  margin-bottom: 24px;
  font-style: italic;
}

.lt-testimonial__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--lt-lime);
  opacity: 0.3;
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}

.lt-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lt-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--lt-deep-green);
  flex-shrink: 0;
}

.lt-testimonial__name {
  font-family: var(--lt-font-heading);
  font-weight: 600;
  color: var(--lt-white);
  font-size: 0.95rem;
}

.lt-testimonial__role {
  font-size: 0.8rem;
  color: var(--lt-text-muted);
}

/* ========================================
   Trusted By / Practice Areas Bar
   ======================================== */
.lt-trusted-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--lt-light-gray);
}

.lt-trusted-bar__label {
  text-align: center;
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lt-text-muted);
  margin-bottom: 24px;
}

.lt-trusted-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lt-trusted-bar__item {
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lt-dark-green);
  opacity: 0.5;
  transition: var(--lt-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-trusted-bar__item:hover {
  opacity: 1;
}

.lt-trusted-bar__item svg {
  width: 22px;
  height: 22px;
  stroke: var(--lt-teal);
  fill: none;
  stroke-width: 1.5;
}

/* ========================================
   Responsive Additions
   ======================================== */
@media (max-width: 768px) {
  .lt-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lt-floating-cta {
    bottom: 16px;
    left: 16px;
    right: auto;
  }

  .lt-floating-cta a {
    font-size: 0.8rem;
    padding: 12px 20px;
  }

  .lt-trusted-bar__items {
    gap: 20px;
  }

  .lt-trusted-bar__item {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .lt-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   Chatbot Widget
   ======================================== */
#lt-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--lt-font-body);
}

/* Toggle Button */
.lt-chatbot__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-lime-light));
  color: var(--lt-deep-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(160, 217, 17, 0.4);
  transition: var(--lt-transition);
  position: relative;
  z-index: 2;
}

.lt-chatbot__toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(160, 217, 17, 0.5);
}

.lt-chatbot__toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lt-chatbot__icon-chat {
  fill: currentColor !important;
  stroke: none !important;
}

.lt-chatbot__icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

.lt-chatbot--open .lt-chatbot__icon-chat {
  opacity: 0;
  transform: rotate(90deg);
}

.lt-chatbot--open .lt-chatbot__icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Chat Window */
.lt-chatbot__window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: var(--lt-deep-green);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-chatbot--open .lt-chatbot__window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.lt-chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--lt-dark-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-chatbot__header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lt-chatbot__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-lime-light));
  color: var(--lt-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.lt-chatbot__header-name {
  color: var(--lt-white);
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.lt-chatbot__header-status {
  color: var(--lt-text-muted);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lt-chatbot__status-dot {
  width: 7px;
  height: 7px;
  background: var(--lt-lime);
  border-radius: 50%;
  display: inline-block;
  animation: chatPulse 2s ease infinite;
}

@keyframes chatPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lt-chatbot__close {
  background: none;
  border: none;
  color: var(--lt-text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--lt-transition);
}

.lt-chatbot__close:hover {
  color: var(--lt-white);
}

.lt-chatbot__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

/* Messages Area */
.lt-chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  max-height: 280px;
  scrollbar-width: thin;
  scrollbar-color: var(--lt-medium-green) transparent;
}

.lt-chatbot__messages::-webkit-scrollbar {
  width: 4px;
}

.lt-chatbot__messages::-webkit-scrollbar-thumb {
  background: var(--lt-medium-green);
  border-radius: 2px;
}

/* Bubbles */
.lt-chatbot__bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 85%;
  animation: chatBubbleIn 0.3s ease;
  word-wrap: break-word;
}

@keyframes chatBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lt-chatbot__bubble--bot {
  background: var(--lt-dark-green);
  color: var(--lt-text-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.lt-chatbot__bubble--user {
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-lime-light));
  color: var(--lt-deep-green);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

/* Typing Indicator */
.lt-chatbot__typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 18px;
}

.lt-chatbot__typing span {
  width: 6px;
  height: 6px;
  background: var(--lt-text-muted);
  border-radius: 50%;
  animation: chatTypingDot 1.4s ease infinite;
}

.lt-chatbot__typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.lt-chatbot__typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chatTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Quick Reply Options */
.lt-chatbot__options {
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lt-chatbot__option {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(160, 217, 17, 0.3);
  background: rgba(160, 217, 17, 0.08);
  color: var(--lt-lime);
  font-size: 0.8rem;
  font-family: var(--lt-font-body);
  cursor: pointer;
  transition: var(--lt-transition);
  animation: chatBubbleIn 0.3s ease;
}

.lt-chatbot__option:hover {
  background: rgba(160, 217, 17, 0.18);
  border-color: var(--lt-lime);
}

/* Bottom Input Bar */
.lt-chatbot__input {
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 8px;
}

.lt-chatbot__faq-btn,
.lt-chatbot__restart-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lt-text-muted);
  font-size: 0.78rem;
  font-family: var(--lt-font-body);
  cursor: pointer;
  transition: var(--lt-transition);
}

.lt-chatbot__faq-btn:hover,
.lt-chatbot__restart-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lt-text-light);
}

/* Mobile */
@media (max-width: 480px) {
  #lt-chatbot {
    bottom: 16px;
    right: 16px;
  }

  .lt-chatbot__window {
    width: calc(100vw - 32px);
    max-height: 70vh;
    right: 0;
    bottom: 68px;
  }

  .lt-chatbot__toggle {
    width: 50px;
    height: 50px;
  }
}

/* ========================================
   Exit Intent Popup
   ======================================== */
.lt-exit {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lt-exit--visible {
  opacity: 1;
  pointer-events: auto;
}

.lt-exit__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.lt-exit__modal {
  position: relative;
  background: var(--lt-deep-green);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(160, 217, 17, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lt-exit--visible .lt-exit__modal {
  transform: translateY(0) scale(1);
}

.lt-exit__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--lt-text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--lt-transition);
}

.lt-exit__close:hover {
  color: var(--lt-white);
}

.lt-exit__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.lt-exit__badge {
  display: inline-block;
  background: rgba(160, 217, 17, 0.15);
  color: var(--lt-lime);
  font-family: var(--lt-font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.lt-exit__title {
  color: var(--lt-white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.lt-exit__title span {
  color: var(--lt-lime);
}

.lt-exit__text {
  color: var(--lt-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.lt-exit__fields {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.lt-exit__fields input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lt-white);
  font-family: var(--lt-font-body);
  font-size: 0.9rem;
  transition: var(--lt-transition);
}

.lt-exit__fields input::placeholder {
  color: var(--lt-text-muted);
}

.lt-exit__fields input:focus {
  outline: none;
  border-color: var(--lt-lime);
  box-shadow: 0 0 0 3px rgba(160, 217, 17, 0.15);
}

.lt-exit__submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--lt-lime), var(--lt-lime-light));
  color: var(--lt-deep-green);
  font-family: var(--lt-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--lt-transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lt-exit__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 217, 17, 0.35);
}

.lt-exit__note {
  color: var(--lt-text-muted);
  font-size: 0.75rem;
  margin-top: 14px;
  opacity: 0.7;
}

.lt-exit__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: chatBubbleIn 0.4s ease;
}

.lt-exit__success svg {
  width: 48px;
  height: 48px;
  color: var(--lt-lime);
}

.lt-exit__success h3 {
  color: var(--lt-white);
  font-size: 1.3rem;
}

.lt-exit__success p {
  color: var(--lt-text-muted);
}

@media (max-width: 480px) {
  .lt-exit__modal {
    padding: 36px 24px;
  }

  .lt-exit__title {
    font-size: 1.4rem;
  }

  .lt-exit__fields {
    flex-direction: column;
  }
}

/* ========================================
   Typewriter Effect
   ======================================== */
.lt-typewriter::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
  color: var(--lt-lime);
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ========================================
   Floating Particles
   ======================================== */
.lt-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.lt-particle {
  position: absolute;
  background: var(--lt-lime);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.4;
    transform: translateY(-10px) scale(1);
  }
  90% {
    opacity: 0.2;
    transform: translateY(-80px) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0);
  }
}

/* ========================================
   Testimonial Marquee
   ======================================== */
.lt-marquee {
  overflow: hidden;
  margin-top: 50px;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.lt-marquee__track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

.lt-marquee:hover .lt-marquee__track {
  animation-play-state: paused;
}

.lt-marquee__card {
  flex-shrink: 0;
  width: 380px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.lt-marquee__card:hover {
  border-color: rgba(160, 217, 17, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.lt-marquee__quote {
  color: var(--lt-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin: 12px 0 20px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .lt-marquee__card {
    width: 300px;
  }
}
