@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Space+Grotesk:wght@300;400;500;600;700;900&display=swap");

/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
  --bg-dark: #030305;
  --bg-surface: #0a0a0e;
  --bg-card: #12121a;
  --primary: #4f46e5;
  --primary-glow: rgba(79, 70, 229, 0.4);
  --accent: #10b981;
  --text-main: #ffffff;
  --text-muted: #8b8b9e;
  --border: rgba(255, 255, 255, 0.08);
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Outfit", sans-serif;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   PADDING VARIABLES & UTILITIES
   ========================================================================== */
:root {
  --section-padding: 150px;
  --section-padding-mobile: 100px;
}

/* Padding Utilities used in inner pages */
.pt-150 {
  padding-top: var(--section-padding);
}
.pb-150 {
  padding-bottom: var(--section-padding);
}
.py-150 {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .pt-150 {
    padding-top: var(--section-padding-mobile);
  }
  .pb-150 {
    padding-bottom: var(--section-padding-mobile);
  }
  .py-150 {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar {
  display: none; /* Chrome */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 1.2s var(--ease-out-expo),
    opacity 1s ease;
}
.preloader.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.loader-text {
  text-align: center;
}
.loader-percent {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
}
.loader-bar-container {
  width: 200px;
  height: 2px;
  background: var(--border);
  margin: 20px auto;
  overflow: hidden;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.1s linear;
}
.loader-title {
  font-family: var(--font-heading);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--text-main);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
.cursor-hover .cursor-dot {
  width: 0;
  height: 0;
}
.cursor-hover .cursor-outline {
  width: 80px;
  height: 80px;
  background: var(--primary-glow);
  border-color: transparent;
  mix-blend-mode: screen;
}

#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}
.text-gradient {
  background: linear-gradient(90deg, var(--text-main) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
.section-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 20px;
}
.massive-text {
  font-size: clamp(4rem, 10vw, 8rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  margin-bottom: 50px;
  line-height: 0.9;
}

/* ==========================================================================
   STRICT MASTER HEADER
   ========================================================================== */
.aww-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
  transition: var(--transition);
}
.aww-header.scrolled {
  padding: 15px 0;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.aww-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aww-logo img {
  height: 50px;
  filter: invert(1);
}
.aww-nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}
.aww-nav-list a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 10px 0;
}
.aww-nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}
.aww-nav-list a:hover::after {
  width: 100%;
}
.aww-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Buttons */
.aww-btn {
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  z-index: 1;
}
.aww-btn.primary {
  background: var(--primary);
  border-color: var(--primary);
}
.aww-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-main);
  transition: var(--transition);
  z-index: -1;
}
.aww-btn.primary::before {
  background: var(--bg-dark);
}
.aww-btn:hover::before {
  top: 0;
}
.aww-btn:hover {
  color: var(--bg-dark);
}
.aww-btn.primary:hover {
  color: var(--text-main);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 101;
  cursor: none;
}
.menu-toggle .line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  left: 8px;
  transition: var(--transition);
}
.menu-toggle .line:nth-child(1) {
  top: 14px;
}
.menu-toggle .line:nth-child(2) {
  top: 24px;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 30px;
  background: rgba(79, 70, 229, 0.1);
}
.hero-title {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero-desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 20px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 4vw;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.scroll-indicator .mouse {
  width: 20px;
  height: 30px;
  border: 1px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollMouse 2s infinite;
}
@keyframes scrollMouse {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

/* ==========================================================================
   SECTION 2: MARQUEE
   ========================================================================== */
.marquee-section {
  padding: 50px 0;
  background: var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(-2deg) scale(1.05);
  position: relative;
  z-index: 20;
  overflow: hidden;
  margin: 100px 0;
}
.marquee-container {
  display: flex;
  width: 200%;
  white-space: nowrap;
}
.marquee-content {
  display: flex;
  animation: scrollMarquee 20s linear infinite;
}
.marquee-content span {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-dark);
  padding: 0 30px;
  text-transform: uppercase;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ==========================================================================
   SECTION 3: ABOUT / APPROACH
   ========================================================================== */
.about-section {
  padding: 150px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left h3 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.2;
}
.about-right p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.about-stats-mini {
  display: flex;
  gap: 50px;
}
.stat-mini h4 {
  font-size: 3.5rem;
  color: var(--text-main);
  display: inline-block;
}
.stat-mini span {
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-heading);
}
.stat-mini p {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   SECTION 4: CORE SERVICES
   ========================================================================== */
.services-section {
  padding: 150px 0;
  background: var(--bg-surface);
}
.services-accordion {
  border-top: 1px solid var(--border);
}
.service-item {
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  transition: 0.5s var(--ease-out-expo);
  z-index: 0;
  opacity: 0.05;
}
.service-item:hover::before {
  height: 100%;
}
.service-header {
  display: flex;
  align-items: center;
  cursor: none;
  position: relative;
  z-index: 10;
}
.service-num {
  font-size: 18px;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-right: 40px;
}
.service-header h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  flex-grow: 1;
  transition: var(--transition);
}
.service-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.service-body {
  padding-left: 65px;
  margin-top: 20px;
  max-width: 800px;
  position: relative;
  z-index: 10;
  display: none; /* Handled by JS for accordion */
}
.service-item:hover .service-body {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.service-item:hover .service-header h3 {
  transform: translateX(20px);
  color: var(--primary);
}
.service-item:hover .service-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}
.service-tags {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-top: 25px;
}
.service-tags li {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   SECTION 5: INDUSTRIES (HEX GRID)
   ========================================================================== */
.industries-section {
  padding: 150px 0;
}
.hex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.hex-card {
  background: var(--bg-card);
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.hex-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.hex-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}
.hex-card:hover::after {
  opacity: 0.5;
}
.hex-content h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-main);
}
.hex-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 6: STATS
   ========================================================================== */
.stats-parallax-section {
  padding: 150px 0;
  background: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000")
    center/cover fixed;
  position: relative;
}
.stats-parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 5, 0.9);
}
.stats-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 40px;
}
.stat-number {
  font-size: clamp(3rem, 5vw, 5rem);
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
}

/* ==========================================================================
   SECTION 7: WORK (HOVER REVEAL)
   ========================================================================== */
.work-section {
  padding: 150px 0;
  position: relative;
}
.work-list {
  border-top: 1px solid var(--border);
}
.work-item {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  position: relative;
  z-index: 10;
  transition: var(--transition);
}
.work-item:hover {
  padding: 60px 2vw;
  background: rgba(255, 255, 255, 0.02);
}
.work-title {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--text-main);
  transition: var(--transition);
}
.work-item:hover .work-title {
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
}
.work-category {
  font-size: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.work-hover-reveal {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 300px;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.work-item:hover ~ .work-hover-reveal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   SECTION 8: TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 100px 0 150px;
  background: var(--bg-surface);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.test-card {
  background: var(--bg-card);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
}
.quote-icon {
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
}
.test-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.test-author h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 5px;
}
.test-author span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 9: CTA
   ========================================================================== */
.cta-section {
  padding: 150px 0;
  text-align: center;
}
.cta-wrapper {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(10, 10, 14, 1) 100%
  );
  border: 1px solid var(--primary);
  border-radius: 30px;
  padding: 100px 4vw;
  position: relative;
  overflow: hidden;
}
.cta-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}
.inline-cta-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
}
.cta-input {
  flex-grow: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0 30px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}
.cta-input:focus {
  border-color: var(--primary);
}

/* ==========================================================================
   SECTION 10: STRICT MASTER FOOTER
   ========================================================================== */
.aww-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.aww-footer-top {
  border-bottom: 1px solid var(--border);
  padding-bottom: 50px;
  margin-bottom: 80px;
  text-align: center;
}
.aww-footer-huge-text {
  font-size: clamp(4rem, 12vw, 7.7rem);
  font-family: var(--font-heading);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  text-transform: uppercase;
  line-height: 0.8;
  white-space: nowrap;
}
.aww-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 80px;
}
.aww-footer-logo img {
  height: 50px;
  filter: invert(1);
  margin-bottom: 20px;
}
.aww-footer-desc {
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}
.aww-footer-heading {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-main);
}
.aww-footer-links,
.aww-footer-contact {
  list-style: none;
}
.aww-footer-links li,
.aww-footer-contact li {
  margin-bottom: 15px;
}
.aww-footer-links a {
  color: var(--text-muted);
  font-size: 16px;
  position: relative;
  display: inline-block;
}
.aww-footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-main);
  transition: var(--transition);
}
.aww-footer-links a:hover {
  color: var(--text-main);
}
.aww-footer-links a:hover::after {
  width: 100%;
}
.aww-footer-contact li {
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  gap: 10px;
}
.aww-footer-contact .label {
  color: var(--primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 12px;
}
.aww-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 4vw;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

/* ==========================================================================
   CONTACT PAGE SPECIFICS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info-block {
  background: var(--bg-surface);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-info-block::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}
.info-item {
  margin-bottom: 40px;
}
.info-item h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.info-item p {
  font-size: 20px;
  font-family: var(--font-heading);
}
.modern-form {
  background: var(--bg-surface);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.input-group {
  position: relative;
  margin-bottom: 30px;
}
.input-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition);
}
.input-field:focus {
  outline: none;
  border-color: var(--primary);
}
.input-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  font-size: 16px;
}
.input-field:focus ~ label,
.input-field:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 12px;
  color: var(--primary);
}
textarea.input-field {
  resize: none;
  min-height: 100px;
}

/* Calculator UI */
.calculator-ui {
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid var(--border);
}
.calc-header {
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.range-slider {
  width: 100%;
  -webkit-appearance: none;
  background: var(--border);
  height: 4px;
  border-radius: 2px;
  outline: none;
  margin: 20px 0;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: none;
  box-shadow: 0 0 15px var(--primary-glow);
}
.calc-results {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.res-box h5 {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 5px;
}
.res-box span {
  font-size: 24px;
  color: var(--accent);
  font-family: var(--font-heading);
}

/* Live Chat */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--primary-glow);
  z-index: 99;
  transition: var(--transition);
}
.live-chat-widget::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  z-index: -1;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-surface);
  padding: 60px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.legal-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.legal-content h2 {
  font-size: 28px;
  color: var(--text-main);
  margin: 50px 0 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .aww-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .aww-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .aww-header-actions .aww-btn {
    display: none;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .aww-footer-grid {
    grid-template-columns: 1fr;
  }
  .aww-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .inline-cta-form {
    flex-direction: column;
  }
  .cta-input {
    padding: 15px 30px;
    margin-bottom: 10px;
  }
  .legal-content {
    padding: 30px;
  }
}
