/*
Theme Name: Ethix Marketing
Theme URI: 
Author: You
Author URI: https://wordpress.org
Description: Your theme.
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 7.2
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/



/* ============================================================
   ETHIX MARKETING — style.css
   Font: Plus Jakarta Sans (headings) + DM Sans (body)
   Colors: #FF8A00 → #FF5A00 → #FF2E00
============================================================ */

/* ============================
   CSS VARIABLES & BASE
============================ */
:root {
  --em-orange-start: #FF8A00;
  --em-orange-mid: #FF5A00;
  --em-orange-end: #FF2E00;
  --em-gradient: linear-gradient(135deg, #FF8A00 0%, #FF5A00 50%, #FF2E00 100%);
  --em-gradient-h: linear-gradient(90deg, #FF8A00 0%, #FF5A00 50%, #FF2E00 100%);
  --em-dark: #0f0f0f;
  --em-dark2: #1a1a1a;
  --em-gray: #6b6b6b;
  --em-gray2: #9a9a9a;
  --em-light: #f9f8f6;
  --em-white: #ffffff;
  --em-border: #e8e4de;
  --em-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --em-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10);
  --em-radius: 12px;
  --em-radius-lg: 20px;
  --em-font-head: 'Plus Jakarta Sans', sans-serif;
  --em-font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--em-font-body);
  font-size: 16px;
  color: var(--em-dark);
  background: var(--em-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================
   UTILITIES
============================ */
.em-gradient-text {
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.em-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--em-gradient);
  color: #fff !important;
  font-family: var(--em-font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.em-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 90, 0, 0.35);
  color: #fff;
}

.em-btn-primary.em-btn-lg {
  padding: 15px 34px;
  font-size: 16px;
}

.em-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--em-white);
  color: var(--em-dark) !important;
  font-family: var(--em-font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--em-border);
  transition: all 0.3s ease;
}

.em-btn-ghost:hover {
  border-color: var(--em-orange-mid);
  color: var(--em-orange-mid) !important;
}

.em-btn-ghost.em-btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.em-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--em-dark) !important;
  font-family: var(--em-font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--em-border);
  transition: all 0.3s ease;
}

.em-btn-outline:hover {
  border-color: var(--em-orange-mid);
  color: var(--em-orange-mid) !important;
}

.em-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--em-orange-end) !important;
  font-family: var(--em-font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.em-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.em-btn-white.em-btn-lg {
  padding: 15px 34px;
  font-size: 16px;
}

.em-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--em-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--em-orange-mid);
  background: rgba(255, 90, 0, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.em-section-title {
  font-family: var(--em-font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--em-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.em-section-sub {
  font-size: 16px;
  color: var(--em-gray);
  max-width: 580px;
  line-height: 1.7;
}

.em-section-header .em-section-sub {
  margin: 0 auto;
}

.em-section-header {
  margin-bottom: 8px;
}

/* ============================
   HEADER / NAVBAR
============================ */
.em-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.em-header.scrolled .em-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 10px 0;
}

.em-navbar {
  padding: 2px 0;
  background: transparent;
  transition: all 0.3s ease;
}

.em-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.em-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--em-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}

.em-logo-text {
  font-family: var(--em-font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--em-dark);
  letter-spacing: -0.02em;
}

.em-logo-accent {
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.em-nav-links .nav-link {
  font-family: var(--em-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--em-dark) !important;
  padding: 6px 15px !important;
  transition: color 0.2s;
  position: relative;
}

.em-nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--em-gradient-h);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.em-nav-links .nav-link:hover {
  color: var(--em-orange-mid) !important;
}

.em-nav-links .nav-link:hover::after {
  width: 60%;
}

.em-toggler {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.em-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--em-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================
   HERO SECTION — centered layout matching screenshot
============================ */
.em-hero {
  padding: 150px 0 80px;
  background: var(--em-white);
  position: relative;
  overflow: hidden;
}

/* Subtle warm radial glow like screenshot */
.em-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center top, rgba(255, 138, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.em-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.em-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--em-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--em-dark);
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.em-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--em-orange-mid);
  border-radius: 50%;
  animation: em-pulse 2s infinite;
}

@keyframes em-pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.em-hero-headline {
  font-family: var(--em-font-head);
  font-size: clamp(44px, 7vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--em-dark);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

/* The gradient line in italic — matches screenshot */
.em-hero-headline .em-gradient-text {
  /*font-style: italic;*/
}

.em-hero-body {
  font-size: 17px;
  color: var(--em-gray);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.em-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.em-play-icon {
  font-size: 12px;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats — horizontal, no card wrapper */
.em-hero-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.em-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.em-stat-num,
.em-stat-suffix {
  font-family: var(--em-font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.em-stat-lbl {
  font-size: 14px;
  color: var(--em-gray);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================
   BRAND LOGOS SLIDER
============================ */
.em-brands {
  padding: 48px 0 0;
  background: var(--em-white);
  border-top: 1px solid var(--em-border);
  border-bottom: 1px solid var(--em-border);
}

.em-brands-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--em-gray2);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.em-brands-track-wrap {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

/* fade edges */
.em-brands-track-wrap::before,
.em-brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.em-brands-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.em-brands-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.em-brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: em-scroll-logos 28s linear infinite;
}

.em-brands-track:hover {
  animation-play-state: paused;
}

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

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

.em-brand-item {
  flex-shrink: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.2s;
  height: 40px;
}

.em-brand-item:hover {
  opacity: 0.85;
}

.em-brand-item svg {
  height: 30px;
  width: auto;
}

/* ============================
   ABOUT SECTION
============================ */
.em-about {
  padding: 100px 0;
  background: var(--em-light);
}

.em-about-visual {
  position: relative;
  padding: 20px;
}

.em-about-badge-box {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--em-gradient);
  color: #fff;
  border-radius: var(--em-radius);
  padding: 16px 20px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(255, 90, 0, 0.3);
}

.em-about-badge-num {
  display: block;
  font-family: var(--em-font-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.em-about-badge-txt {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

.em-about-img-block {
  background: var(--em-white);
  border-radius: var(--em-radius-lg);
  padding: 28px;
}

.em-about-stat-card {
  background: var(--em-light);
  border-radius: var(--em-radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.em-about-stat-card i {
  font-size: 22px;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.em-about-stat-card strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.em-about-stat-card span {
  font-size: 12px;
  color: var(--em-gray2);
}

.em-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.em-ag-box {
  background: var(--em-light);
  border-radius: var(--em-radius);
  padding: 16px 14px;
  text-align: center;
  transition: all 0.3s;
}

.em-ag-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--em-shadow);
}

.em-ag-box i {
  font-size: 22px;
  color: var(--em-gray2);
  display: block;
  margin-bottom: 8px;
}

.em-ag-box p {
  font-size: 12px;
  font-weight: 600;
  color: var(--em-dark);
  margin: 0;
}

.em-ag-orange {
  background: var(--em-gradient);
}

.em-ag-orange i {
  color: rgba(255, 255, 255, 0.9);
}

.em-ag-orange p {
  color: #fff;
}

.em-ag-dark {
  background: var(--em-dark);
}

.em-ag-dark i {
  color: rgba(255, 255, 255, 0.65);
}

.em-ag-dark p {
  color: #fff;
}

.em-about-body {
  font-size: 15.5px;
  color: var(--em-gray);
  line-height: 1.75;
  margin-bottom: 14px;
}

.em-about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.em-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--em-dark);
}

.em-check-item i {
  color: var(--em-orange-mid);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================
   SERVICES SECTION — screenshot style
============================ */
.em-services {
  padding: 100px 0;
  background: var(--em-white);
}

.em-svc-card {
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  border-radius: var(--em-radius-lg);
  padding: 28px 26px 22px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.em-svc-card:hover {
  border-color: rgba(255, 90, 0, 0.25);
  box-shadow: var(--em-shadow-lg);
  transform: translateY(-4px);
}

.em-svc-wide {
  flex-direction: column;
}

.em-svc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.em-svc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 90, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--em-orange-mid);
  flex-shrink: 0;
}

.em-svc-stat-num {
  font-family: var(--em-font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--em-orange-mid);
  margin-left: auto;
  text-align: right;
  line-height: 1;
  display: block;
}

.em-svc-stat-lbl {
  font-size: 11px;
  color: var(--em-gray2);
  display: block;
  text-align: right;
  margin-top: 2px;
}

/* stack stat number + label */
.em-svc-top {
  flex-wrap: wrap;
}

.em-svc-stat-num,
.em-svc-stat-lbl {
  display: block;
}

/* group them to the right */
.em-svc-top>.em-svc-stat-num,
.em-svc-top>.em-svc-stat-lbl {
  margin-left: auto;
}

/* override: put num + lbl in a div via JS — actually handle with flex trick */
.em-svc-top {
  position: relative;
}

.em-svc-stat-num {
  position: absolute;
  right: 0;
  top: 0;
}

.em-svc-stat-lbl {
  position: absolute;
  right: 0;
  top: 26px;
}

.em-svc-title {
  font-family: var(--em-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--em-dark);
  margin-bottom: 10px;
}

.em-svc-desc {
  font-size: 14.5px;
  color: var(--em-gray);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.em-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.em-svc-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--em-dark);
  background: var(--em-light);
  border: 1px solid var(--em-border);
  border-radius: 50px;
  padding: 4px 12px;
}

.em-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--em-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--em-orange-mid) !important;
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
}

.em-svc-link:hover {
  gap: 10px;
  color: var(--em-orange-end) !important;
}

/* ============================
   FEATURES SECTION
============================ */
.em-features {
  padding: 100px 0;
  background: var(--em-light);
}

.em-feat-card {
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  border-radius: var(--em-radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.em-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--em-shadow-lg);
  border-color: transparent;
}

.em-feat-featured {
  background: var(--em-dark);
  border-color: transparent;
}

.em-feat-featured .em-feat-title {
  color: #fff;
}

.em-feat-featured .em-feat-desc {
  color: rgba(255, 255, 255, 0.55);
}

.em-feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 90, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--em-orange-mid);
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.em-feat-card:hover .em-feat-icon,
.em-feat-featured .em-feat-icon {
  background: var(--em-gradient);
  color: #fff;
}

.em-feat-title {
  font-family: var(--em-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--em-dark);
  margin-bottom: 12px;
}

.em-feat-desc {
  font-size: 14.5px;
  color: var(--em-gray);
  line-height: 1.7;
}

/* ============================
   PROCESS SECTION
============================ */
.em-process {
  padding: 100px 0;
  background: var(--em-white);
}

.em-process-steps {
  position: relative;
  margin-top: 20px;
}

.em-process-line {
  position: absolute;
  top: 68px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--em-border);
  z-index: 0;
}

.em-process-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--em-gradient-h);
  border-radius: 2px;
}

.em-step-card {
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  border-radius: var(--em-radius-lg);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.em-step-card:hover,
.em-step-active {
  border-color: transparent;
  box-shadow: var(--em-shadow-lg);
  transform: translateY(-6px);
}

.em-step-num {
  font-family: var(--em-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--em-gray2);
  margin-bottom: 12px;
}

.em-step-active .em-step-num {
  color: var(--em-orange-mid);
}

.em-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255, 90, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--em-orange-mid);
  margin: 0 auto 14px;
  transition: all 0.3s;
}

.em-step-active .em-step-icon,
.em-step-card:hover .em-step-icon {
  background: var(--em-gradient);
  color: #fff;
}

.em-step-title {
  font-family: var(--em-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--em-dark);
  margin-bottom: 8px;
}

.em-step-desc {
  font-size: 13.5px;
  color: var(--em-gray);
  line-height: 1.65;
}

/* ============================
   RESULTS SECTION
============================ */
.em-results {
  padding: 100px 0;
  background: var(--em-dark);
  position: relative;
  overflow: hidden;
}

.em-results::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.em-results .em-section-label {
  background: rgba(255, 90, 0, 0.15);
  color: var(--em-orange-start);
}

.em-results .em-section-title {
  color: #fff;
}

.em-result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--em-radius-lg);
  padding: 34px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
}

.em-result-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 90, 0, 0.3);
  transform: translateY(-4px);
}

.em-result-num {
  font-family: var(--em-font-head);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.em-result-lbl {
  font-family: var(--em-font-head);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.em-result-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

/* ============================
   TESTIMONIALS SECTION
============================ */
.em-testimonials {
  padding: 100px 0;
  background: var(--em-white);
}

.em-testi-card {
  background: var(--em-light);
  border-radius: var(--em-radius-lg);
  padding: 26px 22px;
  height: 100%;
  border: 1.5px solid var(--em-border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.em-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--em-shadow-lg);
  border-color: transparent;
}

.em-testi-featured {
  background: var(--em-dark);
  border-color: transparent;
}

.em-testi-featured .em-testi-quote {
  color: rgba(255, 255, 255, 0.7);
}

.em-testi-featured .em-testi-author strong {
  color: #fff;
}

.em-testi-featured .em-testi-author span {
  color: rgba(255, 255, 255, 0.4);
}

.em-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--em-orange-mid);
}

.em-testi-quote {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--em-gray);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 18px;
}

.em-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.em-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--em-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--em-font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--em-dark);
  flex-shrink: 0;
}

.em-ta-orange {
  background: var(--em-gradient);
  color: #fff;
}

.em-testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--em-dark);
}

.em-testi-author span {
  font-size: 12px;
  color: var(--em-gray2);
}

/* ============================
   FAQ SECTION
============================ */
.em-faq {
  padding: 100px 0;
  background: var(--em-light);
}

.em-faq-sub {
  font-size: 15px;
  color: var(--em-gray);
  line-height: 1.65;
  margin-bottom: 28px;
}

.em-faq-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.em-faq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  border-radius: var(--em-radius);
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.em-faq-contact-item:hover {
  border-color: var(--em-orange-mid);
  box-shadow: var(--em-shadow);
}

.em-faq-contact-item i {
  font-size: 22px;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.em-faq-contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--em-dark);
}

.em-faq-contact-item span {
  font-size: 12px;
  color: var(--em-gray2);
}

.em-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.em-faq-item {
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  border-radius: var(--em-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.em-faq-item:has(.show) {
  border-color: var(--em-orange-mid);
}

.em-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--em-font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--em-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.em-faq-question:not(.collapsed) {
  color: var(--em-orange-mid);
}

.em-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--em-orange-mid);
  flex-shrink: 0;
  transition: all 0.3s;
}

.em-faq-question:not(.collapsed) .em-faq-icon {
  background: var(--em-orange-mid);
  color: #fff;
  transform: rotate(45deg);
}

.em-faq-answer {
  padding: 0 20px 18px;
}

.em-faq-answer p {
  font-size: 14.5px;
  color: var(--em-gray);
  line-height: 1.7;
  margin: 0;
}

/* ============================
   CTA SECTION
============================ */
.em-cta {
  padding: 100px 0;
  background: var(--em-gradient);
  position: relative;
  overflow: hidden;
}

.em-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.em-cta-label {
  font-family: var(--em-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.em-cta-title {
  font-family: var(--em-font-head);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.em-cta-highlight {
  position: relative;
  color: #fff;
}

.em-cta-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.em-cta-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.em-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.em-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--em-font-head);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.em-cta-whatsapp:hover {
  color: #fff !important;
}

.em-cta-whatsapp i {
  font-size: 18px;
}

.em-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.em-cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* ============================
   FOOTER — WHITE background
============================ */
.em-footer {
  padding: 72px 0 0;
  background: var(--em-white);
  border-top: 1.5px solid var(--em-border);
}

.em-footer-about {
  font-size: 14px;
  color: var(--em-gray);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 300px;
}

.em-footer-heading {
  font-family: var(--em-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--em-dark);
  margin-bottom: 18px;
}

.em-footer-links {
  list-style: none;
}

.em-footer-links li {
  margin-bottom: 10px;
}

.em-footer-links a {
  font-size: 14px;
  color: var(--em-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.em-footer-links a:hover {
  color: var(--em-orange-mid);
}

.em-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.em-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--em-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.em-footer-contact-item:hover {
  color: var(--em-dark);
}

.em-footer-contact-item i {
  font-size: 16px;
  color: var(--em-orange-mid);
  flex-shrink: 0;
}

.em-footer-bottom {
  border-top: 1.5px solid var(--em-border);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.em-footer-bottom span {
  font-size: 13px;
  color: var(--em-gray2);
}

.em-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.em-footer-bottom-links a {
  font-size: 13px;
  color: var(--em-gray2);
  text-decoration: none;
  transition: color 0.2s;
}

.em-footer-bottom-links a:hover {
  color: var(--em-orange-mid);
}

/* ============================
   SCROLL FADE IN
============================ */
.em-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
  .em-process-line {
    display: none;
  }

  .em-about-checks {
    grid-template-columns: 1fr;
  }

  .em-hero-stats {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .em-hero {
    padding: 120px 0 60px;
  }

  .em-hero-headline {
    font-size: clamp(36px, 10vw, 56px);
  }

  .em-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .em-hero-stats {
    gap: 28px;
  }

  .em-about-badge-box {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
  }

  .em-faq .row {
    flex-direction: column;
  }

  .em-cta-actions {
    flex-direction: column;
  }

  .em-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .em-brands-track-wrap::before,
  .em-brands-track-wrap::after {
    width: 50px;
  }
}








/* ============================
   TESTIMONIALS SLIDER
============================ */
.em-testi-slider {
  overflow: hidden;
  position: relative;
}

.em-testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.em-testi-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .em-testi-slide { flex: 0 0 50%; }
}

@media (max-width: 767px) {
  .em-testi-slide { flex: 0 0 100%; }
}

.em-testi-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.em-testi-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e8e4de;
  background: #fff;
  color: #0f0f0f;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.em-testi-arrow:hover {
  background: linear-gradient(135deg, #FF8A00, #FF2E00);
  color: #fff;
  border-color: transparent;
}

.em-testi-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.em-testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #d8d3cc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.em-testi-dot.active {
  background: #FF5A00;
  width: 24px;
  border-radius: 4px;
}






/* Wide dropdown for Industries (2-column grid) */
.em-dropdown-menu-wide {
  min-width: 540px!important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.em-dropdown-menu-wide::before {
  grid-column: 1 / -1;
}

@media (max-width: 991px) {
  .em-dropdown-menu-wide {
    min-width: unset;
    grid-template-columns: 1fr;
  }
}