/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
  --bg-light: linear-gradient(to bottom right, #ffffff, rgba(244, 179, 21, 0.15), rgba(211, 175, 133, 0.25));
  --bg: #f8fafc;
  --bg-dark: #0f172a;
  --text: #444342;
  --muted: #475569;
  --primary: #FFB700;
  --primary-2: #f0d38c;
  --card: rgba(255, 255, 255, 0.8);
  --border: rgba(179, 180, 182, 0.894);
  --glass: rgba(255, 255, 255, 0.25);
  --shadow: 0 15px 40px rgba(42, 34, 15, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
   Custom Fonts - Aloevera Sans
   ============================================ */
   @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Aloevera Sans';
    src: url('./Myfonts/Aloevera Sans Font/Aloevera Sans Font/Aloevera-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Custom Scrollbar Styles
   ============================================ */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6c6450 0%, #4c4b4a 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #aba8a1 0%, #e9e7e4 100%);
  background-clip: padding-box;
  box-shadow: 0 2px 8px rgba(255, 183, 0, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #6c6450 0%, #4c4b4a 100%);
}

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #4c4b48 transparent;
}

html,
body {
  overflow-x: hidden;
}

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

}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container2 {
  max-width: 100%;
  margin: 10 auto;
  padding: 0 1.5rem;
}

@media (max-width: 640px) {
  .container,
  .container2 {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* @media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
} */

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ============================================
   Animations & Keyframes
   ============================================ */
@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatOrb1 {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(90deg);
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.3) rotate(-90deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes scalePill {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reveal Animations */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 3s ease, transform 3s ease;
}

.reveal-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  align-items: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 50;
  padding: 0.1rem 0;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.6s ease-out;
}

  .nav.scrolled {
    background: var(--glass);
    /* box-shadow: var(--shadow-lg); */
    margin: 5px auto;
    border-radius: 10px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
  }

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-inner {
  display: flex;
  /* position: fixed; */
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: transparent;
  /* Remove gradient background */
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  /* Ensures logo stays within rounded corners */
}

.brand-mark::after {
  display: none;
  /* Hide the decorative element */
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Keeps logo proportions */
  padding: 4px;
  /* Optional: adds some padding around logo */
}

.brand-name {
  font-size: 1.3rem;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
  font-weight: 400;
  font-size: medium;
  color: #414040;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  position: relative;
  /* REQUIRED for underline positioning */
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 6px;
  /* space for underline */

  transition: color 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;
  background-color: #414040;

  /* hidden by default */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* active link → underline always visible */
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* hover → line enters from left */
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* mouse out → line exits to right (but keep active links visible) */
.nav-links a:not(:hover):not(.active)::after {
  transform-origin: right;
}

/* active link color */
.nav-links a.active {
  color: #414040;
}

.nav-links a:nth-child(1) {
  animation-delay: 0.3s;
}

.nav-links a:nth-child(2) {
  animation-delay: 0.4s;
}

.nav-links a:nth-child(3) {
  animation-delay: 0.5s;
}

.nav-links a:nth-child(4) {
  animation-delay: 0.6s;
}

.nav-links a:hover {
  color: #414040;
}

/* ---------- Responsive: keep nav-cta hidden on small screens like before ---------- */
.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    opacity: 0;
    animation: scaleIn 0.5s ease 0.45s forwards;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Accessibility: visible focus ring (optional) ---------- */
.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(150, 200, 60, 0.18), 0 8px 20px rgba(0, 0, 0, 0.08);
}


@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.nav-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.6rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle:hover {
  color: var(--primary);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.75rem;
  background: var(--glass);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(18px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-mobile.active {
  display: flex;
  max-height: 500px;
  opacity: 1;
}

.nav-mobile a,
.nav-mobile button {
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-mobile a:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
}

/* ============================================
   Sign In Modal
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 2.25rem 2.25rem;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-2xl);
}

.modal-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  font-family: 'Aloevera Sans', sans-serif;
}

.modal-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.modal-content label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
}

.modal-content input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  font-family: inherit;
}

.modal-content input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(255, 183, 0, 0.4);
}

.modal-content textarea {
  width: 100%;
  min-height: 80px;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.modal-content textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(255, 183, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  color: #64748b;
}

.modal-close:hover {
  color: #0f172a;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 0.3rem;
  justify-content: center;
}

/* Modal layout helpers: rows, cols, gutters */
.modal-row {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 0.75rem 1rem;
  /* vertical x horizontal gutter */
  margin-bottom: 0.4rem;
  width: 100%;
}

.modal-row--2col .modal-col {
  flex: 1 1 100%;
}

@media (min-width: 640px) {
  .modal-row--2col .modal-col {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

.modal-col {
  display: flex;
  flex-direction: column;

}

/* ============================================
   Buttons
   ============================================ */

/* BASE BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* we handle spacing inside sub-elements */
  border: none;
  cursor: pointer;
  padding: 0rem 1rem;
  /* label/arrow handle padding */
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.4rem;
  /* rectangular box look */
  overflow: hidden;
  /* critical for smooth morph to circle */
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}

/* get started */
.btn-primary {
  background: #0f0f0e;
  /* base neon-green */
  color: #f9f7f7;
  /* subtle depth that matches premium look */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: width 0.3s ease, padding 0.3s ease;
  white-space: nowrap;
}

/* schedule demo */
.btn-primary1 {
  background: #0f0f0e;
  /* base neon-green */
  color: #f9f7f7;
  /* subtle depth that matches premium look */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* BUTTON CTA STYLE */
.btn-primary2 {
  background: #f8f8f4;
  /* base neon-green */
  color: #1e1b1b;
  /* subtle depth that matches premium look */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  display: inline-flex;
  align-items: center;
}

/* LABEL AREA */
.btn-primary .label {
  padding: 5rem 1.6rem;
  display: inline-block;
}

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* tighter spacing */
  padding: 8px 18px;
  /* smaller padding */
  border-radius: 10px;
  /* pill shape like ref */
  cursor: pointer;
  font-size: 0.9rem;
  /* smaller text */
  font-weight: 500;
  transition: all 0.3s ease;
  /* color: #fff; */
  border: none;
}

/* Arrow block */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  /* smaller area */
  height: 32px;
  min-width: 32px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: inherit;
  color: inherit;
  border-radius: 50%;
}

/* SVG size */
.btn-arrow svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Hover motion */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Hover motion bottom cta*/
.btn-primary2:hover {
  transform: translateY(2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* MAIN: hover effect */
.btn-primary:hover {
  padding-right: 1.5rem;
}

.btn-primary:hover .btn-arrow {
  width: 40px;
  min-width: 40px;
  height: 32px;
  /* background: #fff;
  color: #000; */
  border-radius: 6px;
  transform: translateX(4px);
}

.btn-primary1:hover {
  box-shadow: 
    0 4px 16px rgba(76, 75, 73, 0.538),
    0 2px 8px rgba(143, 142, 140, 0.561);
}
.btn-primary1:hover .btn-arrow {
  border-radius: 6px;
  transform: translateX(4px);
}


/* Rotate & pop */
.btn-primary:hover .btn-arrow svg {
  transform: rotate(45deg) translate(1px, -1px) scale(1.05);
}

/* Rotate & pop */
.btn-primary2:hover .btn-arrow svg {
  transform: rotate(-45deg) translate(1px, -1px) scale(1.05);
}

/* Label shift - removed to prevent layout shift */
/* .btn-primary:hover .btn-label {
  transform: translateX(-4px);
  transition: transform 0.3s ease;
} */


/* Active press */
.btn-primary:active {
  transform: translateY(0);
}


*/ .btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  transform: scale(1.05);
  border-color: #000;
}

.btn-ghost:active {
  transform: scale(0.98);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(79, 76, 76, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: #c2bdbd;
}

.btn-ghost-light {
  background: rgb(255, 255, 255);
  color: #807c7c;
  border: 1px solid rgba(79, 76, 76, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  border: 1px solid rgba(27, 26, 26, 0.985);
  transform: scale(1.05);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary .btn i {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn i {
  transform: translateX(4px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #f8fafc, rgb(253, 253, 252), rgb(241, 235, 221));
  z-index: 0;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  top: -10rem;
  right: -10rem;
  background: linear-gradient(135deg, rgba(246, 228, 177, 0.99), rgba(250, 250, 250, 0.2));
  animation: floatOrb1 20s linear infinite;
}

.orb-2 {
  bottom: -10rem;
  left: -10rem;
  background: linear-gradient(to top right, rgba(246, 219, 145, 0.98), rgba(242, 235, 222, 0.2));
  animation: floatOrb2 25s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 3rem; */
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(233, 178, 14, 0.193);
  color: #955c0c;
  font-weight: 600;
  font-size: 0.875rem;
  width: fit-content;
}

.pill span:not(.pulse-dot) {
  font-weight: 200;
}

.pill-animate {
  animation: scalePill 0.6s ease;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

h1 {
  font-size: clamp(1.5rem, 3vw, 3.0rem);
  font-weight: 600;
  line-height: 1.1;
  margin-top: -10px;
  letter-spacing: -0.015em;
  font-family: 'Aloevera Sans', sans-serif;
  font-display: swap;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  animation: float 6s ease-in-out infinite;
  transform: translateY(-50px);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-video:hover {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Video Controls */
.hero-video-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
  align-self: flex-end;
}

.video-control-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  color: #1e40af;
}

.video-control-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-control-btn i {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}


.hero-card {
  position: absolute;
  bottom: -1.7rem;
  left: -1.9rem;
  right: auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 20rem;
  border: 1px #8e8c8c;
}

@media (max-width: 960px) {
  .hero-card {
    position: static;
    margin-top: 1.5rem;
    right: auto;
  }
}

.hero-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.hero-card-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.hero-card-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* ============================================
   Sections
   ============================================ */
.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .pill {
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.0rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
  font-family: 'Aloevera Sans', sans-serif;
  font-display: swap;
}

.section-description {
  color: rgb(169, 164, 164);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  background: #fff;
}

.features-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(128, 128, 128, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.04) 1px, transparent 1px);
  background-size: 4rem 4rem;
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(var(--feature-gradient-rgb-1, 14, 165, 233), 0.2),
    0 10px 40px -10px rgba(var(--feature-gradient-rgb-1, 14, 165, 233), 0.5),
    0 10px 40px -10px rgba(var(--feature-gradient-rgb-2, 37, 99, 235), 0.4);
  border-color: transparent;
}


.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  
}

.feature-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-bar {
  height: 0.25rem;
  border-radius: 999px;
  width: 0;
  transition: width 0.3s ease;
}

.feature-card:hover .feature-bar {
  width: 100%;
}

/* ============================================
   Solutions Section
   ============================================ */
.solutions {
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.solution-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  /* border: 1px solid var(--border); */
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  display: flex;
  flex-direction: column;
}

.solution-card-wrapper.animate-in .solution-card {
  opacity: 1;
  transform: translateY(0);
}

.solution-card-wrapper.animate-in:hover .solution-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 183, 0, 0.3);
}

.solution-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.solution-card-wrapper:not(:hover) .solution-image-wrapper {
  border-radius: 1rem;
}

.solution-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-card-wrapper:hover .solution-image-wrapper img {
  transform: scale(1.05);
}

/* Hover Profile Picture - Bottom Left */
.solution-hover-profile {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.3s ease 0.1s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.solution-card-wrapper:hover .solution-hover-profile {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.solution-hover-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Arrow Icon - Top Right */
.solution-hover-arrow {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  opacity: 0;
  transform:  translateY(-10px) scale(0.8);
  transition: all 0.5s ease 0.4s;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(249, 249, 248, 0.4);
}

.solution-card-wrapper:hover .solution-hover-arrow {
  opacity: 1;
  transform: rotate(90deg) translateY(0) scale(1);
}

.solution-hover-arrow svg {
  width: 20px;
  height: 20px;
}

.solution-meta {
  padding: 1rem 1.25rem 0.5rem;
}

.solution-read-time {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 1rem 1.25rem;
  line-height: 1.3;
  padding: 0;
}

.solution-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 1.25rem;
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease 0.1s,
              transform 0.4s ease 0.1s,
              padding 0.4s ease,
              margin 0.4s ease;
}

.solution-card-wrapper:hover .solution-description {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  padding: 0.5rem 0 1.5rem 0;
  margin: 0 1.25rem;
}

/* Legacy styles for backward compatibility */
.solution-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.solution-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.solution-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.solution-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.solution-feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

/* ============================================
   Dashboard Section
   ============================================ */
.dashboard {
  background: linear-gradient(to bottom right, #000000, #2b2a2a, #060606);
  color: #e2e8f0;
  overflow: visible;
}

.dashboard-bg-orbs {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 0;
}

.dashboard-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.dashboard-orb-1 {
  top: 0;
  left: 25%;
  /* background: var(--primary); */
  animation: floatOrb1 20s linear infinite;
}

.dashboard-orb-2 {
  bottom: 0;
  right: 25%;
  /* background: var(--primary-2); */
  animation: floatOrb2 25s linear infinite;
}

.dashboard .container {
  position: relative;
  z-index: 1;
}

.dashboard .section-header h2 {
  color: #fff;
}

.pill-dark {
  background: rgba(233, 189, 14, 0.2);
  color: #F0C75E;
  border: 1px solid rgba(245, 223, 122, 0.723);
}

.text-gradient-light {
  background: linear-gradient(90deg, #FFB700, #F0C75E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.metric-card {
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(18px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.metric-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.metric-card:hover {
  transform: scale(1.05);
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.metric-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
}

.metric-icon-wrapper.emerald {
  background: rgba(16, 185, 129, 0.1);
}

.metric-icon-wrapper.sky {
  background: rgba(14, 165, 233, 0.1);
}

.metric-icon-wrapper.orange {
  background: rgba(249, 115, 22, 0.1);
}

.metric-change {
  font-weight: 600;
  font-size: 0.875rem;
}

.metric-change.up {
  color: #34d399;
}

.metric-change.down {
  color: #fb923c;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chart-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(18px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.chart-header p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.chart {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}

/* ============================================
   MacBook Mockup
   ============================================ */
.macbook-mockup {
  position: relative;
  max-width: 1200px;
  max-height: 800px;
  margin: 4rem auto 0;
  perspective: 1000px;
  overflow: visible;
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 59%,
      rgba(0, 0, 0, 0.98) 60%,
      rgba(0, 0, 0, 0.95) 65%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.75) 80%,
      rgba(0, 0, 0, 0.6) 87%,
      rgba(0, 0, 0, 0.4) 92%,
      rgba(0, 0, 0, 0.2) 96%,
      rgba(0, 0, 0, 0.05) 98%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 59%,
      rgba(0, 0, 0, 0.98) 60%,
      rgba(0, 0, 0, 0.95) 65%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.75) 80%,
      rgba(0, 0, 0, 0.6) 87%,
      rgba(0, 0, 0, 0.4) 92%,
      rgba(0, 0, 0, 0.2) 96%,
      rgba(0, 0, 0, 0.05) 98%,
      rgba(0, 0, 0, 0) 100%);
}

.macbook-screen {
  position: relative;
  background: #181717;
  /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: visible;
}

/* Strong gradient fade overlay at the bottom of entire MacBook mockup to blend with section background */
.macbook-mockup::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  right: -120px;
  height: 250px;
  background: radial-gradient(ellipse 150% 120% at center top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.65) 25%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.3) 70%,
      rgba(0, 0, 0, 0.15) 85%,
      rgba(0, 0, 0, 0.05) 95%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 5;
  filter: blur(100px);
}

.macbook-browser {
  background: #1e1e1e;
  border-radius: 6px;
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Code Editor Header Styles */
.code-editor-header {
  background: #1e1e1e;
  border-bottom: 1px solid #2d2d2d;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  height: 48px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Mono', 'Monaco', monospace;
}

.editor-window-controls {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.browser-dot-red {
  background: #ff5f57;
}

.browser-dot-yellow {
  background: #ffbd2e;
}

.browser-dot-green {
  background: #28ca42;
}

.editor-toolbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
}

.editor-file-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  font-size: 0.75rem;
  color: #858585;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.editor-file-tab.active {
  background: #1e1e1e;
  color: #cccccc;
  border-color: #2d2d2d;
}

.editor-file-tab:hover {
  background: #252525;
  color: #e0e0e0;
}

.editor-file-icon {
  width: 14px;
  height: 14px;
  color: currentColor;
  flex-shrink: 0;
}

.editor-close-icon {
  width: 12px;
  height: 12px;
  color: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.editor-file-tab:hover .editor-close-icon {
  opacity: 1;
}

.editor-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-left: 8px;
  border-left: 1px solid #2d2d2d;
}

.editor-icon {
  width: 16px;
  height: 16px;
  color: #858585;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.editor-icon:hover {
  color: #cccccc;
}

.code-editor-body {
  display: flex;
  min-height: 550px;
}

.editor-sidebar {
  width: 48px;
  background: #252526;
  border-right: 1px solid #2d2d2d;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  gap: 4px;
  flex-shrink: 0;
}

.sidebar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #858585;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.sidebar-icon:hover {
  background: #2a2d2e;
  color: #cccccc;
}

.sidebar-icon.active {
  background: #37373d;
  color: #ffffff;
  border-left: 2px solid #007acc;
}

.sidebar-icon svg {
  width: 20px;
  height: 20px;
}

.browser-content {
  flex: 1;
  padding: 1.5rem;
  background: #161617;
  overflow-y: auto;
  color: #e2e8f0;
}

/* Sidebar Logo */
.sidebar-logo {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo img {
  max-width: 120px;
  height: 30px;
  width: 35px;
  display: block;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-welcome h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.dashboard-search {
  flex: 1;
  max-width: 400px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.dashboard-search svg {
  color: #94a3b8;
  flex-shrink: 0;
}

.dashboard-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-size: 0.875rem;
  outline: none;
}

.dashboard-search input::placeholder {
  color: #64748b;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dashboard-action-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.dashboard-action-icon:hover {
  color: #e2e8f0;
}

.dashboard-profile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  cursor: pointer;
}

/* Dashboard Main Grid Layout */
.dashboard-main {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.dashboard-top-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* width: 350px; */
  /* height: 500px; */
}

.dashboard-top-right {
  grid-row: 1;
  grid-column: 2;
  width: 500px;
  /* height: 500px; */
}

.dashboard-bottom-left {
  grid-row: 2;
  grid-column: 1;
}

.dashboard-bottom-right {
  grid-row: 2;
  grid-column: 2;
}

/* Revenue Display */
.dashboard-revenue {
  /* background: rgba(255, 255, 255, 0.03); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 0.75rem;
  /* padding: 1rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.revenue-info {
  display: flex;
  flex-direction: column;
  /* gap: -0.5rem; */
  margin-left: 20px;
  margin-top: 8px;

}

.revenue-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.revenue-value {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-top: -13px;
}

.revenue-button {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-right: 20px;
}

.revenue-button:hover {
  background: #2563eb;
}

/* Summary Cards Grid */
.summary-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.summary-card {
  background: rgba(255, 255, 255, 0.03);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summary-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-content {
  flex: 1;
}

.summary-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

/* Visitors/Machine Utilization Card */
.visitors-card {
  background: rgba(255, 255, 255, 0.03);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.visitors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.visitors-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.visitors-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.visitors-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.progress-label {
  color: #94a3b8;
}

.progress-value {
  color: #3b82f6;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 4px;
  transition: width 0.3s;
}

.progress-average {
  font-size: 0.75rem;
  color: #64748b;
}

/* Sales/Welding Overview Card */
.sales-overview-card {
  background: rgba(255, 255, 255, 0.03);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 452px;
  /* height: 100%; */
}

.sales-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sales-overview-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.sales-overview-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sales-overview-actions svg {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.sales-overview-actions svg:hover {
  color: #e2e8f0;
}

.toggle-switch {
  width: 32px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.active {
  background: #3b82f6;
}

.toggle-switch.active::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s, right 0.2s;
}

.sales-overview-graph {
  width: 100%;
}

/* Performance and Transactions Cards */
.performance-card,
.transactions-card {
  background: rgba(255, 255, 255, 0.03);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 250px;
}

.performance-header,
.transactions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.performance-header h4,
.transactions-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.view-all-link {
  font-size: 0.875rem;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: #60a5fa;
}

.performance-list,
.transactions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 400px;
}

.performance-item,
.transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.performance-item:last-child,
.transaction-item:last-child {
  border-bottom: none;
}

.performance-info,
.transaction-info {
  flex: 1;
}

.performance-name,
.transaction-type {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.performance-sales,
.transaction-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.performance-chart {
  margin: 0 1rem;
}

.performance-change {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.performance-change.positive {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.performance-change.negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.transaction-amount {
  font-size: 0.875rem;
  font-weight: 600;
}

.transaction-amount.positive {
  color: #22c55e;
}

.transaction-amount.negative {
  color: #ef4444;
}

@media (max-width: 1200px) {
  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .dashboard-top-right,
  .dashboard-bottom-left,
  .dashboard-bottom-right {
    grid-column: 1;
  }

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


@media (max-width: 1024px) {
  .macbook-mockup {
    max-width: 100%;
    margin: 3rem auto 0;
  }

  .browser-content {
    padding: 1.5rem;
    /* min-height: 500px; */
  }

  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .dashboard-search {
    max-width: 100%;
    margin: 0;
  }

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

@media (max-width: 768px) {
  .macbook-mockup {
    margin: 2rem auto 0;
  }

  .browser-content {
    padding: 1rem;
    min-height: 400px;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dashboard-top-right,
  .dashboard-bottom-left,
  .dashboard-bottom-right {
    grid-column: 1;
  }

  .summary-cards-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-revenue {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/*Benefits Section*/
.benefits {
  background: linear-gradient(to bottom right, #ffffff, rgba(233, 178, 14, 0.19));
}

/* Benefits Hero Section - New Design */
.benefits-hero {
  background: radial-gradient(ellipse at center bottom, #fef9e7 0%, #fef3c7 30%, #fde68a 60%, #fcd34d 100%);
  background-image: 
    radial-gradient(ellipse 120% 100% at 50% 60%, rgba(255, 247, 237, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at top right, rgba(251, 191, 36, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at bottom left, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
  color: var(--text);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.benefits-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: -20px;
}

@media (min-width: 1024px) {
  .benefits-hero-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

/* Stacked Cards on Left */
.benefits-hero-left {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacked-cards {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 350px;
  perspective: 1000px;
}

.stacked-card {
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 183, 0, 0.361);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s ease, opacity 1s ease;
  box-shadow: 0 8px 32px rgba(251, 190, 36, 0.368), 0 0 0 1px rgba(255, 183, 0, 0.1);
}

.stacked-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #545050;
}

.stacked-card-icon i {
  width: 60px;
  height: 60px;
  stroke-width: 1.5;
}

.stacked-card-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Card 1 - Top (White hexagon icon style) */
.card-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0) rotate(-20deg) scale(1) perspective(1000px) rotateX(5deg);
  z-index: 3;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 183, 0, 0.25);
}

/* .stacked-card.card-1 .stacked-card-icon {
  background: rgba(255, 183, 0, 0.2);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 183, 0, 0.4);
} */

.stacked-card.card-1 .stacked-card-icon i {
  color: var(--primary);
}

/* Card 2 - Middle (Purple/cat icon style) */
.card-2 {
  top: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(0) rotate(8deg) scale(0.95) perspective(1000px) rotateX(5deg);
  z-index: 2;
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 183, 0, 0.2);
}



.stacked-card.card-2 .stacked-card-icon i {
  color: var(--primary);
}

/* Card 3 - Bottom (Orange/git icon style) */
.card-3 {
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(0) rotate(-8deg) scale(0.9) perspective(1000px) rotateX(2deg);
  z-index: 1;
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 183, 0, 0.18);
}


.stacked-card.card-3 .stacked-card-icon i {
  color: var(--primary);
}

.stacked-cards:hover .card-1 {
  transform: translateX(-50%) translateY(-10px) rotate(-8deg) scale(1.02) perspective(1000px) rotateX(5deg);
}

.stacked-cards:hover .card-2 {
  transform: translateX(-50%) translateY(60px) rotate(10deg) scale(0.97) perspective(1000px) rotateX(8deg);
}

.stacked-cards:hover .card-3 {
  transform: translateX(-50%) translateY(120px) rotate(-10deg) scale(0.92) perspective(1000px) rotateX(2deg);
}

/* Right Side Content */
.benefits-hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.025em;
}

.benefits-hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.benefits-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.benefit-feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.benefit-feature-description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1023px) {
  .benefits-hero-left {
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .stacked-cards {
    max-width: 250px;
    height: 280px;
  }
  
  .stacked-card {
    width: 200px;
    height: 240px;
  }
  
  .benefits-hero-title {
    text-align: center;
  }
  
  .benefits-hero-subtitle {
    text-align: center;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.benefits-description {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.benefits-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.benefit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.benefit-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.benefit-stat-value {
  color: var(--primary);
  font-weight: 700;
}

.benefit-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.benefits-images {
  position: relative;
}

.benefits-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.benefits-image-row-offset {
  padding-top: 3rem;
}

.benefits-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefits-image-wrapper.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefits-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-image-wrapper:nth-child(1) img {
  height: 16rem;
}

.benefits-image-wrapper:nth-child(2) img {
  height: 12rem;
}

.benefits-stats-card {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefits-stats-card.in-view {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.benefits-stats-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.benefits-stat {
  text-align: center;
}

.benefits-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.benefits-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.benefits-stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  background: linear-gradient(to bottom right, #000000, #2b2a2a, #060606);
  color: #e2e8f0;
}

.cta-bg-orbs {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
}

.cta-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb-1 {
  top: 0;
  left: 25%;
  /* background: var(--primary); */
  animation: floatOrb1 20s linear infinite;
}

.cta-orb-2 {
  bottom: 0;
  right: 25%;
  /* background: var(--primary-2); */
  animation: floatOrb2 25s linear infinite;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-content .pill-dark {
  margin-bottom: 2rem;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-description {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-contact {
    flex-direction: row;
  }
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.cta-contact-icon i {
  width: 1.25rem;
  height: 1.25rem;
  color: #f6efd9;
}

.cta-contact-label {
  font-size: 0.875rem;
  color: #c8bd9f;
}

.cta-contact-value {
  color: #fff;
  font-weight: 600;
}

.cta-contact-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .cta-contact-divider {
    display: block;
  }
}

/* ============================================
   Bottom CTA Section
   ============================================ */
.bottom-cta-section {
  background: #f8fafc;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 183, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.bottom-cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  /* grid-template-columns: 1fr; */
  grid-template-columns: 1.2fr 1fr;
  /* grid-template-rows: auto auto; */
  padding: 60px 70px;
  /* gap: 10px; */
  box-shadow: 0 20px 60px rgba(109, 89, 58, 0.528);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {

  .bottom-cta-graphics {
    min-height: 400px;
    /* Reduce from 250px to match desktop or lower */
  }
}

.bottom-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.bottom-cta-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1e1b1b;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.bottom-cta-headline span {
  display: block;
  font-family: 'Aloevera Sans', sans-serif;
  font-weight: 500;
}

.bottom-cta-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 32px 0;
  max-width: 400px;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #FFB700, #f0d38c);
  color: #1e1b1b;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.3);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
}

.btn-cta-primary .btn-arrow {
  background: rgba(30, 27, 27, 0.1);
  color: #1e1b1b;
}

.btn-cta-primary:hover .btn-arrow {
  background: #1e1b1b;
  color: #FFB700;
  transform: translateX(4px);
}

.bottom-cta-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
  flex-wrap: wrap;
}

.bottom-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 0.95rem;
  flex: 1;
  min-width: 200px;
}

.bottom-cta-contact-item i {
  width: 18px;
  height: 18px;
  color: #FFB700;
  flex-shrink: 0;
}

.bottom-cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bottom-cta-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bottom-cta-contact-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.bottom-cta-contact-item a:hover {
  color: #FFB700;
}

.bottom-cta-contact-separator {
  width: 1px;
  height: 40px;
  background: rgba(100, 116, 139, 0.2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .bottom-cta-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bottom-cta-contact-separator {
    width: 100%;
    height: 1px;
  }

  .bottom-cta-contact-item {
    min-width: auto;
    width: 100%;
  }
}

/* ============================================
   Contact Hero Section (New Design)
   ============================================ */
.contact-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, rgba(255, 183, 0, 0.08) 25%, rgba(240, 211, 140, 0.12) 50%, rgba(211, 175, 133, 0.15) 75%, rgba(244, 179, 21, 0.1) 100%);
  padding: 4rem 0 6rem;
  min-height: calc(100vh - 200px);
}

.contact-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.contact-back-link {
  display: inline-block;
  color: #F4B315;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-back-link:hover {
  color: #E59312;
  text-decoration: underline;
}

.contact-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1A141A;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.contact-description {
  font-size: 1.25rem;
  color: #423738;
  line-height: 1.7;
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 2rem; */
  max-width: 1000px;
  background: whitesmoke;
  border-radius: 1rem;
  padding: 3rem;
  /* box-shadow: 0 4px 20px rgba(26, 20, 26, 0.15); */
  box-shadow: 0 4px 20px #D3AF85;
}
.contact-sales {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 2rem; */
  max-width: 1000px;
  margin: 0 auto;
  background: #D3AF85;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(26, 20, 26, 0.15);
  /* box-shadow: 0 4px 20px #D3AF85; */
}

.contact-grid.single-column {
  grid-template-columns: 1fr !important;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .contact-grid.single-column .contact-column:first-child {
    padding-right: 0;
  }

  .contact-grid.single-column .contact-column:first-child::after {
    display: none;
  }
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact sales form card */
.contact-sales-form-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* .contact-sales-intro {
  margin-bottom: 1rem;
} */

.contact-sales-list {
  list-style: none;
  /* margin-top: 1rem; */
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #423738;
}

.contact-sales-list li {
  position: relative;
  padding-left: 1.4rem;
}

.contact-sales-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: #8E5915;
}

.contact-sales-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-sales-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-sales-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A141A;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-sales-field input,
.contact-sales-field select,
.contact-sales-field textarea {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-sales-field select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-sales-field input:focus,
.contact-sales-field select:focus,
.contact-sales-field textarea:focus {
  border-color: #8E5915;
  box-shadow: 0 0 0 1px rgba(142, 89, 21, 0.25);
  background-color: #fffaf3;
}

.contact-sales-field textarea {
  resize: vertical;
  min-height: 120px;
}
#sales-email {
  width: 355px;
}


.contact-sales-optional-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.contact-sales-submit {
  margin-top: 0.5rem;
  align-self: flex-start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    margin-top: 2rem;
  }

  .contact-column:first-child {
    padding-right: 3rem;
    position: relative;
  }

  /* .contact-column:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
      to bottom,
      #8E5915 0px,
      #8E5915 4px,
      transparent 4px,
      transparent 8px
    );
  } */

  /* .contact-column:last-child {
    padding-left: 3rem;
  } */
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 10px;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  color: #8E5915;
  margin-bottom: 0.5rem;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A141A;
  margin: 0;
}

.contact-card-description {
  font-size: 0.9rem;
  color: #423738;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}
.contact-sales-card-description {
  font-size: 0.9rem;
  color: #423738;
  line-height: 1.6;
  margin-bottom: 1rem;
  
}

.contact-card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1A141A;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  width: fit-content;
}

.contact-card-button:hover {
  background: #423738;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 20, 26, 0.25);
}

.contact-card-button svg {
  width: 14px;
  height: 14px;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1A141A;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
  width: fit-content;
}

.contact-card-link:hover {
  color: #fffffe;
}

.contact-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.contact-card-link:hover svg {
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .contact-main-heading {
    font-size: 2.5rem;
  }

  .contact-description {
    font-size: 1.1rem;
  }

  .contact-grid {
    padding: 2rem 1.5rem;
  }

  .contact-sales {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .contact-hero-section {
    padding: 2rem 0 4rem;
  }

  .contact-header {
    margin-bottom: 2.5rem;
  }

  .contact-main-heading {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-grid {
    padding: 1.5rem 1rem;
  }

  .contact-column {
    gap: 1.5rem;
  }

  .contact-card-heading {
    font-size: 1.25rem;
  }

  .contact-card-description {
    font-size: 0.95rem;
  }

  .contact-sales {
    padding: 1.5rem 1rem;
  }
}

.bottom-cta-graphics {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.cta-iot-network {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
  opacity: 0.8;
  z-index: 1;
}

.cta-iot-network svg {
  width: 100%;
  height: 100%;
}

.network-lines {
  animation: pulseLines 3s ease-in-out infinite;
}

@keyframes pulseLines {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.central-hub {
  filter: drop-shadow(0 4px 12px rgba(255, 183, 0, 0.3));
}

.iot-node {
  filter: drop-shadow(0 2px 8px rgba(255, 183, 0, 0.2));
  animation: nodePulse 3s ease-in-out infinite;
}

.iot-node.node-1 {
  animation-delay: 0s;
}

.iot-node.node-2 {
  animation-delay: 0.5s;
}

.iot-node.node-3 {
  animation-delay: 1s;
}

.iot-node.node-4 {
  animation-delay: 1.5s;
}

.iot-node.node-5 {
  animation-delay: 2s;
}

.iot-node.node-6 {
  animation-delay: 2.5s;
}

@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.device-icon {
  filter: drop-shadow(0 2px 6px rgba(255, 183, 0, 0.25));
  animation: deviceFloat 4s ease-in-out infinite;
}

.device-icon.device-1 {
  animation-delay: 0s;
}

.device-icon.device-2 {
  animation-delay: 1.3s;
}

.device-icon.device-3 {
  animation-delay: 2.6s;
}

@keyframes deviceFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.data-flow {
  filter: drop-shadow(0 0 4px rgba(255, 183, 0, 0.5));
}

.cta-iot-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.iot-element {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(255, 183, 0, 0.2);
  color: #FFB700;
  animation: floatElement 6s ease-in-out infinite;
}

.iot-element i {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.iot-element.element-sensor {
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.iot-element.element-cloud {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.iot-element.element-database {
  bottom: 30%;
  left: 3%;
  animation-delay: 3s;
}

.iot-element.element-activity {
  top: 30%;
  left: 10%;
  animation-delay: 4.5s;
}

@keyframes floatElement {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.9;
  }

  25% {
    transform: translateY(-10px) rotate(2deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-5px) rotate(-2deg);
    opacity: 0.95;
  }

  75% {
    transform: translateY(-15px) rotate(1deg);
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .bottom-cta-card {
    padding: 40px 32px;
  }

  .bottom-cta-graphics {
    min-height: 250px;
  }

  .iot-element {
    width: 40px;
    height: 40px;
  }

  .iot-element i {
    width: 20px;
    height: 20px;
  }

  .cta-iot-network svg {
    transform: scale(0.85);
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #0F0F0F;
  color: #e2e8f0;
  border-top: 1px solid #54565b;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 3rem; */
  margin-bottom: 3rem;
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1000px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer .brand-name {
  color: #fff;
}

.footer-description {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #5c5c5be0;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.social-link:hover {
  background: #ffffff;
  transform: translateY(-2px) scale(1.1);
}

.social-link:active {
  transform: translateY(0) scale(0.95);
}

.social-link i,
.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffbc04;
  stroke: #c3c5c9;
  transition: color 0.2s ease, stroke 0.2s ease;
}

.social-link:hover i,
.social-link:hover svg {
  color: #000 !important;
  stroke: #000 !important;
}

.footer-links {
  display: grid;
  /* Wider columns so link text stays on a single line */
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem 2rem;
  width: max-content;
  margin-left: auto;
  justify-content: end;
}

/* Keep existing desktop behavior, but allow wider columns */
@media (min-width: 1200px) {
  .footer-links {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
  }
}

.footer-link-group h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-group a {
  position: relative;
  color: #94a3b8;
  font-size: 0.875rem;
  padding-bottom: 4px;
  transition: color 0.2s ease;
  white-space: nowrap; /* keep link text in one row */
}

/* UNDERLINE effect for footer links */
.footer-link-group a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: whitesmoke;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.footer-link-group a:hover {
  color: whitesmoke;
}

.footer-link-group a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* mouse out → line exits to right */
.footer-link-group a:not(:hover)::after {
  transform-origin: right;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  margin-right: 8rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 960px) {
  .hero-card {
    position: static;
    margin-top: 1.5rem;
  }

  .benefits-stats-card {
    position: static;
    transform: none;
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.company-logos-scroller {
  /* width: 11; */
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 2rem 0;
  /* margin-bottom: 1.5rem; */
  margin-top: 1.5rem;
  position: relative;
}

/* Blur/Fade effect on left and right edges */
.company-logos-scroller::before,
.company-logos-scroller::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.company-logos-scroller::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.company-logos-scroller::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.company-logos-track {
  display: flex;
  gap: 7rem;
  align-items: center;
  animation: scroll-logos 60s linear infinite;
  width: max-content;
}

.company-logos-track img {
  height: 80px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.7) brightness(1.15);
  opacity: 0.85;
  transition: filter 0.3s;
  background: none;
  cursor: pointer;
}

.company-logos-track img:hover {
  filter: none;
  opacity: 1;
}

.company-logos-track.paused {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .company-logos-track img {
    height: 40px;
  }

  .company-logos-scroller {
    padding: 4rem 0;
  }
}

.company-logos-track img:nth-child(22) {
  height: 200px;
  /* or whatever size you want */
  width: 200px;
}

.company-logos-track img:nth-child(6) {
  height: 220px;
  /* or whatever size you want */
  width: 220px;
}

.company-logos-track img:nth-child(10) {
  height: 180px;
  /* or whatever size you want */
  width: 180px;
}

.company-logos-track img:nth-child(12) {
  height: 200px;
  /* or whatever size you want */
  width: 200px;
}

.company-logos-track img:nth-child(13) {
  height: 220px;
  /* or whatever size you want */
  width: 220px;
}

.company-logos-track img:nth-child(15) {
  height: 280px;
  /* or whatever size you want */
  width: 280px;
}

.company-logos-track img:nth-child(17) {
  height: 280px;
  /* or whatever size you want */
  width: 280px;
}

.company-logos-track img:nth-child(18) {
  height: 280px;
  /* or whatever size you want */
  width: 280px;
}

.company-logos-track img:nth-child(19) {
  height: 280px;
  /* or whatever size you want */
  width: 280px;
}

.company-logos-track img:nth-child(20) {
  height: 150px;
  /* or whatever size you want */
  width: 150px;
}

/* ============================================
   About Section (inspired by madebyshape)
   ============================================ */
.about {
  background: linear-gradient(to bottom right, #fcf7ee 70%, #fffbe0 100%);
}

/* About Mission Section */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.mission-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.mission-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: transparent;
}

.mission-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.mission-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* About Impact Section */
.about-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.impact-card {
  position: relative;
  background: linear-gradient(135deg, rgba(241, 189, 26, 0.08), rgba(233, 189, 14, 0.12));
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(241, 189, 26, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.impact-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.impact-card:hover {
  transform: scale(1.02);
  border-color: rgba(241, 189, 26, 0.4);
  box-shadow: var(--shadow-2xl);
  background: linear-gradient(135deg, rgba(241, 189, 26, 0.12), rgba(233, 189, 14, 0.16));
}

.impact-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.impact-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.impact-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* About Commitment Section */
.about-commitment {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.about-commitment.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-commitment p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-commitment p:last-child {
  margin-bottom: 0;
}

.about-thanks {
  font-weight: 600;
  color: var(--text) !important;
  font-size: 1.15rem !important;
}

/* ============================================
   About Us - New Design (PPT Inspired)
   ============================================ */

.about-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Left Side: Photo Collage & Logo Area */
.about-visual {
  position: relative;
  min-height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-photo-collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  max-width: 600px;
  margin: 0 auto;
}

.about-photo {
  position: absolute;
  border-radius: 1.25rem;
  overflow: hidden;
  opacity: 0.5;
  filter: grayscale(20%) brightness(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.about-photo:hover {
  opacity: 0.7;
  transform: scale(1.02);
  z-index: 3;
  filter: grayscale(10%) brightness(1);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top-left: Large vertical image */
.about-photo-1 {
  top: 50px;
  left: 0;
  width: 200px;
  height: 230px;
  z-index: 1;
}

/* Top-right: Small horizontal image */
.about-photo-2 {
  top: 76px;
  right: 120px;
  width: 90px;
  height: 70px;
  z-index: 1;
}

/* Middle-right: Vertical image */
.about-photo-3 {
  top: 23%;
  right: 10px;
  /* transform: translateY(-50%); */
  width: 200px;
  height: 260px;
  z-index: 1; 
}

/* Bottom-right: Vertical image */
.about-photo-4 {
  bottom: 36px;
  right: 48px;
  width: 162px;
  height: 200px;
  z-index: 1;
}

/* Bottom-left: Large horizontal image */
.about-photo-5 {
  bottom: 133px;
  left: 37px;
  width: 162px;
  height: 233px;
  z-index: 1;
}

.about-logo-overlay {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 3px solid rgba(255, 183, 0, 0.2);
  padding: 2rem;
}

.about-logo-overlay-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Right Side: Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2rem 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text-paragraph {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.about-content-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.about-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 183, 0, 0.2);
}

.about-content-card-vision {
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.05), rgba(240, 211, 140, 0.08));
}

/* Oracle Gold Partnership Card - Highlighted */
.about-oracle-partnership {
  border: 1px solid #F80000;
  /* background: linear-gradient(135deg, rgba(248, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 183, 0, 0.08) 100%); */
  box-shadow: 0 8px 30px rgba(248, 0, 0, 0.15), 0 0 0 1px rgba(248, 0, 0, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.about-oracle-partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #F80000, #FF6B6B, #F80000); */
  z-index: 1;
}

.about-oracle-partnership:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(248, 0, 0, 0.2), 0 0 0 1px rgba(248, 0, 0, 0.15) inset;
  /* border-color: #F80000; */
}

.about-oracle-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(248, 0, 0, 0.15);
}

.about-oracle-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 0, 0, 0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

/* .about-oracle-badge {
  background: linear-gradient(135deg, #F80000, #CC0000);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(248, 0, 0, 0.3);
} */

/* .about-oracle-title {
  color: #F80000;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
} */

.about-oracle-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Technology & Expertise Section - Full Width */
.about-tech-section {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 3rem;
  background: var(--bg-light);
  border-radius: 1.5rem;
  padding: 3rem 3.5rem;
  color: #fff;
  box-sizing: border-box;
  max-width: 100%;
}

.about-tech-intro {
  margin-bottom: 2rem;
}

.about-tech-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: rgb(48 34 22 / 85%);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-tech-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgb(98 70 45 / 85%);
  margin: 0;
  max-width: 800px;
}

.about-tech-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 183, 0, 0.3), transparent);
  margin: 2.5rem 0;
}

.about-tech-cards-wrapper {
  margin-top: 2.5rem;
}

.about-tech-cards-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4c463e;
  margin: 0 0 0.75rem 0;
}

.about-tech-cards-subtitle {
  font-size: 1rem;
  color: #56524d;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}

.about-tech-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.about-tech-card {
  flex: 1;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.about-tech-card:hover {
  background: rgba(255, 183, 0, 0.08);
  border-color: rgba(255, 183, 0, 0.25);
  transform: translateY(-2px);
}

.about-tech-card-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 0, 0.2), transparent);
  flex-shrink: 0;
  margin: 1rem 0;
}

.about-tech-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 183, 0, 0.3);
}

.about-tech-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4c463e;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.about-tech-card-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 1.25rem 0;
}

.about-tech-card-examples {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 183, 0, 0.9);
  margin: 0;
  font-weight: 500;
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
}

.about-card-icon-industry {
  background: linear-gradient(135deg, #8E5915, #D3AF85);
  box-shadow: 0 4px 15px rgba(142, 89, 21, 0.3);
}

.about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.about-card-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-card-text:last-child {
  margin-bottom: 0;
}

.about-vision-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.8;
}

/* Industries Grid */
.about-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .about-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-industry-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 183, 0, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 183, 0, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.about-industry-badge:hover {
  background: rgba(255, 183, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 183, 0, 0.3);
}

.about-industry-badge i {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.about-industry-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-visual {
    min-height: 550px;
    padding: 1.5rem;
  }

  .about-photo-collage {
    min-height: 500px;
    max-width: 500px;
  }

  .about-photo-1 {
    width: 170px;
    height: 240px;
  }

  .about-photo-2 {
    width: 120px;
    height: 85px;
    top: 15px;
  }

  .about-photo-3 {
    width: 140px;
    height: 190px;
  }

  .about-photo-4 {
    width: 130px;
    height: 170px;
  }

  .about-photo-5 {
    width: 200px;
    height: 150px;
  }

  .about-logo-overlay {
    width: 200px;
    height: 200px;
    padding: 1.5rem;
  }

  .about-content-card {
    padding: 1.75rem 2rem;
  }

  .about-tech-section {
    background: #fff;
    color: var(--text);
    padding: 2rem 2.5rem;
    border: 2px solid rgba(255, 183, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .about-tech-headline {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-tech-description {
    color: var(--muted);
    font-size: 1rem;
  }

  .about-tech-divider {
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 2rem 0;
  }

  .about-tech-cards-title {
    color: var(--text);
    font-size: 1.25rem;
  }

  .about-tech-cards-subtitle {
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .about-tech-cards {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-tech-card {
    background: rgba(255, 183, 0, 0.05);
    border: 1px solid rgba(255, 183, 0, 0.15);
    padding: 1.75rem 2rem;
  }

  .about-tech-card:hover {
    background: rgba(255, 183, 0, 0.1);
  }

  .about-tech-card-divider {
    display: none;
  }

  .about-tech-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .about-tech-card-name {
    color: var(--text);
    font-size: 1.125rem;
  }

  .about-tech-card-desc {
    color: var(--muted);
  }

  .about-tech-card-examples {
    color: var(--primary);
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    padding: 1rem 0;
  }

  .about-visual {
    min-height: 450px;
    padding: 1rem;
  }

  .about-photo-collage {
    min-height: 400px;
    max-width: 100%;
  }

  .about-photo-1 {
    width: 140px;
    height: 200px;
    top: 10px;
    left: 10px;
  }

  .about-photo-2 {
    width: 100px;
    height: 70px;
    top: 10px;
    right: 10px;
  }

  .about-photo-3 {
    width: 110px;
    height: 150px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .about-photo-4 {
    width: 100px;
    height: 140px;
    bottom: 10px;
    right: 10px;
  }

  .about-photo-5 {
    width: 160px;
    height: 120px;
    bottom: 10px;
    left: 10px;
  }

  .about-logo-overlay {
    width: 160px;
    height: 160px;
    padding: 1.25rem;
  }

  .about-content-card {
    padding: 1.5rem 1.75rem;
  }

  .about-card-title {
    font-size: 1.25rem;
  }

  .about-main-title {
    font-size: 2rem;
  }

  .about-text-paragraph {
    font-size: 1rem;
  }

  .about-tech-section {
    padding: 1.75rem 2rem;
  }

  .about-tech-headline {
    font-size: 1.375rem;
  }

  .about-tech-description {
    font-size: 0.95rem;
  }

  .about-tech-cards-title {
    font-size: 1.125rem;
  }

  .about-tech-cards-subtitle {
    font-size: 0.9rem;
  }

  .about-tech-card {
    padding: 1.5rem 1.75rem;
  }

  .about-tech-card-icon {
    width: 44px;
    height: 44px;
  }

  .about-tech-card-name {
    font-size: 1rem;
  }

  .about-tech-card-desc {
    font-size: 0.95rem;
  }

  .about-tech-card-examples {
    font-size: 0.85rem;
  }
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-values,
.about-team {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.about-values {
  border-left: 6px solid var(--primary);
}

.about-list {
  margin: 1.5rem 0 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  color: #ab870e;
  font-weight: 500;
}

.about-list li span {
  font-size: 1.2rem;
}

.about-team h3 {
  margin-bottom: 1rem;
}

.about-team-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-team-member {
  flex: 0 1 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(241, 189, 26, 0.10);
  margin-bottom: 0.5rem;
  border: 3px solid var(--primary);
  background: #fffbe9;
}

.about-team-member h4 {
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.about-team-member span {
  color: #c6ad53;
  font-size: 0.87rem;
  font-weight: 500;
}

.about-culture {
  margin-top: 3rem;
  text-align: center;
  background: var(--glass);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.about-culture h3 {
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.about-culture p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   Brochure Download Section
   ============================================ */

.brochure-hero {
  background: linear-gradient(
  135deg,
  #fffde7 0%,
  #fff6c1db 50%,
  #f9e27ad0 100%
);
}

.brochure-download {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.brochure-download-content {
  text-align: center;
  background: var(--glass);
  border-radius: 1.5rem;
  padding: 2rem 2rem;
  box-shadow: var(--shadow);
  max-width: 700px;
  width: 100%;
  /* border: 1px solid rgba(0, 0, 0, 0.157); */
}

.brochure-download-content h3 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.brochure-download-content > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.brochure-download-btn {
  display: inline-flex;
  margin: 1rem 0 1rem;
  text-decoration: none;
}

.brochure-alternative {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.brochure-alternative a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.brochure-alternative a:hover {
  color: var(--primary-2);
  text-decoration: underline;
}

/* ============================================
   FAQ Section
   ============================================ */

/* ============================================
   Book a Demo / Contact Card
   ============================================ */
.demo-contact-hero {
  background: #f3f4f6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.demo-contact-card {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 3rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  margin-top: 70px;
}

.demo-contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 40px;
}

.demo-contact-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
}

.demo-contact-heading {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: #111827;
  margin: 0;
  font-weight: 400;
}

.demo-contact-heading span {
  font-weight: 700;
}

.demo-contact-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 26rem;
}

.demo-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.demo-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.demo-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(235, 182, 37, 0.218);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #845317;
}

.demo-contact-icon i {
  width: 18px;
  height: 18px;
}

.demo-contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.demo-contact-value {
  font-size: 0.95rem;
  color: #111827;
}

.demo-contact-value:hover {
  color: #f6b213;
}

.demo-contact-right {
  background: #f9fafb;
  border-radius: 26px;
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.demo-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.demo-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.demo-contact-field label {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
}

.demo-contact-field input,
.demo-contact-field select,
.demo-contact-field textarea {
  border-radius: 0.6rem;
  border: 1px solid #e5e7eb;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.demo-contact-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
}

.demo-contact-field input:focus,
.demo-contact-field select:focus,
.demo-contact-field textarea:focus {
  border-color: #fccb1a;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(235, 205, 37, 0.16);
}

.demo-contact-submit {
  margin-top: 0.75rem;
  width: 100%;
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f8bb2c, #fddd93);
  /* background: #323130; */
  color: var(--text);
  /* color: #ffffff; */
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 3rem;
  /* padding: 0.9rem 1.2rem; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.3);
  /* box-shadow: 0 12px 30px rgb(64 64 62 / 35%); */
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.demo-contact-submit-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #323130;
}

.demo-contact-submit-icon i {
  width: 18px;
  height: 18px;
}

.demo-contact-submit:hover {
  background: linear-gradient(135deg, #fec02f, #fce2a4);;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.493);
  /* box-shadow: 0 16px 40px rgba(50, 51, 51, 0.524); */
}

.demo-contact-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(107, 58, 16, 0.616);
}

@media (max-width: 900px) {
  .demo-contact-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    border-radius: 28px;
  }

  .demo-contact-right {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .demo-contact-hero {
    padding: 3rem 1.25rem;
  }

  .demo-contact-card {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .demo-contact-heading {
    font-size: 1.75rem;
  }

  .demo-contact-right {
    padding: 1.5rem 1.25rem;
    border-radius: 22px;
  }

  .demo-contact-field input,
  .demo-contact-field select,
  .demo-contact-field textarea {
    font-size: 0.9rem;
  }
}

.faq {
  background: #fff;
  overflow: visible !important;
}

.faq .container {
  position: relative;
  overflow: visible;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 600px;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 7rem;
  align-self: flex-start;
  height: fit-content;
  z-index: 1;
  will-change: transform;
}

.faq-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.025em;
  font-family: 'Aloevera Sans', sans-serif;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 24px;
  background: #f3d899;
  color: #1e1b1b;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.faq-cta-btn:hover {
  background: #f3c55a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(163, 230, 53, 0.3);
}

.faq-cta-btn svg {
  transition: transform 0.3s ease;
}

.faq-cta-btn:hover svg {
  transform: translate(2px, -2px);
}

.faq-right {
  background: #f8f9fb;
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.faq-category {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.faq-items-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item.active {
  border-color: rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
  gap: 1.5rem;
}

.faq-question-text {
  flex: 1;
  color: #374151;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1b1b;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer-content {
  padding-top: 0.5rem;
}

.faq-answer-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-wrapper {
    gap: 3rem;
  }
  
  .faq-right {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .faq-left {
    position: static;
  }
  
  .faq-right {
    padding: 1.75rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-answer-content p {
    font-size: 0.95rem;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .faq-left {
    gap: 1.25rem;
  }
  
  .faq-cta-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .faq-right {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .faq-category {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    gap: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem;
  }
  
  .faq-icon {
    width: 24px;
    height: 24px;
  }
  
  .faq-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* ============================================
   FAQ Page (New Design - Two Columns)
   ============================================ */
.faq-page {
  background: #f5f5f5;
  padding: 6rem 0;
  min-height: 80vh;
}

.faq-page-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Header Section */
.faq-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.faq-page-header-text {
  flex: 1;
}

.faq-page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.faq-page-subtitle {
  font-size: clamp(2.5rem, 3vw, 3.25rem);
  font-weight: 600;
  color: rgb(183, 179, 179);
  margin: -20px 0 0 0;
  line-height: 1.5;
}

.faq-page-cta-btn {
  display: inline-block;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(135deg, #f8bb2c, #f8dd9e);;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 16px rgba(246, 216, 157, 0.727),
  0 2px 8px rgba(238, 206, 143, 0.693);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.faq-page-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.faq-page-cta-btn:hover {
  /* background: linear-gradient(135deg,#444342, #444342); */
  box-shadow: 
    0 6px 24px rgba(242, 209, 144, 0.717),
    0 4px 12px rgba(246, 230, 199, 0.913);
  transform: translateY(-2px);
}

.faq-page-cta-btn:hover::before {
  left: 100%;
}


.faq-page-cta-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(255, 183, 0, 0.3),
    0 1px 4px rgba(255, 183, 0, 0.2);
}

/* FAQ Items Wrapper */
.faq-page-items-wrapper {
  width: 100%;
}

.faq-page-items-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-page-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item */
.faq-page-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-page-item.active {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-page-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-page-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-page-question-text {
  flex: 1;
  color: var(--text);
  line-height: 1.5;
}

.faq-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text);
  transition: transform 0.3s ease;
}

.faq-page-icon svg {
  width: 16px;
  height: 16px;
}

.faq-page-item.active .faq-page-icon svg {
  transform: rotate(45deg);
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-page-item.active .faq-page-answer {
  max-height: 800px;
  padding: 0 1.5rem 1.25rem;
}

.faq-page-answer-content {
  padding-top: 0.5rem;
}

.faq-page-answer-content p {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

@media (max-width: 968px) {
  .faq-page-container {
    padding: 2rem 1.5rem;
  }

  .faq-page-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }

  .faq-page-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-page-items-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .faq-page {
    padding: 4rem 0;
  }

  .faq-page-container {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
  }

  .faq-page-title {
    margin-bottom: 0.25rem;
  }

  .faq-page-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-page-answer {
    padding: 0 1.25rem;
  }

  .faq-page-item.active .faq-page-answer {
    padding: 0 1.25rem 1rem;
  }

  .faq-page-answer-content p {
    font-size: 0.875rem;
  }
}

/* Footer brand logo inside white box */
.footer .brand-mark {
  background: #fff !important;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(25, 25, 28, 0.08), 0 1px 2px rgba(0, 0, 0, 0.07);
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
}

.footer .brand_logo,
.footer .brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border-radius: 6px;
}


/* SmartWeld AI Banner */
.smartweld-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 24px 32px;
  /* background: linear-gradient(90deg, #dbeafe 0%, #e9d5ff 100%); */
  background: linear-gradient(135deg, #76a2d4 0%, #a195d0 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* Animation initial state */
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.smartweld-banner.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.smartweld-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 100%); */
  background: rgba(255, 255, 255, 0.281);
  border-radius: 12px;
  color: white;
  /* Icon animation */
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.smartweld-banner.in-view .smartweld-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.smartweld-icon i {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.smartweld-content {
  flex: 1;
  color: white;
  
  /* Content animation */
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 2s ease 0.6s, transform 2s ease 0.6s;
}

.smartweld-banner.in-view .smartweld-content {
  opacity: 1;
  transform: translateX(0);
}

.smartweld-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  line-height: 1.2;
}

.smartweld-description {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: rgb(229, 227, 227);
  line-height: 1.6;
  opacity: 0.95;
}

/* Review section */
/* =========================
   Reviews Section
========================= */

.reviews {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.reviews-pill {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.1), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: #b45309;
  margin-bottom: 1.5rem;
}

/* Carousel */

.reviews-carousel {
  position: relative;
  height: 400px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Arrows - Inside Cards */
.reviews-nav {
  position: absolute;
  top: 50%;
  margin-right: 80px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.3s ease;
  color: #64748b;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: #b45309;
}

.reviews-nav i {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.reviews-nav-prev {
  left: 90px;
}

.reviews-nav-next {
  right: 16px;
}

@media (max-width: 1024px) {
  .reviews-nav-prev {
    left: 10px;
  }
  
  .reviews-nav-next {
    right: 10px;
  }
}

.reviews-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}

.review-card {
  position: absolute;
  width: 100%;
  max-width: 1000px;
  height: 420px;
  padding: 0 3rem;
  /* border-radius: 50px; */
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
    filter 0.45s ease,
    opacity 0.35s ease;
}

.review-card[data-position="0"] {
  transform: translateX(0%) scale(1);
  /* filter: blur(0); */
  z-index: 10;
  /* opacity: 1; */
}

.review-card[data-position="-1"] {
  transform: translateX(-105%) scale(0.85);
  /* filter: blur(4px); */
  /* opacity: 0.6; */
}

.review-card[data-position="1"] {
  transform: translateX(105%) scale(0.85);
  /* filter: blur(4px); */
  /* opacity: 0.6; */
}

.review-inner {
  background: linear-gradient(135deg, #f7e7bd 0%, #f7e7bd 100%);
  border-radius: 24px;
  padding: 3rem 8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Company Logo Section */
.review-company-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.review-company-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) saturate(100%) invert(15%) sepia(85%) saturate(3000%) hue-rotate(200deg) brightness(0.8) contrast(1.2); */
}

/* .review-company-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1e40af;
  letter-spacing: 0.02em;
} */

/* Quote Text */
.review-text {
  color: #3b3c3d;
  font-size: clamp(1.2rem, 2vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Author Section */
.review-author {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
  justify-content: center;
}

.review-author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(30, 64, 175, 0.2);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  font-weight: 700;
  font-size: 1rem;
  color: #202021;
}

.review-role {
  font-size: 0.9rem;
  color: #383939;
  font-weight: 500;
}

/* Dots */

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border-color: #1e1b1b;
  background: #1e1b1b;
  transition: all 0.3s ease;
}

.review-dot.active {
  width: 32px;
  background: #1e1b1b;
}

/* Background blobs */

.reviews-bg {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.reviews-bg-left {
  top: 5rem;
  left: 0;
  background: rgba(234, 179, 8, 0.1);
}

.reviews-bg-right {
  bottom: 5rem;
  right: 0;
  background: rgba(245, 158, 11, 0.1);
}
/* International Telephone Input Styling */
.intl-tel-input {
  width: 100% !important;
  display: block;
  position: relative;
}

.intl-tel-input .flag-container {
  left: 0;
}

.intl-tel-input input {
  width: 100% !important;
  padding-left: 52px;
  padding-right: 0.75rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  font-family: inherit;
}

.intl-tel-input input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(255, 183, 0, 0.4);
}

.intl-tel-input .selected-flag {
  padding: 0 8px 0 12px;
  background: transparent;
  height: 100%;
}

.intl-tel-input .country-list {
  z-index: 9999;
}

/* Ensure the input field matches your form styling - wider width */
#demo-phone {
  width: 100% !important;
}

/* Make the modal-row containing phone input wider */
.modal-col:has(#demo-phone) .modal-row,
.modal-row .intl-tel-input {
  width: 100% !important;
}

/* Match modal-row width for intl-tel-input wrapper - wider for phone input */
/* .modal-row .intl-tel-input {
  width: 186%;
} */

/* ============================================
   Video Modal Overlay
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  display: flex;
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
  position: relative;
  z-index: 1001;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal video {
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #1f2937;
}

.video-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-modal-close i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .video-modal {
    padding: 1rem;
  }

  .video-modal-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .video-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
  }

  .video-modal-close i {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   404 Error Page
   ============================================ */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f0f4f8, rgba(240, 211, 140, 0.1), rgba(244, 179, 21, 0.05));
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.error-404-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: center;
  z-index: 1;
}

/* Decorative Elements */
.error-404-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.error-star {
  position: absolute;
  color: rgba(255, 183, 0, 0.3);
  animation: twinkle 3s ease-in-out infinite;
}

.error-star-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.error-star-2 {
  top: 25%;
  right: 20%;
  animation-delay: 0.5s;
}

.error-star-3 {
  top: 50%;
  left: 10%;
  animation-delay: 1s;
}

.error-star-4 {
  top: 70%;
  right: 15%;
  animation-delay: 1.5s;
}

.error-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(119, 119, 119, 0.4);
}

.error-dot-1 {
  top: 20%;
  left: 25%;
}

.error-dot-2 {
  top: 60%;
  right: 30%;
}

.error-dot-3 {
  top: 80%;
  left: 40%;
}

.error-path {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  color: rgba(179, 180, 182, 0.3);
  opacity: 0.6;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* Central Illustration */
.error-404-illustration {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-hole {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(179, 180, 182, 0.2), rgba(179, 180, 182, 0.1));
  box-shadow: 
    inset 0 4px 8px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.error-ghost {
  position: absolute;
  background: #ffffff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.error-ghost-large {
  width: 120px;
  height: 140px;
  left: 20px;
  bottom: 30px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.error-ghost-small {
  width: 80px;
  height: 95px;
  right: 30px;
  bottom: 40px;
  z-index: 2;
  animation: float 3s ease-in-out infinite 0.5s;  
}

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

.ghost-face {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20%;
}

.ghost-eye {
  width: 8px;
  height: 8px;
  background: #444342;
  border-radius: 50%;
  position: absolute;
  top: 35%;
}

.ghost-eye:nth-child(1) {
  left: 35%;
}

.ghost-eye:nth-child(2) {
  right: 35%;
}

.error-ghost-small .ghost-eye {
  width: 6px;
  height: 6px;
  top: 32%;
}

.error-ghost-small .ghost-eye:nth-child(1) {
  left: 32%;
}

.error-ghost-small .ghost-eye:nth-child(2) {
  right: 32%;
}

.ghost-mouth {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 12px;
  border: 2px solid #444342;
  border-top: none;
  border-radius: 0 0 24px 24px;
}

.error-ghost-small .ghost-mouth {
  width: 18px;
  height: 9px;
  top: 48%;
  border-width: 1.5px;
}

.ghost-blush {
  position: absolute;
  width: 12px;
  height: 8px;
  background: rgba(255, 183, 0, 0.3);
  border-radius: 50%;
  top: 45%;
}

.ghost-blush:nth-child(4) {
  left: 20%;
}

.ghost-blush:nth-child(5) {
  right: 20%;
}

.error-ghost-small .ghost-blush {
  width: 10px;
  height: 6px;
  top: 42%;
}

.error-ghost-small .ghost-blush:nth-child(4) {
  left: 18%;
}

.error-ghost-small .ghost-blush:nth-child(5) {
  right: 18%;
}

/* Text Content */
.error-404-text {
  position: relative;
  z-index: 2;
}

.error-404-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.error-404-message {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
  font-weight: 400;
}

.error-404-btn {
  display: inline-block;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: whitesmoke;
  background: linear-gradient(135deg, #444342, #444342);
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 
    0 4px 16px rgb(76 75 73 / 30%),
    0 2px 8px rgb(143 142 140 / 20%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.error-404-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.error-404-btn:hover {
  background: linear-gradient(135deg,#444342, #444342);
  box-shadow: 
    0 6px 24px rgb(76 75 73 / 30%),
    0 4px 12px rgb(143 142 140 / 20%);
  transform: translateY(-2px);
}

.error-404-btn:hover::before {
  left: 100%;
}

.error-404-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(255, 183, 0, 0.3),
    0 1px 4px rgba(255, 183, 0, 0.2);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 3rem 1.5rem;
    min-height: 70vh;
  }

  .error-404-illustration {
    width: 240px;
    height: 240px;
    margin-bottom: 2rem;
  }

  .error-hole {
    width: 160px;
    height: 160px;
  }

  .error-ghost-large {
    width: 100px;
    height: 115px;
    left: 15px;
    bottom: 25px;
  }

  .error-ghost-small {
    width: 65px;
    height: 75px;
    right: 20px;
    bottom: 30px;
  }

  .error-path {
    width: 150px;
    height: 60px;
  }

  .error-404-title {
    margin-bottom: 1rem;
  }

  .error-404-message {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .error-404-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

/* ============================================
   Support Hero Section
   ============================================ */
.support-hero-section {
  background: linear-gradient(
    135deg,
    #fffde7 0%,
    #fff6c1db 50%,
    #f9e27ad0 100%
  );;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.support-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.08) 0%, rgba(240, 211, 140, 0.05) 100%);
  pointer-events: none;
}

.support-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.support-hero-title {
  /* font-size: clamp(3rem, 8vw, 5.5rem); */
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-hero-title-part1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 200;
  /* font-style: italic; */
  letter-spacing: -0.01em;
}

.support-hero-title-part2 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: -15px;
}

.support-hero-description {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.8;
  margin: 0 0 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.support-contact-btn {
  display: inline-block;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(135deg, #f8bb2c, #fddd93);
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.3);
  border: none;
  cursor: pointer;
}

.support-contact-btn:hover {
  /* background: var(--primary-2); */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
  color: var(--text);
}

@media (max-width: 768px) {
  .support-hero-section {
    padding: 6rem 0;
    min-height: 60vh;
  }

  .support-hero-title {
    margin-bottom: 1.5rem;
  }

  .support-hero-description {
    margin-bottom: 2.5rem;
  }

  .support-contact-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .support-hero-section {
    padding: 4rem 0;
  }

  .support-hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .support-contact-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
  }
}

/* ============================================
   Floating Brand Logo
   ============================================ */
.floating-logo {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0 0 0 / 35%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  padding: 8px;
}

.floating-logo.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.floating-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  background: var(--primary);
}

@media (max-width: 768px) {
  .floating-logo {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 6px;
  }
}

/*Form validation message - Pranoy*/
.form-message {
  margin-top: 10px;
  font-size: 14px;
}
.form-message.success { color: green; }
.form-message.error { color: red; }