/* ============================================================
   cr8sprk | AI & Automation Consulting
   Main Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  --blue-primary: #2f98d4;
  --blue-dark: #325aa9;
  --blue-deeper: #4366b0;
  --navy: #323947;
  --yellow: #fed600;
  --orange: #f8991d;
  --white: #f7f9fc;
  --gray-light: #f5f5f7;
  --gray-dark: #2d2d2d;
  --black: #191919;
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.section-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--blue-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(47, 152, 212, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
  background-color: var(--blue-primary);
  color: #fff;
}

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

/* ------------------------------------------------------------
   Navigation — YELLOW BAR
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--yellow);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;
}

/* Desktop nav menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 1px;
}

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  white-space: nowrap;
}

/* Hamburger toggle button */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--gray-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hamburger → X animation */
.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu slide-in */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--yellow);
    z-index: 1050;
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    display: flex;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
    display: block !important;
  }
}

/* Desktop: show nav-menu inline, hide hamburger */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

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

/* Geometric dot pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(47, 152, 212, 0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(254, 214, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Subtle radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 152, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-headline {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: var(--yellow);
}

.hero-sub {
  color: var(--gray-light);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-cta {
  animation: pulse 3s ease-in-out infinite;
}

.hero-cta:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 152, 212, 0.4);
}

.hero-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

.hero-secondary {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-secondary:hover {
  color: #fff;
}

.hero-secondary .arrow-down {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-secondary:hover .arrow-down {
  transform: translateY(3px);
}

/* Staggered hero entrance */
.hero-content .fade-in:nth-child(1) { transition-delay: 0.1s; }
.hero-content .fade-in:nth-child(2) { transition-delay: 0.25s; }
.hero-content .fade-in:nth-child(3) { transition-delay: 0.4s; }

/* ------------------------------------------------------------
   Problem Section (Who This Is For)
   ------------------------------------------------------------ */
.problem {
  background-color: var(--white);
}

.problem h2 {
  margin-bottom: 1.5rem;
}

.pain-points {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.pain-point {
  border-left: 3px solid var(--yellow);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pain-arrow {
  color: var(--blue-primary);
  font-weight: 600;
  margin-right: 0.3rem;
}

.section-closing {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 650px;
  color: var(--navy);
}

/* ------------------------------------------------------------
   How It Works Section
   ------------------------------------------------------------ */
.how-it-works {
  background-color: var(--gray-light);
}

.how-it-works h2 {
  margin-bottom: 3rem;
}

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

.process-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(47, 152, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-icon svg {
  width: 28px;
  height: 28px;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.process-step {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
}

.process-card h3 {
  margin-bottom: 1rem;
}

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

/* ------------------------------------------------------------
   Case Studies (Solutions) Section
   ------------------------------------------------------------ */
.solutions {
  background-color: var(--white);
}

.solutions h2 {
  margin-bottom: 0.75rem;
}

.case-studies {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.case-study {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cs-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(47, 152, 212, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(254, 214, 0, 0.04) 0%, transparent 50%);
}

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

.cs-content {
  padding: 2rem;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background-color: rgba(47, 152, 212, 0.1);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
}

.case-study h3 {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

/* Tabbed Content */
.cs-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  color: var(--blue-primary);
  border-bottom-color: var(--blue-primary);
}

.tab-content {
  display: none;
  font-size: 0.95rem;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

.outcome-list {
  list-style: none;
  padding: 0;
}

.outcome-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.outcome-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 700;
}

.disclaimer {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

/* ------------------------------------------------------------
   About Section
   ------------------------------------------------------------ */
.about {
  background-color: var(--navy);
}

.about .section-label {
  color: var(--blue-primary);
}

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

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

.about-text p,
.about-body p {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: #999;
}

.credentials span {
  white-space: nowrap;
}

.cred-sep {
  color: #666;
  margin: 0 0.25rem;
}

.about-cta {
  margin-top: 1rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.headshot-placeholder {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--gray-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headshot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headshot-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.5;
}

/* ------------------------------------------------------------
   Contact Section
   ------------------------------------------------------------ */
.contact {
  background-color: var(--gray-light);
}

.contact h2 {
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.contact-booking {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-booking h3 {
  margin-bottom: 1.5rem;
}

.contact-booking .btn {
  align-self: center;
  margin-bottom: 2rem;
}

.contact-email-line {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-email {
  color: var(--blue-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.required {
  color: var(--blue-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 152, 212, 0.1);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

/* Form success message */
.form-success {
  display: none;
  padding: 2rem;
  text-align: center;
  color: var(--blue-primary);
}

.form-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success svg {
  margin-bottom: 0.5rem;
}

.form-success h3 {
  color: var(--blue-primary);
  font-size: 1.25rem;
}

/* Form error message */
.form-error {
  color: #e53e3e;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background-color: var(--black);
  padding: 3rem 0;
  text-align: center;
}

.footer p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.footer a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ------------------------------------------------------------
   Back to Top Button
   ------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--blue-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   Animations
   ------------------------------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 152, 212, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(47, 152, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 152, 212, 0);
  }
}

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   Responsive — Tablet (min-width: 768px)
   ------------------------------------------------------------ */
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: auto;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  /* Process grid — 2 columns */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Case studies — image beside content */
  .case-study {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }

  .cs-image {
    aspect-ratio: auto;
    min-height: 100%;
  }

  /* About — side by side */
  .about-grid {
    grid-template-columns: 3fr 2fr;
  }

  /* Contact — two columns */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-booking {
    text-align: left;
  }

  .contact-booking .btn {
    align-self: flex-start;
  }

  .contact-form-wrap {
    padding: 2.5rem;
  }
}

/* ------------------------------------------------------------
   Responsive — Desktop (min-width: 1024px)
   ------------------------------------------------------------ */
@media (min-width: 1024px) {
  /* Process grid — 4 columns */
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .case-studies {
    gap: 2.5rem;
  }

  .about-grid {
    gap: 4rem;
  }

  .contact-grid {
    gap: 4rem;
  }
}

/* ------------------------------------------------------------
   Responsive — Large Desktop (min-width: 1200px)
   ------------------------------------------------------------ */
@media (min-width: 1200px) {
  .hero-content {
    max-width: 800px;
  }
}

/* ------------------------------------------------------------
   Responsive — Small Mobile (max-width: 480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-cta {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .cs-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .headshot-placeholder {
    width: 200px;
    height: 200px;
  }

  .credentials {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .cred-sep {
    display: none;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}

/* ------------------------------------------------------------
   Accessibility — Reduced Motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero-cta {
    animation: none;
  }

  .process-card:hover,
  .case-study:hover {
    transform: none;
  }
}

/* ------------------------------------------------------------
   Print Styles
   ------------------------------------------------------------ */
@media print {
  .navbar,
  .back-to-top {
    display: none !important;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  .about {
    background: #fff;
  }

  .about h2,
  .about-body p {
    color: #000;
  }
}
