/*
Theme Name: Au LLC Management Consulting
Theme URI: https://auconsults.com
Author: Au LLC
Author URI: https://auconsults.com
Description: A modern management consulting theme for Au LLC featuring CSS visuals (static on homepage/hero, animated in content sections), responsive design, and WCAG 2.1/2.2 accessibility compliance.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aullc
Tags: consulting, business, modern, responsive, accessibility-ready
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --aullc-navy: #0A1628;
  --aullc-navy-light: #1a2744;
  --aullc-gold: #E2C044;
  --aullc-gold-light: #F0D060;
  --aullc-gold-dark: #c9a93c;
  --aullc-teal: #0D9488;
  --aullc-teal-light: #14B8A6;
  --aullc-gray: #64748B;
  --aullc-gray-light: #94A3B8;
  --aullc-white: #FFFFFF;
  --aullc-off-white: #F8FAFC;
  --aullc-dark: #1E293B;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--aullc-dark);
  background: var(--aullc-white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* ==========================================================================
   Header
   ========================================================================== */
.aullc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.aullc-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aullc-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.aullc-logo img {
  height: 44px;
  width: auto;
}

.aullc-logo-text {
  display: flex;
  flex-direction: column;
}

.aullc-logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--aullc-navy);
  line-height: 1.2;
}

.aullc-logo-tagline {
  font-size: 0.65rem;
  color: var(--aullc-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.aullc-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.aullc-nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.aullc-nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--aullc-gray);
  padding: 8px 0;
  position: relative;
}

.aullc-nav-link:hover,
.aullc-nav-link.active {
  color: var(--aullc-navy);
}

.aullc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aullc-gold), var(--aullc-teal));
  transition: width 0.3s ease;
}

.aullc-nav-link:hover::after,
.aullc-nav-link.active::after {
  width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.aullc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.aullc-btn-primary {
  background: linear-gradient(135deg, var(--aullc-navy) 0%, var(--aullc-navy-light) 100%);
  color: var(--aullc-white);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.25);
}

.aullc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 22, 40, 0.35);
}

.aullc-btn-secondary {
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-dark) 100%);
  color: var(--aullc-navy);
  box-shadow: 0 4px 15px rgba(226, 192, 68, 0.35);
}

.aullc-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 192, 68, 0.45);
}

.aullc-btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--aullc-white);
}

.aullc-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.aullc-btn-outline {
  background: transparent;
  border: 2px solid var(--aullc-navy);
  color: var(--aullc-navy);
}

.aullc-btn-outline:hover {
  background: var(--aullc-navy);
  color: var(--aullc-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.aullc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--aullc-navy);
  overflow: hidden;
  padding-top: 76px;
}

.aullc-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(226, 192, 68, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(13, 148, 136, 0.15) 0%, transparent 50%);
}

.aullc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--aullc-white);
}

.aullc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.aullc-hero-badge img {
  height: 36px;
  width: auto;
}

.aullc-hero-badge span {
  color: var(--aullc-gold);
  font-weight: 600;
  font-size: 1rem;
}

.aullc-hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 28px;
  font-weight: 800;
}

.aullc-text-gradient {
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aullc-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}

.aullc-hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   STATIC CSS VISUALS (Homepage Service Cards)
   ========================================================================== */
.aullc-service-animation {
  width: 100%;
  height: 120px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Static Browser Visual */
.aullc-web-browser {
  width: 140px;
  height: 100px;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.aullc-web-dots {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #e2e8f0;
}

.aullc-web-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.aullc-web-dots span:first-child { background: #ef4444; }
.aullc-web-dots span:nth-child(2) { background: #eab308; }
.aullc-web-dots span:nth-child(3) { background: #22c55e; }

.aullc-web-content {
  padding: 8px;
}

.aullc-web-nav {
  height: 8px;
  background: linear-gradient(90deg, var(--aullc-teal) 30%, transparent 30%);
  border-radius: 4px;
  margin-bottom: 6px;
}

.aullc-web-hero {
  height: 24px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  border-radius: 4px;
  margin-bottom: 6px;
}

.aullc-web-grid {
  display: flex;
  gap: 4px;
}

.aullc-web-grid div {
  flex: 1;
  height: 20px;
  background: #e2e8f0;
  border-radius: 3px;
}

/* Static Chart Visual */
.aullc-chart-container {
  width: 140px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding-bottom: 10px;
}

.aullc-chart-bar {
  width: 24px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--aullc-gold) 0%, var(--aullc-gold-dark) 100%);
}

.aullc-bar-1 { height: 40px; }
.aullc-bar-2 { height: 70px; }
.aullc-bar-3 { height: 55px; }
.aullc-bar-4 { height: 85px; }

/* Static People Visual */
.aullc-ux-container {
  width: 140px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aullc-ux-person {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aullc-person-1 { left: 25px; }
.aullc-person-2 { right: 25px; }

.aullc-person-head {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  margin-bottom: 4px;
}

.aullc-person-body {
  width: 36px;
  height: 44px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, var(--aullc-teal) 0%, #0f766e 100%);
}

.aullc-ux-speech {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: var(--aullc-gold);
  border-radius: 10px;
}

/* Static Solar Visual */
.aullc-solar-container {
  width: 140px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aullc-sun-core {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-dark) 100%);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 30px rgba(226, 192, 68, 0.5);
}

.aullc-sun-ray {
  position: absolute;
  width: 4px;
  height: 16px;
  background: var(--aullc-gold);
  border-radius: 2px;
  top: 35px;
  left: 50%;
  transform-origin: center 0;
}

.aullc-ray-1 { transform: translateX(-50%) rotate(0deg) translateY(-42px); }
.aullc-ray-2 { transform: translateX(-50%) rotate(45deg) translateY(-42px); }
.aullc-ray-3 { transform: translateX(-50%) rotate(90deg) translateY(-42px); }
.aullc-ray-4 { transform: translateX(-50%) rotate(135deg) translateY(-42px); }
.aullc-ray-5 { transform: translateX(-50%) rotate(180deg) translateY(-42px); }
.aullc-ray-6 { transform: translateX(-50%) rotate(225deg) translateY(-42px); }
.aullc-ray-7 { transform: translateX(-50%) rotate(270deg) translateY(-42px); }
.aullc-ray-8 { transform: translateX(-50%) rotate(315deg) translateY(-42px); }

.aullc-solar-panel {
  position: absolute;
  bottom: 5px;
  width: 80px;
  height: 24px;
  background: linear-gradient(180deg, #1e3a5f 0%, #0f172a 100%);
  border-radius: 3px;
}

/* ==========================================================================
   STATIC HERO VISUALS (Service Page Heroes)
   ========================================================================== */
.aullc-sp-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

/* Static Browser (Web Design Hero) */
.aullc-hero-browser {
  width: 220px;
  height: 160px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.aullc-hero-browser-dots {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #e2e8f0;
}

.aullc-hero-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.aullc-hero-browser-dots span:first-child { background: #ef4444; }
.aullc-hero-browser-dots span:nth-child(2) { background: #eab308; }
.aullc-hero-browser-dots span:nth-child(3) { background: #22c55e; }

.aullc-hero-browser-content {
  padding: 12px;
}

.aullc-hero-browser-nav {
  height: 12px;
  background: linear-gradient(90deg, var(--aullc-teal) 30%, transparent 30%);
  border-radius: 6px;
  margin-bottom: 10px;
}

.aullc-hero-browser-hero {
  height: 40px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  border-radius: 6px;
  margin-bottom: 10px;
}

.aullc-hero-browser-grid {
  display: flex;
  gap: 6px;
}

.aullc-hero-browser-grid div {
  flex: 1;
  height: 30px;
  background: #e2e8f0;
  border-radius: 4px;
}

/* Static Chart (Market Research Hero) */
.aullc-hero-chart {
  width: 200px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding-bottom: 20px;
}

.aullc-hero-chart-bar {
  width: 36px;
  border-radius: 6px 6px 0 0;
  background: var(--aullc-navy);
}

.aullc-hcb-1 { height: 60px; }
.aullc-hcb-2 { height: 100px; }
.aullc-hcb-3 { height: 80px; }
.aullc-hcb-4 { height: 120px; }

/* Static People (UX Research Hero) */
.aullc-hero-people {
  width: 200px;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aullc-hero-person {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aullc-hp-1 { left: 30px; }
.aullc-hp-2 { right: 30px; }

.aullc-hero-person-head {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  margin-bottom: 6px;
}

.aullc-hero-person-body {
  width: 50px;
  height: 60px;
  border-radius: 25px 25px 10px 10px;
  background: white;
}

.aullc-hero-speech {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: var(--aullc-gold);
  border-radius: 15px;
}

/* Static Solar (Solar Design Hero) */
.aullc-hero-solar {
  width: 200px;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aullc-hero-sun {
  width: 70px;
  height: 70px;
  background: var(--aullc-navy);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.aullc-hero-ray {
  position: absolute;
  width: 6px;
  height: 20px;
  background: var(--aullc-navy);
  border-radius: 3px;
  top: 50px;
  left: 50%;
  transform-origin: center 0;
}

.aullc-hr-1 { transform: translateX(-50%) rotate(0deg) translateY(-55px); }
.aullc-hr-2 { transform: translateX(-50%) rotate(45deg) translateY(-55px); }
.aullc-hr-3 { transform: translateX(-50%) rotate(90deg) translateY(-55px); }
.aullc-hr-4 { transform: translateX(-50%) rotate(135deg) translateY(-55px); }
.aullc-hr-5 { transform: translateX(-50%) rotate(180deg) translateY(-55px); }
.aullc-hr-6 { transform: translateX(-50%) rotate(225deg) translateY(-55px); }
.aullc-hr-7 { transform: translateX(-50%) rotate(270deg) translateY(-55px); }
.aullc-hr-8 { transform: translateX(-50%) rotate(315deg) translateY(-55px); }

.aullc-hero-panel {
  position: absolute;
  bottom: 10px;
  width: 120px;
  height: 35px;
  background: var(--aullc-navy);
  border-radius: 4px;
}

/* ==========================================================================
   LARGE ANIMATED VISUALS (Service Page Content Sections)
   ========================================================================== */
.aullc-sp-markets-visual {
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aullc-visual-teal {
  background: linear-gradient(135deg, var(--aullc-teal) 0%, #0f766e 100%);
}

.aullc-visual-gold {
  background: linear-gradient(135deg, var(--aullc-gold) 0%, #ca9a04 100%);
}

/* Large Animated Browser */
.aullc-large-browser {
  width: 280px;
  height: 200px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: floatBrowser 4s ease-in-out infinite;
}

.aullc-large-browser-dots {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #e2e8f0;
}

.aullc-large-browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.aullc-large-browser-dots span:first-child { background: #ef4444; }
.aullc-large-browser-dots span:nth-child(2) { background: #eab308; }
.aullc-large-browser-dots span:nth-child(3) { background: #22c55e; }

.aullc-large-browser-content {
  padding: 16px;
}

.aullc-large-browser-nav {
  height: 14px;
  background: linear-gradient(90deg, var(--aullc-teal) 30%, transparent 30%);
  border-radius: 7px;
  margin-bottom: 12px;
  animation: pulseElement 2s ease-in-out infinite;
}

.aullc-large-browser-hero {
  height: 50px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  border-radius: 8px;
  margin-bottom: 12px;
  animation: pulseElement 2.5s ease-in-out infinite;
}

.aullc-large-browser-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.aullc-large-browser-grid div {
  flex: 1;
  height: 35px;
  background: #e2e8f0;
  border-radius: 6px;
  animation: pulseElement 2s ease-in-out infinite;
}

.aullc-large-browser-grid div:nth-child(2) { animation-delay: 0.2s; }
.aullc-large-browser-grid div:nth-child(3) { animation-delay: 0.4s; }

.aullc-large-browser-text div {
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  margin-bottom: 8px;
}

.aullc-large-browser-text div:last-child {
  width: 60%;
}

/* Large Animated Chart */
.aullc-large-chart {
  width: 280px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding-bottom: 30px;
  position: relative;
}

.aullc-large-chart-bar {
  width: 40px;
  border-radius: 8px 8px 0 0;
  background: var(--aullc-navy);
}

.aullc-lcb-1 { height: 60px; animation: growBar1 2.5s ease-in-out infinite; }
.aullc-lcb-2 { height: 100px; animation: growBar2 2.5s ease-in-out infinite 0.2s; }
.aullc-lcb-3 { height: 80px; animation: growBar3 2.5s ease-in-out infinite 0.4s; }
.aullc-lcb-4 { height: 130px; animation: growBar4 2.5s ease-in-out infinite 0.6s; }
.aullc-lcb-5 { height: 95px; animation: growBar5 2.5s ease-in-out infinite 0.8s; }

.aullc-large-chart-line {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--aullc-navy), transparent);
  animation: pulseLine 2s ease-in-out infinite;
}

/* Large Animated UX Screens */
.aullc-large-ux {
  width: 320px;
  height: 340px;
  position: relative;
}

.aullc-large-screen {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}

.aullc-ls-1 {
  width: 200px;
  height: 260px;
  left: 0;
  top: 40px;
  animation: floatScreen1 4s ease-in-out infinite;
}

.aullc-ls-2 {
  width: 180px;
  height: 220px;
  right: 0;
  top: 80px;
  animation: floatScreen2 4s ease-in-out infinite;
  animation-delay: -2s;
}

.aullc-large-screen-header {
  height: 35px;
  background: linear-gradient(90deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
}

.aullc-large-screen-content {
  padding: 18px;
}

.aullc-large-screen-line {
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  margin-bottom: 12px;
  animation: pulseElement 2s ease-in-out infinite;
}

.aullc-large-screen-line.aullc-short {
  width: 60%;
}

.aullc-large-screen-box {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.25) 100%);
  border-radius: 10px;
  margin-top: 20px;
  animation: pulseBox 3s ease-in-out infinite;
}

.aullc-large-screen-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-light) 100%);
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: pulseCircle 2s ease-in-out infinite;
}

.aullc-large-cursor {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--aullc-gold);
  border-radius: 50%;
  bottom: 70px;
  right: 90px;
  box-shadow: 0 6px 20px rgba(226, 192, 68, 0.5);
  animation: moveCursor 4s ease-in-out infinite;
}

/* Large Animated Solar */
.aullc-large-solar {
  width: 280px;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aullc-large-sun {
  width: 100px;
  height: 100px;
  background: var(--aullc-navy);
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 50px rgba(10, 22, 40, 0.4);
  animation: pulseSun 2.5s ease-in-out infinite;
}

.aullc-large-ray {
  position: absolute;
  width: 8px;
  height: 28px;
  background: var(--aullc-navy);
  border-radius: 4px;
  top: 80px;
  left: 50%;
  transform-origin: center 0;
}

.aullc-lr-1 { transform: translateX(-50%) rotate(0deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite; }
.aullc-lr-2 { transform: translateX(-50%) rotate(45deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 0.15s; }
.aullc-lr-3 { transform: translateX(-50%) rotate(90deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 0.3s; }
.aullc-lr-4 { transform: translateX(-50%) rotate(135deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 0.45s; }
.aullc-lr-5 { transform: translateX(-50%) rotate(180deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 0.6s; }
.aullc-lr-6 { transform: translateX(-50%) rotate(225deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 0.75s; }
.aullc-lr-7 { transform: translateX(-50%) rotate(270deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 0.9s; }
.aullc-lr-8 { transform: translateX(-50%) rotate(315deg) translateY(-75px); animation: rayPulse 2.5s ease-in-out infinite 1.05s; }

.aullc-large-panel {
  position: absolute;
  bottom: 20px;
  width: 160px;
  height: 50px;
  background: var(--aullc-navy);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 6px;
}

.aullc-panel-cell {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  animation: pulseCell 2s ease-in-out infinite;
}

.aullc-panel-cell:nth-child(2) { animation-delay: 0.2s; }
.aullc-panel-cell:nth-child(3) { animation-delay: 0.4s; }
.aullc-panel-cell:nth-child(4) { animation-delay: 0.6s; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes floatBrowser {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

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

@keyframes growBar1 { 0%, 100% { height: 60px; } 50% { height: 75px; } }
@keyframes growBar2 { 0%, 100% { height: 100px; } 50% { height: 85px; } }
@keyframes growBar3 { 0%, 100% { height: 80px; } 50% { height: 110px; } }
@keyframes growBar4 { 0%, 100% { height: 130px; } 50% { height: 105px; } }
@keyframes growBar5 { 0%, 100% { height: 95px; } 50% { height: 120px; } }

@keyframes pulseLine {
  0%, 100% { opacity: 0.4; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes floatScreen1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
}

@keyframes floatScreen2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-18px) rotate(0deg); }
}

@keyframes pulseBox {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes pulseCircle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes moveCursor {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-35px, -25px); }
  50% { transform: translate(-70px, 12px); }
  75% { transform: translate(-25px, 35px); }
}

@keyframes pulseSun {
  0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 50px rgba(10, 22, 40, 0.4); }
  50% { transform: translateX(-50%) scale(1.06); box-shadow: 0 0 70px rgba(10, 22, 40, 0.5); }
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.7; height: 28px; }
  50% { opacity: 1; height: 35px; }
}

@keyframes pulseCell {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.25; }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.aullc-services-section {
  padding: 120px 0;
  background: var(--aullc-off-white);
}

.aullc-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.aullc-section-header h2 {
  font-size: 3rem;
  color: var(--aullc-navy);
  margin-bottom: 20px;
  font-weight: 800;
}

.aullc-section-header p {
  font-size: 1.25rem;
  color: var(--aullc-gray);
}

.aullc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.aullc-service-card {
  background: var(--aullc-white);
  padding: 48px;
  border-radius: 20px;
  display: block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.aullc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  transition: width 0.4s ease;
}

.aullc-service-teal::before {
  background: linear-gradient(180deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
}

.aullc-service-gold::before {
  background: linear-gradient(180deg, var(--aullc-gold) 0%, var(--aullc-gold-light) 100%);
}

.aullc-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.aullc-service-card:hover::before {
  width: 100%;
  opacity: 0.08;
}

/* Subtle hover effect on link */
.aullc-service-card:hover .aullc-service-link {
  gap: 12px;
}

.aullc-service-card h3 {
  font-size: 1.6rem;
  color: var(--aullc-navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.aullc-service-card p {
  color: var(--aullc-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.aullc-service-link {
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.aullc-service-teal .aullc-service-link {
  color: var(--aullc-teal);
}

.aullc-service-gold .aullc-service-link {
  color: #b8960a;
}

/* ==========================================================================
   ANIMATED HERO VISUALS (Service Page Banners)
   ======================================== */

/* Animated Browser Visual (Web Design Hero) */
.aullc-hero-browser.aullc-animated {
  animation: floatHeroBrowser 3s ease-in-out infinite;
}

.aullc-hero-browser.aullc-animated .aullc-hero-browser-nav {
  animation: pulseElement 2s ease-in-out infinite;
}

.aullc-hero-browser.aullc-animated .aullc-hero-browser-hero {
  animation: pulseElement 2.5s ease-in-out infinite 0.2s;
}

.aullc-hero-browser.aullc-animated .aullc-hero-browser-grid div {
  animation: pulseElement 2s ease-in-out infinite;
}

.aullc-hero-browser.aullc-animated .aullc-hero-browser-grid div:nth-child(2) {
  animation-delay: 0.15s;
}

.aullc-hero-browser.aullc-animated .aullc-hero-browser-grid div:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes floatHeroBrowser {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Animated Chart Visual (Market Research Hero) */
.aullc-hero-chart.aullc-animated .aullc-hcb-1 {
  animation: heroBar1 2s ease-in-out infinite;
}

.aullc-hero-chart.aullc-animated .aullc-hcb-2 {
  animation: heroBar2 2s ease-in-out infinite 0.15s;
}

.aullc-hero-chart.aullc-animated .aullc-hcb-3 {
  animation: heroBar3 2s ease-in-out infinite 0.3s;
}

.aullc-hero-chart.aullc-animated .aullc-hcb-4 {
  animation: heroBar4 2s ease-in-out infinite 0.45s;
}

@keyframes heroBar1 { 0%, 100% { height: 60px; } 50% { height: 80px; } }
@keyframes heroBar2 { 0%, 100% { height: 100px; } 50% { height: 75px; } }
@keyframes heroBar3 { 0%, 100% { height: 80px; } 50% { height: 110px; } }
@keyframes heroBar4 { 0%, 100% { height: 120px; } 50% { height: 95px; } }

/* Animated People Visual (UX Research Hero) */
.aullc-hero-people.aullc-animated .aullc-hp-1 {
  animation: bobPerson1 2.5s ease-in-out infinite;
}

.aullc-hero-people.aullc-animated .aullc-hp-2 {
  animation: bobPerson2 2.5s ease-in-out infinite 0.3s;
}

.aullc-hero-people.aullc-animated .aullc-hero-speech {
  animation: pulseSpeechHero 1.5s ease-in-out infinite;
}

@keyframes bobPerson1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bobPerson2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseSpeechHero { 0%, 100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.15); } }

/* Animated Solar Visual (Solar Design Hero) */
.aullc-hero-solar.aullc-animated .aullc-hero-sun {
  animation: pulseSunHero 2s ease-in-out infinite;
}

.aullc-hero-solar.aullc-animated .aullc-hero-ray {
  animation: rayPulseHero 2s ease-in-out infinite;
}

.aullc-hero-solar.aullc-animated .aullc-hr-2 { animation-delay: 0.1s; }
.aullc-hero-solar.aullc-animated .aullc-hr-3 { animation-delay: 0.2s; }
.aullc-hero-solar.aullc-animated .aullc-hr-4 { animation-delay: 0.3s; }
.aullc-hero-solar.aullc-animated .aullc-hr-5 { animation-delay: 0.4s; }
.aullc-hero-solar.aullc-animated .aullc-hr-6 { animation-delay: 0.5s; }
.aullc-hero-solar.aullc-animated .aullc-hr-7 { animation-delay: 0.6s; }
.aullc-hero-solar.aullc-animated .aullc-hr-8 { animation-delay: 0.7s; }

@keyframes pulseSunHero { 
  0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 30px rgba(10, 22, 40, 0.3); } 
  50% { transform: translateX(-50%) scale(1.08); box-shadow: 0 0 50px rgba(10, 22, 40, 0.5); } 
}

@keyframes rayPulseHero {
  0%, 100% { opacity: 0.7; height: 20px; }
  50% { opacity: 1; height: 28px; }
}

/* ==========================================================================
   BENEFIT CARD CSS VISUALS
   ======================================== */
.aullc-benefit-visual {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Conversion Funnel */
.aullc-bv-conversion {
  position: relative;
  width: 80px;
  height: 80px;
}

.aullc-funnel {
  position: relative;
  width: 100%;
  height: 100%;
}

.aullc-funnel-top {
  width: 70px;
  height: 20px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  border-radius: 4px 4px 0 0;
  margin: 0 auto;
  animation: funnelPulse 2s ease-in-out infinite;
}

.aullc-funnel-mid {
  width: 50px;
  height: 25px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
  animation: funnelPulse 2s ease-in-out infinite 0.2s;
}

.aullc-funnel-bottom {
  width: 30px;
  height: 20px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-light) 100%);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
  animation: funnelPulse 2s ease-in-out infinite 0.4s;
}

.aullc-conversion-arrow {
  position: absolute;
  right: -5px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 12px solid var(--aullc-gold);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes funnelPulse { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes arrowBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* Brand Shapes */
.aullc-bv-brand {
  position: relative;
  width: 90px;
  height: 80px;
}

.aullc-brand-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: brandFloat 3s ease-in-out infinite;
}

.aullc-brand-square {
  position: absolute;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-light) 100%);
  border-radius: 6px;
  top: 10px;
  right: 0;
  animation: brandFloat 3s ease-in-out infinite 0.5s;
}

.aullc-brand-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid var(--aullc-navy);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: brandFloat 3s ease-in-out infinite 1s;
}

@keyframes brandFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Mobile Phone */
.aullc-bv-mobile {
  position: relative;
}

.aullc-phone {
  width: 50px;
  height: 85px;
  background: var(--aullc-navy);
  border-radius: 10px;
  padding: 4px;
  position: relative;
  animation: phoneTilt 3s ease-in-out infinite;
}

.aullc-phone-notch {
  width: 20px;
  height: 4px;
  background: #1a2744;
  border-radius: 2px;
  margin: 0 auto 4px;
}

.aullc-phone-screen {
  width: 100%;
  height: calc(100% - 8px);
  background: white;
  border-radius: 6px;
  padding: 4px;
  overflow: hidden;
}

.aullc-phone-header {
  height: 10px;
  background: linear-gradient(90deg, var(--aullc-teal) 40%, transparent 40%);
  border-radius: 3px;
  margin-bottom: 4px;
}

.aullc-phone-content {
  height: 35px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 4px;
}

.aullc-phone-nav {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.aullc-phone-nav::before,
.aullc-phone-nav::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--aullc-teal);
  border-radius: 2px;
}

@keyframes phoneTilt { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* Speedometer */
.aullc-bv-speed {
  position: relative;
}

.aullc-speedometer {
  width: 80px;
  height: 45px;
  position: relative;
}

.aullc-speed-track {
  width: 80px;
  height: 40px;
  border: 6px solid #e2e8f0;
  border-bottom: none;
  border-radius: 50px 50px 0 0;
  position: relative;
  overflow: hidden;
}

.aullc-speed-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid var(--aullc-teal);
  border-bottom: none;
  border-radius: 50px 50px 0 0;
  clip-path: polygon(0 0, 75% 0, 75% 100%, 0 100%);
}

.aullc-speed-needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 30px;
  background: var(--aullc-gold);
  border-radius: 2px;
  transform-origin: bottom center;
  animation: needleMove 2s ease-in-out infinite;
}

.aullc-speed-center {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--aullc-navy);
  border-radius: 50%;
}

@keyframes needleMove { 0%, 100% { transform: rotate(-30deg); } 50% { transform: rotate(45deg); } }

/* Magnifier Search */
.aullc-bv-search {
  position: relative;
  width: 90px;
  height: 80px;
}

.aullc-magnifier {
  position: absolute;
  left: 10px;
  top: 10px;
}

.aullc-magnifier-glass {
  width: 40px;
  height: 40px;
  border: 5px solid var(--aullc-gold);
  border-radius: 50%;
  background: rgba(226, 192, 68, 0.1);
}

.aullc-magnifier-handle {
  position: absolute;
  bottom: -12px;
  right: -8px;
  width: 20px;
  height: 8px;
  background: var(--aullc-gold);
  border-radius: 4px;
  transform: rotate(45deg);
}

.aullc-search-lines {
  position: absolute;
  right: 5px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aullc-search-lines div {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  animation: searchLine 1.5s ease-in-out infinite;
}

.aullc-search-lines div:nth-child(1) { width: 35px; }
.aullc-search-lines div:nth-child(2) { width: 28px; animation-delay: 0.2s; }
.aullc-search-lines div:nth-child(3) { width: 32px; animation-delay: 0.4s; }

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

/* Target */
.aullc-bv-target {
  position: relative;
  width: 80px;
  height: 80px;
}

.aullc-target-outer {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 4px solid var(--aullc-gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: targetPulse 2s ease-out infinite;
}

.aullc-target-mid {
  position: absolute;
  width: 55px;
  height: 55px;
  border: 4px solid var(--aullc-gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: targetPulse 2s ease-out infinite 0.3s;
}

.aullc-target-inner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid var(--aullc-gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  animation: targetPulse 2s ease-out infinite 0.6s;
}

.aullc-target-center {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--aullc-gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes targetPulse { 0% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; } }

/* Growth Chart */
.aullc-bv-growth {
  position: relative;
}

.aullc-growth-chart {
  width: 90px;
  height: 60px;
  position: relative;
  border-left: 3px solid #e2e8f0;
  border-bottom: 3px solid #e2e8f0;
}

.aullc-growth-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 80%, 30% 60%, 60% 40%, 100% 10%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(226, 192, 68, 0.3) 0%, rgba(226, 192, 68, 0.1) 100%);
}

.aullc-growth-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--aullc-gold);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.aullc-gd-1 { bottom: 15px; left: 20px; }
.aullc-gd-2 { bottom: 30px; left: 50px; animation-delay: 0.3s; }
.aullc-gd-3 { bottom: 45px; left: 80px; animation-delay: 0.6s; }

@keyframes dotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* Lightbulb */
.aullc-bv-lightbulb {
  position: relative;
}

.aullc-bulb {
  position: relative;
  width: 50px;
  height: 70px;
}

.aullc-bulb-glass {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-light) 100%);
  border-radius: 50% 50% 45% 45%;
  position: relative;
}

.aullc-bulb-base {
  width: 30px;
  height: 15px;
  background: var(--aullc-navy);
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
}

.aullc-bulb-base::before {
  content: '';
  display: block;
  width: 30px;
  height: 4px;
  background: #1a2744;
  margin-bottom: 2px;
}

.aullc-bulb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(226, 192, 68, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: bulbGlow 2s ease-in-out infinite;
}

@keyframes bulbGlow { 0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); } }

/* Microphone */
.aullc-bv-interview {
  position: relative;
  width: 90px;
  height: 80px;
}

.aullc-mic {
  position: absolute;
  left: 15px;
  top: 10px;
}

.aullc-mic-head {
  width: 30px;
  height: 45px;
  background: linear-gradient(135deg, var(--aullc-teal) 0%, var(--aullc-teal-light) 100%);
  border-radius: 15px 15px 10px 10px;
}

.aullc-mic-stand {
  width: 8px;
  height: 15px;
  background: var(--aullc-navy);
  margin: 0 auto;
}

.aullc-mic-base {
  width: 25px;
  height: 6px;
  background: var(--aullc-navy);
  border-radius: 3px;
  margin: 0 auto;
}

.aullc-sound-waves {
  position: absolute;
  right: 10px;
  top: 20px;
  display: flex;
  gap: 4px;
  align-items: center;
  height: 40px;
}

.aullc-sound-waves div {
  width: 5px;
  background: var(--aullc-teal);
  border-radius: 3px;
  animation: soundWave 1s ease-in-out infinite;
}

.aullc-sound-waves div:nth-child(1) { height: 20px; }
.aullc-sound-waves div:nth-child(2) { height: 35px; animation-delay: 0.15s; }
.aullc-sound-waves div:nth-child(3) { height: 25px; animation-delay: 0.3s; }

@keyframes soundWave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.5); } }

/* Journey Path */
.aullc-bv-journey {
  position: relative;
}

.aullc-journey-path {
  display: flex;
  align-items: center;
  gap: 0;
}

.aullc-journey-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--aullc-teal);
  animation: nodeGlow 2s ease-in-out infinite;
}

.aullc-jn-2 { animation-delay: 0.5s; }
.aullc-jn-3 { animation-delay: 1s; background: var(--aullc-gold); }

.aullc-journey-line {
  width: 25px;
  height: 4px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.aullc-journey-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--aullc-teal);
  animation: lineFlow 2s ease-in-out infinite;
}

.aullc-jl-2::after { animation-delay: 0.5s; }

@keyframes nodeGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(13, 148, 136, 0); } }
@keyframes lineFlow { 0% { left: -100%; } 50%, 100% { left: 100%; } }

/* Usability Test Screen */
.aullc-bv-usability {
  position: relative;
}

.aullc-test-screen {
  width: 70px;
  height: 55px;
  background: white;
  border: 3px solid var(--aullc-teal);
  border-radius: 6px;
  padding: 6px;
  position: relative;
}

.aullc-test-header {
  height: 10px;
  background: var(--aullc-teal);
  border-radius: 3px;
  margin-bottom: 6px;
}

.aullc-test-content {
  height: 25px;
  background: #e2e8f0;
  border-radius: 3px;
}

.aullc-test-cursor {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--aullc-gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  animation: cursorClick 1.5s ease-in-out infinite;
}

@keyframes cursorClick { 0%, 100% { transform: scale(1); } 50% { transform: scale(0.8); } }

/* Analytics Bars */
.aullc-bv-analytics {
  position: relative;
  width: 80px;
  height: 60px;
}

.aullc-analytics-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 50px;
}

.aullc-analytics-bars > div {
  width: 12px;
  background: var(--aullc-teal);
  border-radius: 3px 3px 0 0;
  animation: analyticsBar 2s ease-in-out infinite;
}

.aullc-ab-1 { height: 25px; }
.aullc-ab-2 { height: 40px; animation-delay: 0.2s; }
.aullc-ab-3 { height: 30px; animation-delay: 0.4s; }
.aullc-ab-4 { height: 45px; animation-delay: 0.6s; }

.aullc-analytics-line {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--aullc-gold), transparent);
  animation: lineSlide 2s ease-in-out infinite;
}

@keyframes analyticsBar { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes lineSlide { 0%, 100% { transform: scaleX(0.8); opacity: 0.5; } 50% { transform: scaleX(1); opacity: 1; } }

/* Blueprint */
.aullc-bv-blueprint {
  position: relative;
  width: 80px;
  height: 70px;
}

.aullc-blueprint-paper {
  width: 65px;
  height: 55px;
  background: #1e3a5f;
  border-radius: 4px;
  position: relative;
  padding: 8px;
}

.aullc-bp-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
}

.aullc-bp-h1 { width: 40px; height: 2px; top: 15px; left: 8px; }
.aullc-bp-h2 { width: 30px; height: 2px; top: 25px; left: 8px; }
.aullc-bp-v1 { width: 2px; height: 25px; top: 20px; right: 15px; }

.aullc-bp-circle {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: 12px;
}

.aullc-blueprint-ruler {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 12px;
  background: var(--aullc-gold);
  border-radius: 2px;
  animation: rulerSlide 2s ease-in-out infinite;
}

@keyframes rulerSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-5px); } }

/* Documents */
.aullc-bv-docs {
  position: relative;
  width: 70px;
  height: 70px;
}

.aullc-doc {
  position: absolute;
  width: 45px;
  height: 55px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  padding: 8px;
}

.aullc-doc-1 { top: 0; left: 0; z-index: 2; animation: docStack 2s ease-in-out infinite; }
.aullc-doc-2 { top: 8px; left: 12px; z-index: 1; }

.aullc-doc-line {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 6px;
}

.aullc-doc-line.aullc-short { width: 60%; }

.aullc-doc-check {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: var(--aullc-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aullc-doc-check::after {
  content: '\2713';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

@keyframes docStack { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Pie Chart */
.aullc-bv-feasibility {
  position: relative;
}

.aullc-pie-chart {
  width: 70px;
  height: 70px;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(
    var(--aullc-gold) 0deg 120deg,
    var(--aullc-teal) 120deg 240deg,
    var(--aullc-navy) 240deg 360deg
  );
  animation: pieRotate 8s linear infinite;
}

.aullc-pie-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
}

@keyframes pieRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Shield */
.aullc-bv-shield {
  position: relative;
}

.aullc-shield {
  width: 55px;
  height: 65px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-dark) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: shieldPulse 2s ease-in-out infinite;
}

.aullc-shield-check {
  font-size: 24px;
  color: var(--aullc-navy);
}

.aullc-shield-check::after {
  content: '\2713';
}

@keyframes shieldPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ==========================================================================
   Service Page Hero
   ========================================================================== */
.aullc-sp-hero {
  padding: 120px 0 80px;
  color: var(--aullc-white);
}

.aullc-sp-hero-teal {
  background: linear-gradient(135deg, var(--aullc-teal) 0%, #0f766e 100%);
}

.aullc-sp-hero-gold {
  background: linear-gradient(135deg, var(--aullc-gold) 0%, #ca9a04 100%);
}

.aullc-sp-hero-gold h1,
.aullc-sp-hero-gold p {
  color: var(--aullc-navy);
}

.aullc-sp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aullc-sp-hero-content {
  max-width: 600px;
}

.aullc-sp-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.aullc-sp-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.aullc-sp-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Service Page Sections
   ========================================================================== */
.aullc-sp-benefits {
  padding: 100px 0;
  background: var(--aullc-off-white);
}

.aullc-sp-benefits h2 {
  text-align: center;
  font-size: 2.25rem;
  color: var(--aullc-navy);
  margin-bottom: 50px;
  font-weight: 700;
}

.aullc-sp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.aullc-sp-benefit-card {
  background: var(--aullc-white);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.aullc-sp-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aullc-sp-benefit-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}

.aullc-sp-benefit-card h3 {
  font-size: 1.1rem;
  color: var(--aullc-navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.aullc-sp-benefit-card p {
  font-size: 0.95rem;
  color: var(--aullc-gray);
  line-height: 1.6;
}

/* Partner Highlight (Solar Page) */
.aullc-sp-partner {
  padding: 100px 0;
  background: var(--aullc-off-white);
}

.aullc-sp-partner-card {
  background: var(--aullc-white);
  border-radius: 20px;
  padding: 50px;
  border: 2px solid var(--aullc-gold);
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(226, 192, 68, 0.15);
}

.aullc-sp-partner-content {
  flex: 1;
}

.aullc-sp-partner-content h3 {
  font-size: 1.5rem;
  color: var(--aullc-navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.aullc-sp-partner-content p {
  color: var(--aullc-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.aullc-sp-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aullc-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.aullc-sp-partner-link:hover {
  color: var(--aullc-navy);
  gap: 12px;
}

.aullc-sp-partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(226, 192, 68, 0.1) 0%, rgba(226, 192, 68, 0.05) 100%);
  border-radius: 16px;
}

.aullc-sp-partner-logo img {
  height: 75px;
  width: auto;
}

.aullc-sp-partner-logo span {
  font-weight: 700;
  color: var(--aullc-navy);
  font-size: 1.1rem;
}

.aullc-sp-markets {
  padding: 100px 0;
}

.aullc-sp-markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aullc-sp-markets-content h2 {
  font-size: 2rem;
  color: var(--aullc-navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.aullc-sp-markets-content > p {
  color: var(--aullc-gray);
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.aullc-sp-markets-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aullc-sp-markets-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--aullc-gray);
  font-size: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.aullc-sp-markets-content li:last-child {
  border-bottom: none;
}

.aullc-check-teal {
  color: var(--aullc-teal);
  font-weight: bold;
  font-size: 1.1rem;
}

.aullc-check-gold {
  color: var(--aullc-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.aullc-sp-process {
  padding: 100px 0;
  background: var(--aullc-navy);
  color: var(--aullc-white);
}

.aullc-sp-process h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.aullc-sp-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.aullc-sp-step {
  text-align: center;
  padding: 28px 20px;
}

.aullc-sp-step-num {
  width: 50px;
  height: 50px;
  background: var(--aullc-gold);
  color: var(--aullc-navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.aullc-sp-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.aullc-sp-step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.aullc-sp-cta {
  padding: 100px 0;
  background: var(--aullc-off-white);
}

/* ==========================================================================
   Why Au Section
   ========================================================================== */
.aullc-why-section {
  padding: 120px 0;
  background: var(--aullc-white);
}

.aullc-why-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items: center;
}

.aullc-why-content h2 {
  font-size: 3rem;
  color: var(--aullc-navy);
  margin-bottom: 24px;
  font-weight: 800;
}

.aullc-why-lead {
  font-size: 1.25rem;
  color: var(--aullc-gray);
  line-height: 1.9;
  margin-bottom: 36px;
}

.aullc-why-list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.aullc-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.1rem;
}

.aullc-check {
  color: var(--aullc-teal);
  font-weight: bold;
  width: 28px;
  height: 28px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aullc-au-element {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--aullc-gold) 0%, var(--aullc-gold-dark) 100%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(226, 192, 68, 0.4);
}

.aullc-au-symbol {
  font-size: 7rem;
  font-weight: 800;
  color: var(--aullc-navy);
  line-height: 1;
}

.aullc-au-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aullc-navy);
  opacity: 0.7;
}

.aullc-au-name {
  font-size: 1.5rem;
  color: var(--aullc-navy);
  font-weight: 600;
}

/* ==========================================================================
   Services Page
   ========================================================================== */
.aullc-services-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--aullc-navy) 0%, #0d1a2d 100%);
  text-align: center;
  color: var(--aullc-white);
}

.aullc-services-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.aullc-services-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.aullc-services-list {
  padding: 80px 0;
}

.aullc-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
}

.aullc-service-row:last-child {
  border-bottom: none;
}

.aullc-service-row-reverse {
  direction: rtl;
}

.aullc-service-row-reverse > * {
  direction: ltr;
}

.aullc-service-row-content h2 {
  font-size: 2rem;
  color: var(--aullc-navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.aullc-service-row-content > p {
  font-size: 1.1rem;
  color: var(--aullc-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.aullc-service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 30px 0;
  padding: 0;
}

.aullc-service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--aullc-gray);
  font-size: 15px;
}

.aullc-service-row-visual,
.aullc-service-visual {
  height: 380px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ==========================================================================
   Services Page - Unique Static Visuals
   ========================================================================== */

/* Code Editor Visual (Web Design) */
.aullc-code-editor {
  width: 320px;
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
}

.aullc-code-header {
  background: #323232;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.aullc-code-dots {
  display: flex;
  gap: 6px;
}

.aullc-code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.aullc-code-dots span:nth-child(1) { background: #ff5f56; }
.aullc-code-dots span:nth-child(2) { background: #ffbd2e; }
.aullc-code-dots span:nth-child(3) { background: #27ca40; }

.aullc-code-tabs {
  display: flex;
  gap: 8px;
}

.aullc-code-tabs span {
  font-size: 11px;
  color: #888;
  padding: 4px 10px;
  border-radius: 4px;
}

.aullc-code-tabs span.active {
  background: #1e1e1e;
  color: #fff;
}

.aullc-code-body {
  padding: 16px;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 13px;
  line-height: 1.8;
}

.aullc-code-line {
  display: flex;
  align-items: center;
}

.aullc-line-num {
  color: #555;
  margin-right: 16px;
  min-width: 16px;
  text-align: right;
}

.aullc-tag { color: #569cd6; }
.aullc-attr { color: #9cdcfe; }
.aullc-string { color: #ce9178; }
.aullc-text { color: #d4d4d4; }
.aullc-cursor { color: #fff; }

/* Pie Chart Visual (Market Research) */
.aullc-data-viz {
  display: flex;
  align-items: center;
  gap: 30px;
}

.aullc-pie-wrapper {
  position: relative;
}

.aullc-pie-chart-static {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--aullc-teal) 0deg 151deg,
    var(--aullc-navy) 151deg 234deg,
    rgba(255,255,255,0.9) 234deg 360deg
  );
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.aullc-pie-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--aullc-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.aullc-data-labels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aullc-data-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aullc-navy);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.9);
  padding: 10px 16px;
  border-radius: 8px;
}

.aullc-data-label strong {
  margin-left: auto;
  color: var(--aullc-gold);
}

.aullc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.aullc-dot.teal { background: var(--aullc-teal); }
.aullc-dot.gold { background: var(--aullc-gold); }
.aullc-dot.navy { background: var(--aullc-navy); }

/* User Flow Visual (UX Research) */
.aullc-user-flow {
  display: flex;
  align-items: center;
  gap: 0;
}

.aullc-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.aullc-flow-node span {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aullc-flow-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.aullc-flow-box {
  width: 80px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.aullc-fb-line {
  height: 8px;
  background: var(--aullc-teal);
  border-radius: 4px;
}

.aullc-fb-line.short {
  width: 60%;
}

.aullc-flow-check {
  width: 70px;
  height: 70px;
  background: var(--aullc-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--aullc-navy);
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.aullc-flow-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}

.aullc-flow-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

/* Energy Circuit Visual (Solar Engineering) */
.aullc-energy-circuit {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.aullc-circuit-sun {
  position: relative;
  width: 90px;
  height: 90px;
}

.aullc-sun-core-static {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(255,255,255,0.5);
}

.aullc-sun-ring-static {
  width: 90px;
  height: 90px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.aullc-circuit-path {
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.aullc-energy-bar {
  position: absolute;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  left: 25px;
}

.aullc-circuit-battery {
  display: flex;
  align-items: center;
}

.aullc-battery-body {
  width: 50px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  border: 3px solid rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.aullc-battery-level-static {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--aullc-navy);
}

.aullc-battery-tip {
  width: 20px;
  height: 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px 2px 0 0;
  margin-left: -2px;
}

.aullc-circuit-output {
  width: 60px;
  height: 60px;
  background: var(--aullc-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.aullc-output-bolt {
  font-size: 28px;
}

/* Services Page CTA */
.aullc-services-cta {
  padding: 100px 0;
  background: var(--aullc-off-white);
}

/* Feature Check Colors */
.aullc-feature-check {
  font-weight: bold;
}

.aullc-feature-check.teal {
  color: var(--aullc-teal);
}

.aullc-feature-check.gold {
  color: var(--aullc-gold);
}

/* Button Teal */
.aullc-btn-teal {
  background: var(--aullc-teal);
  color: var(--aullc-white);
}

.aullc-btn-teal:hover {
  background: var(--aullc-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.aullc-cta-section {
  padding: 120px 0;
  background: var(--aullc-off-white);
}

.aullc-cta-card {
  background: linear-gradient(135deg, var(--aullc-navy) 0%, #0d1a2d 100%);
  padding: 80px;
  border-radius: 32px;
  text-align: center;
  color: var(--aullc-white);
  position: relative;
  overflow: hidden;
}

.aullc-cta-card h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 800;
}

.aullc-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 1.25rem;
}

.aullc-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.aullc-footer {
  background: linear-gradient(180deg, var(--aullc-navy) 0%, #050a12 100%);
  color: var(--aullc-white);
  padding: 80px 0 40px;
}

.aullc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aullc-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.aullc-footer-logo img {
  height: 38px;
}

.aullc-footer-logo span {
  font-size: 1.3rem;
  font-weight: 800;
}

.aullc-footer-tagline {
  color: var(--aullc-gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.aullc-footer-links h4 {
  font-size: 13px;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aullc-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aullc-footer-links li {
  margin-bottom: 14px;
}

.aullc-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.aullc-footer-links a:hover {
  color: var(--aullc-gold);
}

.aullc-footer-bottom {
  padding-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.aullc-contact-hero {
  background: var(--aullc-navy);
  padding: 100px 0 70px;
  text-align: center;
  color: var(--aullc-white);
}

.aullc-contact-hero h1 {
  font-size: 2.5rem;
  color: var(--aullc-white);
  margin-bottom: 14px;
  font-weight: 700;
}

.aullc-contact-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.aullc-contact-main {
  padding: 70px 0;
}

.aullc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 55px;
  align-items: start;
}

.aullc-contact-info h2 {
  font-size: 1.8rem;
  color: var(--aullc-navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.aullc-contact-lead {
  color: var(--aullc-gray);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.aullc-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.aullc-contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--aullc-off-white);
  border-radius: 12px;
  margin-bottom: 14px;
}

.aullc-contact-method-icon {
  font-size: 1.6rem;
}

.aullc-contact-method h4 {
  font-size: 0.8rem;
  color: var(--aullc-gray);
  font-weight: 500;
  margin: 0 0 3px 0;
}

.aullc-contact-method a,
.aullc-contact-method p {
  font-size: 0.95rem;
  color: var(--aullc-navy);
  font-weight: 600;
  margin: 0;
  text-decoration: none;
}

.aullc-contact-method a:hover {
  color: var(--aullc-teal);
}

.aullc-contact-services {
  background: var(--aullc-navy);
  padding: 22px;
  border-radius: 12px;
  color: var(--aullc-white);
  margin-top: 28px;
}

.aullc-contact-services h3 {
  font-size: 0.9rem;
  color: var(--aullc-white);
  margin-bottom: 14px;
  font-weight: 600;
}

.aullc-contact-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aullc-contact-services li {
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.aullc-contact-form-wrapper {
  background: var(--aullc-white);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.aullc-contact-form h3 {
  font-size: 1.2rem;
  color: var(--aullc-navy);
  margin-bottom: 22px;
  font-weight: 600;
}

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

.aullc-form-group {
  margin-bottom: 18px;
}

.aullc-form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 500;
  color: var(--aullc-navy);
  font-size: 0.85rem;
}

.aullc-form-group input,
.aullc-form-group select,
.aullc-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.aullc-form-group input:focus,
.aullc-form-group select:focus,
.aullc-form-group textarea:focus {
  outline: none;
  border-color: var(--aullc-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.aullc-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.aullc-submit-btn {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
  margin-top: 6px;
}

.aullc-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.aullc-success-message {
  text-align: center;
  padding: 36px 18px;
}

.aullc-success-icon {
  width: 70px;
  height: 70px;
  background: var(--aullc-teal);
  color: var(--aullc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 22px;
}

.aullc-success-message h3 {
  color: var(--aullc-teal);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.aullc-success-message p {
  color: var(--aullc-gray);
  margin-bottom: 22px;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .aullc-sp-hero-grid,
  .aullc-sp-markets-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aullc-sp-hero-visual {
    order: -1;
    height: 200px;
  }

  .aullc-sp-markets-visual {
    order: -1;
    height: 320px;
  }

  .aullc-services-grid,
  .aullc-sp-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aullc-why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aullc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aullc-sp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .aullc-service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aullc-service-row-reverse {
    direction: ltr;
  }

  .aullc-service-row-visual,
  .aullc-service-visual {
    order: -1;
    height: 320px;
  }

  .aullc-sp-partner-card {
    flex-direction: column;
    text-align: center;
  }

  .aullc-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .aullc-nav {
    display: none;
  }

  .aullc-hero-title {
    font-size: 2.5rem;
  }

  .aullc-sp-hero h1 {
    font-size: 2rem;
  }

  .aullc-services-hero h1 {
    font-size: 2.5rem;
  }

  .aullc-services-grid,
  .aullc-sp-benefits-grid,
  .aullc-sp-process-steps {
    grid-template-columns: 1fr;
  }

  .aullc-service-features {
    grid-template-columns: 1fr;
  }

  .aullc-service-row-visual,
  .aullc-service-visual {
    height: 300px;
  }

  .aullc-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aullc-cta-card {
    padding: 50px 28px;
  }

  .aullc-sp-hero-cta {
    flex-direction: column;
  }

  .aullc-large-browser {
    width: 220px;
    height: 160px;
  }

  .aullc-large-ux {
    width: 260px;
    height: 280px;
  }

  .aullc-ls-1 {
    width: 160px;
    height: 210px;
  }

  .aullc-ls-2 {
    width: 140px;
    height: 180px;
  }

  .aullc-large-solar {
    width: 220px;
    height: 220px;
  }

  .aullc-contact-hero {
    padding: 90px 0 55px;
  }

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

  .aullc-contact-main {
    padding: 50px 0;
  }

  .aullc-contact-form-wrapper {
    padding: 22px;
  }

  .aullc-form-row {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
