:root {
  --edw-primary: #0a3d8f;
  --edw-primary-dark: #062760;
  --edw-accent: #00c4cc;
  --edw-accent2: #1a6bff;
  --edw-green: #12b76a;
  --edw-orange: #f97316;
  --edw-white: #ffffff;
  --edw-off-white: #f6f8ff;
  --edw-gray-100: #f1f5f9;
  --edw-gray-200: #e2e8f0;
  --edw-gray-500: #64748b;
  --edw-gray-700: #334155;
  --edw-gray-900: #0f172a;

  --edw-radius-sm: 8px;
  --edw-radius-md: 16px;
  --edw-radius-lg: 24px;
  --edw-radius-xl: 36px;
  --edw-shadow-sm: 0 2px 12px rgba(10, 61, 143, 0.08);
  --edw-shadow-md: 0 8px 32px rgba(10, 61, 143, 0.14);
  --edw-shadow-lg: 0 20px 60px rgba(10, 61, 143, 0.18);
  --edw-gradient-main: linear-gradient(
    135deg,
    #0a3d8f 0%,
    #1a6bff 60%,
    #00c4cc 100%
  );
  --edw-gradient-soft: linear-gradient(135deg, #eef4ff 0%, #e0f7fa 100%);
  --edw-gradient-card: linear-gradient(135deg, #ffffff 0%, #f6f8ff 100%);
  --edw-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.edw-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--edw-accent2);
  background: rgba(26, 107, 255, 0.08);
  border: 1px solid rgba(26, 107, 255, 0.18);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.edw-section-label i {
  font-size: 0.85rem;
}

.edw-section-title {
  font-weight: 700;
  color: var(--edw-gray-900);
  line-height: 1.2;
}

.edw-section-title .edw-highlight {
  background: var(--edw-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edw-section-sub {
  color: var(--edw-gray-500);
  font-size: 1.05rem;
  max-width: 620px;
}

.edw-section-divider {
  width: 60px;
  height: 4px;
  background: var(--edw-gradient-main);
  border-radius: 2px;
  margin: 12px 0 20px;
}

.edw-section-divider.center {
  margin: 12px auto 20px;
}

/* Buttons */
.edw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--edw-gradient-main);
  color: var(--edw-white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(26, 107, 255, 0.35);
  transition: var(--edw-transition);
  white-space: nowrap;
}

.edw-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26, 107, 255, 0.45);
  color: var(--edw-white);
  text-decoration: none;
}

.edw-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--edw-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--edw-primary);
  cursor: pointer;
  text-decoration: none;
  transition: var(--edw-transition);
  white-space: nowrap;
}

.edw-btn-outline:hover {
  background: var(--edw-primary);
  color: var(--edw-white);
  transform: translateY(-3px);
  text-decoration: none;
}

.edw-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--edw-white);
  color: var(--edw-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--edw-transition);
}

.edw-btn-white:hover {
  transform: translateY(-3px);
  color: var(--edw-primary-dark);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.edw-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--edw-white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-decoration: none;
  transition: var(--edw-transition);
}

.edw-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--edw-white);
  color: var(--edw-white);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Scroll reveal */
.edw-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.edw-reveal.edw-visible {
  opacity: 1;
  transform: translateY(0);
}

.edw-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.edw-reveal-left.edw-visible {
  opacity: 1;
  transform: translateX(0);
}

.edw-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.edw-reveal-right.edw-visible {
  opacity: 1;
  transform: translateX(0);
}

.edw-delay-1 {
  transition-delay: 0.1s;
}

.edw-delay-2 {
  transition-delay: 0.2s;
}

.edw-delay-3 {
  transition-delay: 0.3s;
}

.edw-delay-4 {
  transition-delay: 0.4s;
}

.edw-delay-5 {
  transition-delay: 0.5s;
}

.edw-delay-6 {
  transition-delay: 0.6s;
}

.edw-hero {
  position: relative;
  background: var(--edw-primary-dark);
  overflow: hidden;
  padding: 90px 0 70px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.edw-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(26, 107, 255, 0.45) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(0, 196, 204, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 90% 10%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    );
  z-index: 0;
}

.edw-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.edw-hero-content {
  position: relative;
  z-index: 2;
}

.edw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 196, 204, 0.15);
  border: 1px solid rgba(0, 196, 204, 0.4);
  color: var(--edw-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.edw-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--edw-accent);
  border-radius: 50%;
  animation: edw-pulse 1.6s infinite;
}

@keyframes edw-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.edw-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--edw-white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.edw-hero-title .edw-hero-accent {
  background: linear-gradient(90deg, #00c4cc, #1a6bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edw-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.75;
}

.edw-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.edw-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.edw-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.edw-hero-trust-item i {
  color: var(--edw-accent);
  font-size: 1rem;
}

.edw-hero-visual {
  position: relative;
  z-index: 2;
}

.edw-hero-card-main {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--edw-radius-lg);
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
}

.edw-hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.edw-mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.edw-mockup-dot.red {
  background: #ff5f57;
}

.edw-mockup-dot.yellow {
  background: #febc2e;
}

.edw-mockup-dot.green {
  background: #28c840;
}

.edw-hero-mockup-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}

.edw-hero-mockup-bar i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.edw-hero-mockup-bar span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.edw-hero-mockup-screen {
  background: linear-gradient(160deg, #0a2e6b 0%, #0e4db3 100%);
  border-radius: var(--edw-radius-md);
  padding: 24px;
  min-height: 300px;
}

.edw-mockup-top-bar {
  background: var(--edw-primary);
  border-radius: var(--edw-radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.edw-mockup-logo {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.edw-mockup-nav {
  display: flex;
  gap: 14px;
}

.edw-mockup-nav span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.edw-mockup-book-btn {
  background: var(--edw-accent);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.edw-mockup-hero-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--edw-radius-sm);
  padding: 18px;
  margin-bottom: 14px;
}

.edw-mockup-h {
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  margin-bottom: 8px;
}

.edw-mockup-h.short {
  width: 55%;
}

.edw-mockup-h.shorter {
  width: 40%;
  background: var(--edw-accent);
}

.edw-mockup-p {
  height: 7px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin-bottom: 6px;
}

.edw-mockup-p:last-child {
  width: 70%;
}

.edw-mockup-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.edw-mockup-pill {
  height: 28px;
  border-radius: 50px;
  background: var(--edw-accent2);
  width: 120px;
}

.edw-mockup-pill.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 90px;
}

.edw-mockup-cards-row {
  display: flex;
  gap: 10px;
}

.edw-mockup-card-sm {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--edw-radius-sm);
  padding: 12px;
}

.edw-mockup-icon-sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--edw-accent);
  margin-bottom: 8px;
}

.edw-mockup-text-sm {
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  margin-bottom: 5px;
}

.edw-mockup-text-sm.sub {
  width: 70%;
  background: rgba(255, 255, 255, 0.2);
}

.edw-hero-float-badge {
  position: absolute;
  background: var(--edw-white);
  border-radius: var(--edw-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--edw-shadow-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  z-index: 3;
  animation: edw-float 3s ease-in-out infinite;
}

@keyframes edw-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.edw-hero-float-badge.badge-top {
  top: -20px;
  right: -10px;
  animation-delay: 0.5s;
}

.edw-hero-float-badge.badge-bottom {
  bottom: -18px;
  left: -14px;
  animation-delay: 1.2s;
}

.edw-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.edw-float-icon.green {
  background: rgba(18, 183, 106, 0.12);
  color: var(--edw-green);
}

.edw-float-icon.blue {
  background: rgba(26, 107, 255, 0.12);
  color: var(--edw-accent2);
}

.edw-float-text-label {
  font-size: 0.72rem;
  color: var(--edw-gray-500);
  font-weight: 400;
}

.edw-hero-stats {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--edw-radius-md);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.edw-hero-stat-item {
  text-align: center;
}

.edw-hero-stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--edw-white), var(--edw-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.edw-hero-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  margin-top: 4px;
}

.edw-hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* <!-- FEATURES -- >  */
.edw-features {
  padding: 50px 0;
  background: var(--edw-off-white);
  position: relative;
  overflow: hidden;
}

.edw-features::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 107, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.edw-feature-card {
  background: var(--edw-white);
  border-radius: var(--edw-radius-md);
  padding: 28px 24px;
  box-shadow: var(--edw-shadow-sm);
  border: 1px solid var(--edw-gray-200);
  transition: var(--edw-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.edw-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--edw-gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--edw-transition);
}

.edw-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--edw-shadow-md);
  border-color: rgba(26, 107, 255, 0.18);
}

.edw-feature-card:hover::before {
  transform: scaleX(1);
}

.edw-feature-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--edw-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--edw-transition);
}

.edw-feature-card:hover .edw-feature-icon-wrap {
  transform: scale(1.1);
}

.edw-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  margin-bottom: 8px;
}

.edw-feature-desc {
  font-size: 0.88rem;
  color: var(--edw-gray-500);
  line-height: 1.65;
  margin: 0;
}

.edw-ic-blue {
  background: rgba(26, 107, 255, 0.1);
  color: var(--edw-accent2);
}

.edw-ic-teal {
  background: rgba(0, 196, 204, 0.1);
  color: var(--edw-accent);
}

.edw-ic-green {
  background: rgba(18, 183, 106, 0.1);
  color: var(--edw-green);
}

.edw-ic-orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--edw-orange);
}

.edw-ic-navy {
  background: rgba(10, 61, 143, 0.1);
  color: var(--edw-primary);
}

.edw-ic-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.edw-ic-pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.edw-ic-sky {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.edw-ic-lime {
  background: rgba(132, 204, 22, 0.1);
  color: #84cc16;
}

.edw-ic-rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}

/* <!-- INDUSTRIES -- >  */
.edw-industries {
  padding: 50px 0;
  background: var(--edw-white);
}

.edw-industry-card {
  background: var(--edw-gradient-soft);
  border-radius: var(--edw-radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(26, 107, 255, 0.08);
  transition: var(--edw-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.edw-industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--edw-gradient-main);
  opacity: 0;
  transition: var(--edw-transition);
  border-radius: var(--edw-radius-md);
}

.edw-industry-card:hover::after {
  opacity: 1;
}

.edw-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--edw-shadow-md);
}

.edw-industry-card > * {
  position: relative;
  z-index: 1;
}

.edw-industry-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--edw-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  background: var(--edw-white);
  box-shadow: var(--edw-shadow-sm);
  transition: var(--edw-transition);
}

.edw-industry-card:hover .edw-industry-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.edw-industry-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.edw-industry-card:hover .edw-industry-name {
  color: var(--edw-white);
}

.edw-industry-desc {
  font-size: 0.83rem;
  color: var(--edw-gray-500);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s;
}

.edw-industry-card:hover .edw-industry-desc {
  color: rgba(255, 255, 255, 0.8);
}

.edw-industry-card:hover .edw-industry-icon-wrap i {
  color: var(--edw-white) !important;
}

/* <!-- WHY CHOOSE US -- >  */
.edw-why-choose {
  padding: 50px 0;
  background: var(--edw-off-white);
  position: relative;
  overflow: hidden;
}

.edw-why-left-img {
  position: relative;
}

.edw-why-visual-card {
  background: var(--edw-white);
  border-radius: var(--edw-radius-lg);
  padding: 36px;
  box-shadow: var(--edw-shadow-lg);
  position: relative;
  overflow: hidden;
}

.edw-why-visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--edw-gradient-main);
}

.edw-why-big-stat {
  font-size: 5rem;
  font-weight: 700;
  background: var(--edw-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.edw-why-stat-label {
  font-size: 1.05rem;
  color: var(--edw-gray-500);
  margin-bottom: 28px;
}

.edw-why-mini-stats {
  display: flex;
  gap: 20px;
}

.edw-why-mini-stat {
  flex: 1;
  background: var(--edw-off-white);
  border-radius: var(--edw-radius-sm);
  padding: 16px;
  text-align: center;
}

.edw-why-mini-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--edw-primary);
  line-height: 1;
}

.edw-why-mini-label {
  font-size: 0.78rem;
  color: var(--edw-gray-500);
  margin-top: 4px;
}

.edw-why-reason-grid {
  margin-top: 10px;
}

.edw-why-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--edw-radius-sm);
  transition: var(--edw-transition);
  margin-bottom: 8px;
}

.edw-why-reason-item:hover {
  background: var(--edw-white);
  box-shadow: var(--edw-shadow-sm);
}

.edw-why-reason-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.edw-why-reason-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  margin-bottom: 4px;
}

.edw-why-reason-desc {
  font-size: 0.84rem;
  color: var(--edw-gray-500);
  margin: 0;
  line-height: 1.6;
}

/* <!-- PROCESS -- >  */
.edw-process {
  padding: 50px 0;
  background: var(--edw-primary-dark);
  position: relative;
  overflow: hidden;
}

.edw-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 20% 30%,
      rgba(26, 107, 255, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 70%,
      rgba(0, 196, 204, 0.2) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.edw-process-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.edw-process-content {
  position: relative;
  z-index: 2;
}

.edw-process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 60px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
}

.edw-process-track::-webkit-scrollbar {
  height: 4px;
}

.edw-process-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.edw-process-track::-webkit-scrollbar-thumb {
  background: var(--edw-accent);
  border-radius: 2px;
}

.edw-process-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  position: relative;
}

.edw-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 196, 204, 0.6),
    rgba(26, 107, 255, 0.3)
  );
  z-index: 0;
}

.edw-process-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(0, 196, 204, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--edw-accent);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: var(--edw-transition);
}

.edw-process-step:hover .edw-process-circle {
  background: var(--edw-accent);
  color: var(--edw-white);
  border-color: var(--edw-accent);
  transform: scale(1.1);
}

.edw-process-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--edw-white);
  margin-bottom: 8px;
}

.edw-process-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding: 0 8px;
}

/* <!-- TECH STACK -- >  */
.edw-tech {
  padding: 80px 0;
  background: var(--edw-white);
}

.edw-tech-card {
  background: var(--edw-off-white);
  border-radius: var(--edw-radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--edw-transition);
  height: 100%;
}

.edw-tech-card:hover {
  border-color: var(--edw-accent2);
  transform: translateY(-6px);
  box-shadow: var(--edw-shadow-md);
  background: var(--edw-white);
}

.edw-tech-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--edw-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 14px;
  transition: var(--edw-transition);
}

.edw-tech-card:hover .edw-tech-logo {
  transform: scale(1.12);
}

.edw-tech-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  margin-bottom: 4px;
}

.edw-tech-role {
  font-size: 0.78rem;
  color: var(--edw-gray-500);
}

/* <!-- PRICING -- > */
 .edw-pricing {
  padding: 50px 0;
  background: var(--edw-off-white);
  position: relative;
  overflow: hidden;
}

.edw-pricing-card {
  background: var(--edw-white);
  border-radius: var(--edw-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--edw-shadow-sm);
  border: 2px solid var(--edw-gray-200);
  transition: var(--edw-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.edw-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--edw-shadow-lg);
}

.edw-pricing-card.edw-pricing-featured {
  border-color: var(--edw-accent2);
  background: linear-gradient(160deg, #0a3d8f 0%, #1a6bff 100%);
  color: var(--edw-white);
  transform: scale(1.04);
  box-shadow: var(--edw-shadow-lg);
}

.edw-pricing-card.edw-pricing-featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.edw-pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--edw-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.edw-pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--edw-gray-500);
  margin-bottom: 10px;
}

.edw-pricing-card.edw-pricing-featured .edw-pricing-plan {
  color: rgba(255, 255, 255, 0.7);
}

.edw-pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  line-height: 1;
  margin-bottom: 4px;
}

.edw-pricing-card.edw-pricing-featured .edw-pricing-price {
  color: var(--edw-white);
}

.edw-pricing-price span {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.edw-pricing-period {
  font-size: 0.82rem;
  color: var(--edw-gray-500);
  margin-bottom: 24px;
}

.edw-pricing-card.edw-pricing-featured .edw-pricing-period {
  color: rgba(255, 255, 255, 0.65);
}

.edw-pricing-divider {
  height: 1px;
  background: var(--edw-gray-200);
  margin-bottom: 24px;
}

.edw-pricing-card.edw-pricing-featured .edw-pricing-divider {
  background: rgba(255, 255, 255, 0.2);
}

.edw-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.edw-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--edw-gray-700);
  padding: 7px 0;
  border-bottom: 1px solid var(--edw-gray-100);
}

.edw-pricing-features li:last-child {
  border-bottom: none;
}

.edw-pricing-card.edw-pricing-featured .edw-pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.edw-pricing-features li i {
  color: var(--edw-green);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.edw-pricing-card.edw-pricing-featured .edw-pricing-features li i {
  color: var(--edw-accent);
}

.edw-pricing-features li.edw-crossed {
  text-decoration: line-through;
  color: var(--edw-gray-200);
}

.edw-pricing-features li.edw-crossed i {
  color: var(--edw-gray-200);
}

/* <!-- PORTFOLIO -- > */
 .edw-portfolio {
  padding: 50px 0;
  background: var(--edw-white);
}

.edw-portfolio-card {
  border-radius: var(--edw-radius-md);
  overflow: hidden;
  box-shadow: var(--edw-shadow-sm);
  border: 1px solid var(--edw-gray-200);
  transition: var(--edw-transition);
  height: 100%;
}

.edw-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--edw-shadow-lg);
}

.edw-portfolio-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.edw-portfolio-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 8px;
}

.edw-portfolio-topbar {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.edw-portfolio-topbar-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.edw-portfolio-topbar-line {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.edw-portfolio-block {
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.edw-portfolio-block.tall {
  height: 50px;
}

.edw-portfolio-row {
  display: flex;
  gap: 6px;
}

.edw-portfolio-row > div {
  flex: 1;
  height: 24px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.edw-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 143, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--edw-transition);
}

.edw-portfolio-card:hover .edw-portfolio-overlay {
  opacity: 1;
}

.edw-portfolio-view-btn {
  background: var(--edw-white);
  color: var(--edw-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transform: translateY(10px);
  transition: var(--edw-transition);
}

.edw-portfolio-card:hover .edw-portfolio-view-btn {
  transform: translateY(0);
}

.edw-portfolio-body {
  padding: 20px;
}

.edw-portfolio-tag {
  display: inline-block;
  background: rgba(26, 107, 255, 0.08);
  color: var(--edw-accent2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.edw-portfolio-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  margin-bottom: 8px;
}

.edw-portfolio-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.edw-portfolio-meta span {
  font-size: 0.78rem;
  color: var(--edw-gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}

.edw-portfolio-meta span i {
  color: var(--edw-accent2);
}

/* <!-- TESTIMONIALS -- >  */

.edw-testimonials {
  padding: 50px 0;
  background: var(--edw-off-white);
  position: relative;
  overflow: hidden;
}

.edw-testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 6%;
  font-size: 20rem;
  color: rgba(26, 107, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.edw-testi-card {
  background: var(--edw-white);
  border-radius: var(--edw-radius-md);
  padding: 32px;
  box-shadow: var(--edw-shadow-sm);
  border: 1px solid var(--edw-gray-200);
  transition: var(--edw-transition);
  height: 100%;
  position: relative;
}

.edw-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--edw-shadow-md);
  border-color: rgba(26, 107, 255, 0.18);
}

.edw-testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.edw-testi-quote {
  font-size: 0.92rem;
  color: var(--edw-gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
}

.edw-testi-quote::before {
  content: '"';
  font-size: 1.2rem;
  color: var(--edw-accent2);
}

.edw-testi-quote::after {
  content: '"';
  font-size: 1.2rem;
  color: var(--edw-accent2);
}

.edw-testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.edw-testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.edw-testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--edw-gray-900);
  margin-bottom: 2px;
}

.edw-testi-role {
  font-size: 0.78rem;
  color: var(--edw-gray-500);
}

.edw-testi-verified {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--edw-green);
  font-size: 1rem;
}

/* <!-- FAQ -- > */
.edw-faq {
  padding: 50px 0;
  background: var(--edw-white);
}

.edw-faq-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.edw-faq-item {
  border-radius: var(--edw-radius-md);
  background: var(--edw-off-white);
  border: 1px solid var(--edw-gray-200);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--edw-transition);
}

.edw-faq-item.active {
  border-color: rgba(26, 107, 255, 0.25);
  box-shadow: var(--edw-shadow-sm);
}

.edw-faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.edw-faq-q-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(26, 107, 255, 0.08);
  color: var(--edw-accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.edw-faq-q-text {
  flex: 1;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--edw-gray-900);
}

.edw-faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--edw-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--edw-gray-700);
  transition: var(--edw-transition);
}

.edw-faq-item.active .edw-faq-toggle {
  background: var(--edw-accent2);
  color: white;
  transform: rotate(45deg);
}

.edw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}

.edw-faq-answer-inner {
  padding: 0 24px 20px 76px;
  font-size: 0.9rem;
  color: var(--edw-gray-500);
  line-height: 1.75;
}

/* <!-- CTA BANNER -- > */
 .edw-cta-banner {
  padding: 90px 0;
  background: var(--edw-gradient-main);
  position: relative;
  overflow: hidden;
}

.edw-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.edw-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.edw-cta-orb.orb1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 196, 204, 0.25);
  top: -100px;
  right: -100px;
}

.edw-cta-orb.orb2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -80px;
  left: -80px;
}

.edw-cta-content {
  position: relative;
  z-index: 2;
}

.edw-cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--edw-white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.edw-cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 600px;
}

.edw-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.edw-cta-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.edw-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.edw-cta-trust-item i {
  color: var(--edw-accent);
}

/* <!-- CONTACT FORM -- > */
.edw-contact {
  padding: 50px 0;
  background: var(--edw-off-white);
}

.edw-contact-wrapper {
  background: var(--edw-white);
  border-radius: var(--edw-radius-xl);
  overflow: hidden;
  box-shadow: var(--edw-shadow-lg);
  border: 1px solid var(--edw-gray-200);
}

.edw-contact-left {
  background: var(--edw-gradient-main);
  padding: 30px 20px;
  position: relative;
  height: 100%;
}

.edw-contact-left-content {
  position: relative;
  z-index: 2;
}

.edw-contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--edw-white);
  margin-bottom: 14px;
}

.edw-contact-form-sub {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.edw-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.edw-contact-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.edw-contact-info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.edw-contact-info-value {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
}

.edw-contact-right {
  padding: 40px 20px;
}

.edw-form-group {
  margin-bottom: 20px;
}

.edw-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--edw-gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edw-form-control {
  width: 100%;
  background: var(--edw-off-white);
  border: 2px solid var(--edw-gray-200);
  border-radius: var(--edw-radius-sm);
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--edw-gray-900);
  transition: var(--edw-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.edw-form-control:focus {
  border-color: var(--edw-accent2);
  background: var(--edw-white);
  box-shadow: 0 0 0 4px rgba(26, 107, 255, 0.1);
}

.edw-form-control::placeholder {
  color: var(--edw-gray-500);
}

textarea.edw-form-control {
  resize: vertical;
  min-height: 50px;
}

.edw-form-success {
  display: none;
  background: rgba(18, 183, 106, 0.1);
  border: 1px solid rgba(18, 183, 106, 0.3);
  border-radius: var(--edw-radius-sm);
  padding: 16px 20px;
  color: var(--edw-green);
  font-weight: 600;
  font-size: 0.92rem;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.edw-form-success.show {
  display: flex;
}

.edw-counter-num {
  display: inline;
}

