/* ==========================================================================
   DOMAINDESIGN - AWWWARDS LEVEL PREMIUM STYLESHEET
   ========================================================================== */

/* --- 1. CSS VARIABLES & THEME --- */
:root {
  /* Color Palette */
  --bg-light: #f7f7f9;
  --bg-white: #ffffff;
  --bg-dark: #0a0a0a;
  --text-main: #111111;
  --text-muted: #555555;
  --accent-1: #4f46e5; /* Indigo */
  --accent-2: #ec4899; /* Pink */
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* Clamp Typography for fluid scaling */
  --text-hero: clamp(3rem, 8vw, 7rem);
  --text-h1: clamp(2.5rem, 5vw, 5rem);
  --text-h2: clamp(2rem, 4vw, 3.5rem);
  --text-h3: clamp(1.5rem, 3vw, 2.5rem);
  --text-p: clamp(1rem, 1.2vw, 1.125rem);

  /* Spacing & Layout */
  --section-pad: clamp(4rem, 10vw, 8rem) 0;
  --container-width: 1400px;
  --container-pad: 0 2rem;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.3s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
}

/* --- 2. RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Handled by smooth scroll JS if needed, or CSS */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom Cursor */
}

::-moz-selection {
  background: var(--accent-1);
  color: var(--bg-white);
}
::selection {
  background: var(--accent-1);
  color: var(--bg-white);
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: none;
  background: none;
  border: none;
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-1);
}

/* --- 3. CUSTOM CURSOR --- */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-1);
  transition: transform 0.1s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(79, 70, 229, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

/* Hover States for Cursor */
body.hovering .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(79, 70, 229, 0.1);
  border-color: transparent;
}

/* --- 4. LAYOUT UTILITIES --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
  width: 100%;
}

.section-padding {
  padding: var(--section-pad);
}
.text-center {
  text-align: center;
}
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
}
.hidden.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Background Blobs (Premium Feel) */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
  animation: float 15s infinite ease-in-out alternate;
}
.blob-1 {
  top: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: var(--accent-1);
}
.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent-2);
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 50px) scale(1.2);
  }
}

/* --- 5. TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: var(--text-hero);
  text-transform: uppercase;
}
.title-md {
  font-size: var(--text-h2);
}
.subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

/* Gradient Text */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* --- 6. BUTTONS (Magnetic Effect) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}
.btn:hover i {
  transform: translateX(5px);
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-white);
  border: 1px solid var(--text-main);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}
.btn-primary:hover {
  border-color: transparent;
}
.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.magnetic-wrap {
  display: inline-block;
}

/* --- 7. HEADER (STRICT CONSISTENCY) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 60px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  color: var(--text-main);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-1);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.mobile-toggle .bar {
  width: 30px;
  height: 2px;
  background: var(--text-main);
  transition: 0.3s;
}
.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-link {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- 8. HERO SECTION (Index) --- */
.hero {
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
}
.hero-content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
.hero-title {
  margin-bottom: 2rem;
  line-height: 0.95;
}
.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}
.hero-visual {
  position: absolute;
  right: 5%;
  top: 20%;
  transform: translateY(-20%);
  width: 500px;
  height: 500px;
  z-index: 1;
  perspective: 1000px;
}
/* Abstract CSS 3D Element */
.abstract-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.2),
    rgba(236, 72, 153, 0.2)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation:
    morph 8s ease-in-out infinite,
    rotate3d 15s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

/* --- 9. MARQUEE SECTION --- */
.marquee-section {
  padding: 3rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  animation: scrollMarquee 20s linear infinite;
}
.marquee-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item i {
  color: var(--accent-1);
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- 10. ABOUT US --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.stat-box {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
.stat-item h4 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.stat-item p {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* --- 11. SERVICES (3D Tilt Cards) --- */
.services-section {
  background: var(--bg-white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  transition:
    transform 0.1s ease,
    box-shadow 0.3s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.service-card:hover::before {
  opacity: 0.05;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-1);
  margin-bottom: 2rem;
  transform: translateZ(30px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transform: translateZ(20px);
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--text-muted);
  transform: translateZ(10px);
  position: relative;
  z-index: 1;
}

/* --- 12. INDUSTRY FOCUS (Hover Reveal) --- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
}
.industry-item {
  padding: 4rem 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.industry-item h3 {
  font-size: 2rem;
  transition:
    color 0.3s,
    transform 0.3s;
  position: relative;
  z-index: 2;
}
.industry-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 0.5s,
    transform 0.5s;
  z-index: 1;
}
.industry-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.industry-item:hover h3 {
  color: var(--bg-white);
  transform: translateY(-10px);
}
.industry-item:hover .industry-img,
.industry-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* --- 13. INTERACTIVE CALCULATOR --- */
.calculator-section {
  background: var(--bg-dark);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  margin: 0 2rem;
  padding: 6rem 0;
}
.calc-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-md);
  padding: 4rem;
  backdrop-filter: blur(10px);
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.range-group {
  margin-bottom: 2rem;
}
.range-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 500;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--accent-1);
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: var(--border-dark);
  border-radius: 2px;
}
.calc-results {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-dark);
  text-align: center;
}
.result-item {
  margin-bottom: 2rem;
}
.result-item:last-child {
  margin-bottom: 0;
}
.result-label {
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}
.result-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-2);
  font-family: var(--font-heading);
  line-height: 1;
}

/* --- 14. SAMPLE REPORTS (CSS Data Viz) --- */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.chart-container {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}
.chart-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 200px;
  margin-top: 2rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 1rem;
}
.chart-bar {
  flex: 1;
  background: var(--bg-light);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.chart-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent-gradient);
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.5s var(--ease-out-expo);
}
.chart-bar:hover .chart-fill {
  filter: brightness(1.2);
}
/* Trigger classes added via JS */
.chart-container.active .fill-1 {
  height: 40%;
}
.chart-container.active .fill-2 {
  height: 65%;
}
.chart-container.active .fill-3 {
  height: 30%;
}
.chart-container.active .fill-4 {
  height: 90%;
}
.chart-container.active .fill-5 {
  height: 75%;
}

/* --- 15. TESTIMONIALS (Masonry look) --- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
}
.testi-card:nth-child(2) {
  transform: translateY(40px);
}
.quote-icon {
  font-size: 2rem;
  color: var(--accent-1);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}
.testi-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-light);
}
.author-info h4 {
  font-size: 1rem;
  margin: 0;
}
.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- 16. CTA PRE-FOOTER --- */
.cta-section {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 2rem;
  line-height: 1;
}
.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
}

/* --- 17. FOOTER (STRICT CONSISTENCY) --- */
.footer {
  background: var(--bg-dark);
  color: var(--bg-white);
  padding: 6rem 0 2rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: invert(1); /* Ensure visibility on dark bg */
}
.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}
.footer-links ul li {
  margin-bottom: 1rem;
}
.footer-links a {
  color: #aaa;
  transition: color 0.3s;
  position: relative;
}
.footer-links a::before {
  content: ">";
  position: absolute;
  left: -15px;
  opacity: 0;
  color: var(--accent-2);
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 10px;
}
.footer-links a:hover::before {
  opacity: 1;
  left: -5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-link:hover {
  background: var(--accent-1);
  border-color: transparent;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.875rem;
}

/* --- 18. LEGAL PAGES (Privacy, Terms, Disclaimer) & CONTACT LAYOUT --- */
.page-header {
  padding: 150px 0 80px;
  background: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 {
  font-size: var(--text-h1);
  margin-bottom: 1rem;
}

/* Legal Content Typography */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.legal-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-main);
  border-bottom: 2px solid var(--accent-1);
  padding-bottom: 0.5rem;
  display: inline-block;
}
.legal-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.contact-info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-1);
}
.contact-form-wrapper {
  background: var(--bg-white);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.input-group {
  margin-bottom: 2rem;
}
.input-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  background: var(--bg-light);
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--accent-1);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* --- 19. RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-card:nth-child(2) {
    transform: translateY(0);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .header-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .about-grid,
  .calc-row,
  .reports-grid,
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }
  .industry-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .calculator-section {
    margin: 0;
    border-radius: 0;
    padding: 4rem 1rem;
  }
  .calc-wrapper {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    text-align: center;
  }
  body {
    cursor: auto;
  } /* Disable custom cursor on mobile */
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}
