/* ============================================
   THE PRO BROS — Component Styles
   ============================================ */

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: calc(var(--z-sticky) + 1);
}

.nav__logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition-base);
}

.nav.scrolled .nav__logo img {
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-silver-light);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Navigation dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(28, 28, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-body-sm);
  color: var(--color-silver);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  padding-left: var(--space-lg);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: calc(var(--z-sticky) + 1);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.nav__toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transition: right var(--transition-slow);
  z-index: var(--z-sticky);
}

.nav__mobile.open {
  right: 0;
}

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-silver);
  transition: color var(--transition-fast);
}

.nav__mobile a:hover {
  color: var(--color-white);
}

/* Nav CTA */
.nav__cta {
  margin-left: var(--space-md);
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shimmer);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Primary */
.btn--primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(74, 159, 217, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 159, 217, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Secondary */
.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-silver-dark);
}

.btn--secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 14px 16px;
}

.btn--ghost:hover {
  color: var(--color-accent-light);
}

.btn--ghost svg {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover svg {
  transform: translateX(4px);
}

/* Large */
.btn--lg {
  padding: 18px 40px;
  font-size: var(--fs-body);
}

/* Small */
.btn--sm {
  padding: 10px 20px;
  font-size: var(--fs-caption);
}

/* Icon */
.btn__icon {
  width: 18px;
  height: 18px;
}


/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--short {
  min-height: 60vh;
}

.hero--medium {
  min-height: 75vh;
}

.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;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(74, 159, 217, 0.1);
  border: 1px solid rgba(74, 159, 217, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-accent);
  letter-spacing: var(--ls-wide);
}

.hero__title {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xl);
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--color-grey-light);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero decorative elements */
.hero__decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 159, 217, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-body-sm);
  color: var(--color-grey);
}

.breadcrumbs a {
  color: var(--color-grey-light);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs__sep {
  color: var(--color-grey-dark);
}

.breadcrumbs__current {
  color: var(--color-silver);
}


/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 11, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover .card__image-overlay {
  opacity: 1;
}

.card__body {
  padding: var(--space-xl);
}

.card__overline {
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.card:hover .card__title {
  color: var(--color-accent);
}

.card__text {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  line-height: var(--lh-body);
}

.card__footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Feature Card */
.feature-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(74, 159, 217, 0.1);
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  background: var(--gradient-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  line-height: var(--lh-body);
}

/* Product Card */
.product-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: block;
  text-decoration: none;
}

.product-card:hover {
  border-color: rgba(74, 159, 217, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-charcoal);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 12px;
  background: var(--gradient-accent);
  color: var(--color-white);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.product-card__body {
  padding: var(--space-lg) var(--space-xl);
}

.product-card__title {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.product-card:hover .product-card__title {
  color: var(--color-accent);
}

.product-card__desc {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
}

.product-card__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
}

.product-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.product-card:hover .product-card__cta svg {
  transform: translateX(4px);
}


/* ============================================
   STATISTICS / COUNTERS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
}

.stat {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--glass-border);
}

.stat:last-child::after {
  display: none;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat__number .stat__suffix {
  font-size: 0.6em;
  color: var(--color-accent);
}

.stat__label {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  font-weight: var(--fw-medium);
}


/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process__step {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}

.process__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  background: rgba(74, 159, 217, 0.1);
  border: 2px solid rgba(74, 159, 217, 0.3);
  transition: all var(--transition-base);
}

.process__step:hover .process__number {
  background: var(--gradient-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.process__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}

.process__title {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.process__text {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  line-height: var(--lh-body);
}

/* Connection line */
.process__connector {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--glass-border-strong), transparent);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 var(--space-xl);
}

.testimonial__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote {
  font-size: var(--fs-h4);
  font-weight: var(--fw-light);
  color: var(--color-silver-light);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  font-style: italic;
  position: relative;
}

.testimonial__quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border-strong);
}

.testimonial__info h4 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
}

.testimonial__info p {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-warning);
}

.testimonial__stars svg {
  width: 20px;
  height: 20px;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: var(--gradient-accent);
  border-color: var(--color-accent);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: var(--space-sm);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-grey-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: var(--radius-full);
}


/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq__item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item.active {
  border-color: rgba(74, 159, 217, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: var(--fs-body);
  color: var(--color-grey-light);
  line-height: var(--lh-body);
}


/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-silver);
  margin-bottom: var(--space-sm);
}

.form-label .required {
  color: var(--color-accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
  background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-grey-dark);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.form-file {
  position: relative;
}

.form-file__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-file__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--color-grey-light);
  font-size: var(--fs-body-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-file__label:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(74, 159, 217, 0.05);
}

.form-error {
  font-size: var(--fs-caption);
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: var(--color-error);
}

.form-group.error .form-error {
  display: block;
}


/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section--accent {
  background: var(--gradient-cta);
}

.cta-section--dark {
  background: var(--gradient-charcoal);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
}

.cta-section__text {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
}

.cta-section__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Decorative */
.cta-section__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal-deep);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer__brand p {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  margin-top: var(--space-lg);
  max-width: 300px;
  line-height: var(--lh-body);
}

.footer__brand img {
  height: 48px;
  width: auto;
}

.footer__heading {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__newsletter {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--fs-body-sm);
}

.footer__newsletter input:focus {
  border-color: var(--color-accent);
}

.footer__newsletter button {
  padding: 12px 20px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.footer__newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--color-grey-light);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--gradient-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid var(--glass-border);
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-body-sm);
  color: var(--color-grey);
}

.footer__bottom a {
  color: var(--color-grey-light);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--color-accent);
}


/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  display: block;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
}

.blog-card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--space-xl);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-caption);
  color: var(--color-grey);
  margin-bottom: var(--space-md);
}

.blog-card__tag {
  padding: 2px 10px;
  background: rgba(74, 159, 217, 0.1);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
}

.blog-card__title {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--color-accent);
}

.blog-card__excerpt {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  line-height: var(--lh-body);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
}

.blog-card__read-more svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card__read-more svg {
  transform: translateX(4px);
}


/* ============================================
   INDUSTRY CARDS
   ============================================ */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.industry-card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.industry-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.industry-card__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}


/* ============================================
   MAP SECTION
   ============================================ */
.world-map {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.world-map svg {
  width: 100%;
  height: auto;
}

.world-map__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.world-map__pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  border: none;
  box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 159, 217, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}


/* ============================================
   GALLERY / LIGHTBOX
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-dropdown);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}


/* ============================================
   PAGE-SPECIFIC: PRODUCT DETAIL
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: 100px;
}

.product-detail__main-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

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

.product-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-detail__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.product-detail__thumb.active,
.product-detail__thumb:hover {
  border-color: var(--color-accent);
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__info h1 {
  margin-bottom: var(--space-lg);
}

.product-detail__desc {
  color: var(--color-grey-light);
  line-height: var(--lh-body);
  margin-bottom: var(--space-2xl);
}

.product-detail__specs {
  margin-bottom: var(--space-2xl);
}

.product-detail__spec {
  display: flex;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--glass-border);
}

.product-detail__spec dt {
  width: 40%;
  font-weight: var(--fw-semibold);
  color: var(--color-silver);
}

.product-detail__spec dd {
  width: 60%;
  color: var(--color-grey-light);
}


/* ============================================
   BLOG DETAIL / ARTICLE
   ============================================ */
.article {
  max-width: 780px;
  margin: 0 auto;
}

.article__header {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: var(--fs-body-sm);
  color: var(--color-grey);
  margin-bottom: var(--space-xl);
}

.article__featured-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
}

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

.article__content {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: var(--color-silver-light);
}

.article__content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-h3);
}

.article__content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h4);
}

.article__content p {
  margin-bottom: var(--space-lg);
}

.article__content ul,
.article__content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article__content ul { list-style: disc; }
.article__content ol { list-style: decimal; }

.article__content li {
  margin-bottom: var(--space-sm);
  color: var(--color-grey-light);
}

.article__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__content a:hover {
  color: var(--color-accent-light);
}

.article__content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-2xl) 0;
  background: rgba(74, 159, 217, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-silver);
}

.article__content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: var(--space-2xl) 0;
}

/* Author box */
.author-box {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.author-box__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__name {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-xs);
}

.author-box__bio {
  font-size: var(--fs-body-sm);
  color: var(--color-grey-light);
  line-height: var(--lh-body);
}

/* Related posts */
.related-posts {
  margin-top: var(--space-4xl);
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}


/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.pagination__link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-grey-light);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.pagination__link:hover,
.pagination__link.active {
  background: var(--gradient-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.contact-info__item:hover {
  border-color: var(--glass-border-strong);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(74, 159, 217, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__label {
  font-size: var(--fs-body-sm);
  color: var(--color-grey);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-white);
}

.contact-info__value a {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.contact-info__value a:hover {
  color: var(--color-accent);
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--color-charcoal);
  margin-top: var(--space-xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================
   PAGE SPECIFIC: MANUFACTURING
   ============================================ */
.mfg-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--glass-border);
}

.mfg-step:nth-child(even) {
  direction: rtl;
}

.mfg-step:nth-child(even) > * {
  direction: ltr;
}

.mfg-step__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mfg-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfg-step__number {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.mfg-step__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
}

.mfg-step__text {
  color: var(--color-grey-light);
  line-height: var(--lh-body);
}

.mfg-step__list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mfg-step__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--color-grey-light);
  font-size: var(--fs-body-sm);
}

.mfg-step__list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ============================================
   TAG / BADGE
   ============================================ */
.tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-full);
  background: rgba(74, 159, 217, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(74, 159, 217, 0.2);
}

.tag--silver {
  background: rgba(192, 192, 192, 0.1);
  color: var(--color-silver);
  border-color: rgba(192, 192, 192, 0.2);
}


/* ============================================
   LOADING / SKELETON
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--color-charcoal) 25%, var(--color-charcoal-light) 50%, var(--color-charcoal) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
