/* ========================================
   SIANSMART LANDING PAGE V2 - MAIN CSS
   Light Theme | Mobile-First | Responsive
   ======================================== */

/* ========================================
   HERO SECTION - ANIMATED
   ======================================== */
.hero {
  position: relative;
  min-height: 80vh;
  padding: calc(var(--header-height) + var(--space-12)) var(--space-4) var(--space-16);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--page) 0%, #FFFFFF 50%, var(--page-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animated Background */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Hero Content with Entrance Animation */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto var(--space-12);
  animation: hero-fade-in-up 1s ease-out;
}

@keyframes hero-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--navy-2);
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  margin-bottom: var(--space-6);
  font-weight: 600;
  animation: tag-pulse 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

@keyframes tag-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1); }
  50% { box-shadow: 0 4px 16px rgba(30, 58, 138, 0.2); }
}

.hero h1 {
  margin-bottom: var(--space-5);
  animation: hero-text-reveal 1.2s ease-out 0.2s both;
}

@keyframes hero-text-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--sub);
  margin-bottom: var(--space-8);
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: hero-fade-in-up 1s ease-out 0.4s both;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-fade-in-up 1s ease-out 0.6s both;
}

.hero-cta-group .btn {
  position: relative;
  overflow: hidden;
}

.hero-cta-group .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-cta-group .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

/* Proof Chips - under Hero CTA */
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: var(--text-xs);
  color: var(--sub);
  backdrop-filter: blur(4px);
}

.proof-chip strong { color: var(--navy); }

/* Market Pulse Strip */
.market-pulse {
  background: linear-gradient(90deg, var(--green) 0%, #16a34a 100%);
  color: #fff;
  text-align: center;
  padding: 0.75rem var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.market-pulse .pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.market-pulse span { opacity: 0.95; }
.market-pulse strong { opacity: 1; color: #fff; }

/* Hero: Interactive Demo Search */
.hero-demo {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  animation: hero-fade-in-up 1s ease-out 0.8s both;
}

.demo-search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-search-bar:hover,
.demo-search-bar:focus {
  border-color: var(--line);
  box-shadow: 0 0 0 4px rgba(0, 185, 0, 0.12), var(--shadow-md);
}

.demo-search-text {
  color: var(--muted);
  font-size: var(--text-base);
}

.demo-search-bar .icon {
  color: var(--sub);
  width: 22px;
  height: 22px;
}

.demo-result {
  margin-top: var(--space-4);
}

.demo-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.demo-loading {
  text-align: center;
  padding: var(--space-8);
  color: var(--sub);
}

.demo-loading .spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--line);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
  padding: var(--space-20) var(--space-4);
}

.section-alt {
  background: var(--page-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.section-head h2 {
  margin-bottom: var(--space-4);
}

.section-head p {
  color: var(--sub);
  font-size: var(--text-lg);
}

/* Numbered Sections */
.section-numbered .section-container {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .section-numbered .section-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-numbered:nth-child(even) .section-content {
    order: 2;
  }
}

.section-number {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--line);
  opacity: 0.6;
  margin-bottom: var(--space-2);
}

.section-content h2 {
  margin-bottom: var(--space-4);
}

.section-content p {
  font-size: var(--text-lg);
  color: var(--sub);
}

/* ========================================
   SECTION 01: PROBLEM (Fear Flow)
   ======================================== */
.fear-flow {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
  .fear-flow {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.fear-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-4);
  text-align: center;
}

.fear-box.highlight {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}

.fear-icon {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.fear-box h4 {
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.fear-box p {
  font-size: var(--text-sm);
  margin: 0;
}

.fear-result {
  background: var(--red-light);
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: var(--space-4);
  text-align: center;
}

.fear-result h4 {
  color: #991B1B;
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.fear-result p {
  font-size: var(--text-sm);
  margin: 0;
}

/* ========================================
   SECTION 02: SOLUTION (Report Card)
   ======================================== */
.report-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.rc-car {
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.rc-sub {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-6);
}

.rc-layout {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (min-width: 480px) {
  .rc-layout {
    grid-template-columns: auto 1fr;
  }
}

.rc-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rc-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0% 87.5%, rgba(34, 197, 94, 0.12) 87.5% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rc-circle::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--card);
}

.rc-circle-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.rc-circle-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.rc-circle-denom {
  font-size: var(--text-sm);
  color: var(--muted);
}

.rc-circle-tag {
  font-size: var(--text-xs);
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rc-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.rc-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
}

.rc-check-label { color: var(--sub); }

.rc-check-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
}

.rc-check-score {
  font-weight: 700;
  font-size: var(--text-base);
  font-family: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
}

.rc-check-label {
  font-family: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
}

.rc-check-score.g4 { color: var(--green); }
.rc-check-score.g3 { color: var(--yellow); }
.rc-check-score.g2 { color: var(--red); }

.rc-repair {
  background: var(--green-light);
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rc-repair-label {
  color: var(--sub);
  font-size: var(--text-base);
}

.rc-repair-val {
  font-weight: 700;
  color: var(--green-dark);
  font-size: var(--text-lg);
}


/* ========================================
   SECTION 03: HOW IT WORKS (Knockout)
   ======================================== */
.knockout-grid {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

@media (min-width: 640px) {
  .knockout-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ko-box {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ko-box.red { border-top: 6px solid var(--red); border-left: 3px solid var(--red); }
.ko-box.yel { border-top: 6px solid var(--yellow); border-left: 3px solid var(--yellow); }
.ko-box.grn { border-top: 6px solid var(--green); border-left: 3px solid var(--green); }

.ko-box-header {
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.ko-box.red .ko-box-header { background: var(--red-light); }
.ko-box.yel .ko-box-header { background: var(--yellow-light); }
.ko-box.grn .ko-box-header { background: var(--green-light); }

.ko-icon {
  font-size: 1.5rem;
}

.ko-title {
  font-weight: 700;
  font-size: var(--text-base);
}

.ko-box.red .ko-title { color: #991B1B; }
.ko-box.yel .ko-title { color: #92400E; }
.ko-box.grn .ko-title { color: #166534; }

.ko-box-body {
  padding: var(--space-5);
}

.ko-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ko-list li {
  font-size: var(--text-base);
  color: var(--sub);
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.ko-list li::before {
  content: '›';
  flex-shrink: 0;
  font-weight: 700;
}

.ko-box.red .ko-list li::before { color: var(--red); }
.ko-box.yel .ko-list li::before { color: var(--yellow); }
.ko-box.grn .ko-list li::before { color: var(--green); }

.ko-caption {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--sub);
}

.ko-caption strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.5rem;
}

/* ========================================
   LINE SECTION
   ======================================== */
.line-section {
  background: var(--page-2);
}

.line-inner {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .line-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.line-text h2 {
  margin-bottom: var(--space-4);
}

.line-text p {
  font-size: var(--text-lg);
  color: var(--sub);
  margin-bottom: var(--space-6);
}

.line-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.line-perks li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--sub);
}

.line-perks li::before {
  content: '✓';
  color: var(--line);
  font-weight: 700;
  flex-shrink: 0;
}

.line-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* LINE Demo Steps */
.line-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.demo-step.active {
  border-color: var(--line);
  background: rgba(0, 185, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 185, 0, 0.15);
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}

.demo-step.active .step-number {
  background: var(--line);
  color: white;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sub);
}

.step-icon {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.demo-arrow {
  text-align: center;
  color: var(--line);
  font-size: 1.25rem;
  font-weight: 700;
  animation: arrow-bounce-down 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce-down {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.7; }
}

.phone-mockup {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.price-display {
  margin-bottom: var(--space-6);
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.price-period {
  font-size: var(--text-sm);
  color: var(--muted);
}

.price-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.price-features li {
  font-size: var(--text-base);
  color: var(--sub);
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.price-features .icon {
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  margin-bottom: var(--space-6);
}

.qr-section {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  margin-bottom: var(--space-4);
}

.qr-label {
  font-size: var(--text-sm);
  color: var(--sub);
  margin-bottom: var(--space-4);
}

.qr-section img {
  margin: 0 auto var(--space-2);
}

.qr-handle {
  font-size: var(--text-sm);
  color: var(--muted);
}

.price-note {
  font-size: var(--text-xs);
  color: var(--muted);
  margin: 0;
}

/* ========================================
   TRACTION SECTION
   ======================================== */
.traction-section {
  background: var(--page-2);
}

.live-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin: 0 auto var(--space-8);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: live-pulse-ring 1.8s infinite;
}

@keyframes live-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.traction-grid {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

@media (min-width: 640px) {
  .traction-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.traction-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-6) var(--space-4);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--sub);
}

/* ========================================
   TEAM SECTION - Tech meets Local
   ======================================== */
.team-section {
  padding-bottom: var(--space-12);
}

/* Local Credibility Banner */
.local-credibility {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(0, 185, 0, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 16px;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--green-dark);
}

.credibility-icon {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

/* ========================================
   FOOTER
   ========================================
   Note: Footer styles moved to footer.css
   ======================================== */

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus Visible for Accessibility */
:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

/* Selection Color */
::selection {
  background: var(--green-light);
  color: var(--green-dark);
}


/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grids */
.traction-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.traction-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.traction-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 640px) {
  .nav-cta-text {
    font-size: var(--text-xs);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-4) var(--space-12);
  }

  .qr-section {
    display: none;
  }
  
  .hero h1 {
    font-size: var(--text-3xl);
  }
  
  .section {
    padding: var(--space-12) var(--space-4);
  }
  
  .price-amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: var(--text-sm);
  }

  .report-card {
    padding: var(--space-5);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .site-header,
  .hero-background,
  .phone-mockup,
  .btn-secondary,
  .live-pulse {
    display: none !important;
  }
  
  .section {
    padding: 2rem 1rem !important;
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
}

/* ========================================
   FLOATING LINE BUTTON (mobile only)
   ======================================== */
.fab-line {
  display: none;
}

@media (max-width: 640px) {
  .fab-line {
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom));
    right: 16px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #00B900;
    color: #fff;
    border-radius: 100px;
    padding: 0.75rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 185, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .fab-line:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 185, 0, 0.45);
  }

  .fab-line svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}
